Skip to content

Commit e560ae7

Browse files
build(upgrade-requests-lib): address moderate level vulnerability (#40)
This commit addresses the vulnerability of unintended leak of proxy-authorization header. You can read more about the vulnerability [here](https://security.snyk.io/vuln/SNYK-PYTHON-REQUESTS-5595532). As this vulnerability is addressed in version 2.31.0 which is why the upgraded version is 2.31.0 which is the latest at the moment.
1 parent b0403e3 commit e560ae7

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ jsonpickle~=3.0.1, >= 3.0.1
22
python-dateutil~=2.8.1
33
enum34~=1.1, >=1.1.10
44
apimatic-core-interfaces~=0.1.0
5-
requests~=2.28.1
5+
requests~=2.31
66
setuptools~=67.6.0
77
jsonpointer~=2.3

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
setup(
1414
name='apimatic-core',
15-
version='0.2.2',
15+
version='0.2.3',
1616
description='A library that contains core logic and utilities for '
1717
'consuming REST APIs using Python SDKs generated by APIMatic.',
1818
long_description=long_description,
@@ -26,7 +26,7 @@
2626
'apimatic-core-interfaces~=0.1.0',
2727
'jsonpickle~=3.0.1, >= 3.0.1',
2828
'python-dateutil~=2.8.1',
29-
'requests~=2.28.1',
29+
'requests~=2.31',
3030
'enum34~=1.1, >=1.1.10',
3131
'setuptools~=66.0.0',
3232
'jsonpointer~=2.3'

0 commit comments

Comments
 (0)