Skip to content

Commit 8e4e0e5

Browse files
Merge pull request #37 from MislavReversingLabs/main
v2.4.3
2 parents 2b958b8 + c48a30f commit 8e4e0e5

File tree

3 files changed

+15
-5
lines changed

3 files changed

+15
-5
lines changed

CHANGELOG.md

+12-2
Original file line numberDiff line numberDiff line change
@@ -192,9 +192,9 @@ v2.4.1 (2024-01-11) - [YANKED]
192192
v2.4.2 (2024-01-22)
193193
-------------------
194194

195-
All changes are calculated agains **v2.3.0**
195+
All changes are calculated against **v2.3.0**
196196

197-
### Improvements
197+
#### Improvements
198198
- **ticloud** module:
199199
- Added the `NewFilesFirstScan`, `NewFilesFirstAndRescan`, `FilesWithDetectionChanges`, `CvesExploitedInTheWild`, `NewExploitOrCveSamplesFoundInWildHourly`, `NewExploitAndCveSamplesFoundInWildDaily`, `NewWhitelistedFiles`, `ChangesWhitelistedFiles`, `MalwareFamilyDetection`, `ExpressionSearch`, `VerticalFeedStatistics` and `VerticalFeedSearch` classes.
200200
- The following changes were made to the `DynamicAnalysis` class:
@@ -206,6 +206,16 @@ All changes are calculated agains **v2.3.0**
206206
- Error handling: Custom error classes now also carry the original response object. Users can now reach the original status code, error message and all other response properties using the caught error's `response_object` property.
207207

208208

209+
v2.4.3 (2024-02-07)
210+
-------------------
211+
212+
#### Improvements
213+
214+
- Python package dependencies are now set to the following values:
215+
- `requests>=2.28.2`
216+
- `urllib3>=1.26.14`
217+
218+
209219

210220
### Scheduled removals
211221
- **March 2024.**:

ReversingLabs/SDK/helper.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
128: SHA512
2323
}
2424

25-
DEFAULT_USER_AGENT = "ReversingLabs SDK v2.3.0"
25+
DEFAULT_USER_AGENT = "ReversingLabs SDK v2.4.3"
2626
ADVANCED_SEARCH_SORTING_CRITERIA = ("sha1", "firstseen", "threatname", "sampletype", "filecount", "size")
2727

2828

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import setup
22

33

4-
requires = ["requests==2.28.1", "urllib3==1.26.13"]
4+
requires = ["requests>=2.28.2", "urllib3>=1.26.14"]
55

66
packages = ["ReversingLabs",
77
"ReversingLabs.SDK"]
@@ -11,7 +11,7 @@
1111

1212
setup(
1313
name="reversinglabs-sdk-py3",
14-
version="2.4.2",
14+
version="2.4.3",
1515
description="Python SDK for using ReversingLabs services - Python 3 version.",
1616
long_description=long_description,
1717
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)