Skip to content

Commit c5c84e4

Browse files
authored
Merge pull request #255 from splitio/development
Python 9.1.2 py-yaml vulnerability fix
2 parents 488f0cf + 8a8ea54 commit c5c84e4

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

CHANGES.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
9.1.2 (April 6, 2022)
2+
- Updated pyyaml dependency for vulnerability CVE-2020-14343.
3+
14
9.1.1 (March 9, 2022)
25
- Updated default auth service url to https://auth.split.io/api/v2/auth.
36
- Deprecated old telemetry.

setup.py

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

77
TESTS_REQUIRES = [
88
'flake8',
9-
'pytest>=6.2.3',
9+
'pytest==7.0.1',
1010
'pytest-mock>=3.5.1',
1111
'coverage',
1212
'pytest-cov',
@@ -16,7 +16,7 @@
1616

1717
INSTALL_REQUIRES = [
1818
'requests>=2.9.1',
19-
'pyyaml>=5.1',
19+
'pyyaml>=5.4',
2020
'docopt>=0.6.2',
2121
'enum34;python_version<"3.4"',
2222
]

splitio/version.py

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

0 commit comments

Comments
 (0)