Skip to content

2.5.5 #46

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
May 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -262,4 +262,12 @@ v2.5.1 (2024-04-02)
#### Improvements
- Updated the Python package dependencies to:
- `requests>=2.31.0`
- `urllib3>=2.0.7`
- `urllib3>=2.0.7`


2.5.5 (2024-05-15)
-------------------

#### Bugfixes
- **a1000** module:
- Changed the `risk_score` parameter's type hint from `str` to `int` in `set_classification` method's docstring.
2 changes: 1 addition & 1 deletion ReversingLabs/SDK/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
A Python SDK for communicating with ReversingLabs services.
"""

__version__ = "2.5.4"
__version__ = "2.5.5"
4 changes: 2 additions & 2 deletions ReversingLabs/SDK/a1000.py
Original file line number Diff line number Diff line change
Expand Up @@ -1124,7 +1124,7 @@ def set_classification(self, sample_hash, classification, system, risk_score=Non
:type classification: str
:param risk_score: If specified, it must be within range for the specified classification. If not specified,
a default value is used: Goodware: 0, Suspicious: 6, Malicious: 10
:type risk_score: str
:type risk_score: int
:param threat_platform: if specified, it must be on the supported list (platforms and subplatforms - see
official API docs). If not specified, the default value is 'Win32'.
:type threat_platform: str
Expand Down Expand Up @@ -2114,7 +2114,7 @@ def __create_post_payload(custom_filename=None, file_url=None, crawler=None, ar
:type classification: str
:param risk_score: If specified, it must be within range for the specified classification. If not specified,
a default value is used: Goodware: 0, Suspicious: 6, Malicious: 10
:type risk_score: str
:type risk_score: int
:param threat_platform: if specified, it must be on the supported list (platforms and subplatforms - see
official API docs). If not specified, the default value is 'Win32'.
:type threat_platform: str
Expand Down
Loading