Skip to content

Commit bfbb149

Browse files
committed
version 1.7.4
1 parent 4c6a14c commit bfbb149

3 files changed

Lines changed: 6 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
3+
1.7.4 - 2025-12-11
4+
* [Fix] CxOne repoStoreServiceAPI view_source_code_of_specified_file
5+
36
1.7.3 - 2025-11-28
47
* [Add] SCA API get_packages_from_inventory_by_name_and_version
58

CheckmarxPythonSDK/CxOne/repoStoreServiceAPI.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,8 +143,8 @@ def view_scanned_source_files_in_specified_folder(scan_id: str, folder: str) ->
143143
return RepoStoreServiceAPI().view_scanned_source_files_in_specified_folder(scan_id=scan_id, folder=folder)
144144

145145

146-
def view_source_code_of_specified_file(scan_id: str, file_name: str) -> bool:
147-
return RepoStoreServiceAPI().view_source_code_of_specified_file(scan_id=scan_id, file_name=file_name)
146+
def view_source_code_of_specified_file(scan_id: str, file_path: str) -> str:
147+
return RepoStoreServiceAPI().view_source_code_of_specified_file(scan_id=scan_id, file_path=file_path)
148148

149149

150150
def get_the_list_of_branches_inside_a_git_repository(

CheckmarxPythonSDK/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.7.3'
1+
__version__ = '1.7.4'

0 commit comments

Comments
 (0)