Skip to content

Commit

Permalink
Addressed safety issues from 6/2023
Browse files Browse the repository at this point in the history
Signed-off-by: Andreas Maier <maiera@de.ibm.com>
  • Loading branch information
andy-maier committed Jul 3, 2023
1 parent 3c6aa55 commit b6e2e49
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .safety-policy.yml
Expand Up @@ -45,8 +45,7 @@ security:
50886:
reason: Fixed Pygments version requires Python>=3.5 and is used there
51457:
reason: Py package is not yet fixed (latest version 1.11.0)
expires: 2023-06-30
reason: Py package will no longer be fixed (latest version 1.11.0)
51499:
reason: Fixed Wheel version requires Python>=3.7 and is used there; Risk is on Pypi side
52322:
Expand All @@ -57,6 +56,8 @@ security:
reason: Fixed Setuptools version requires Python>=3.7 and is used there; Risk is on Pypi side
52518:
reason: Fixed GitPython version requires Python>=3.7 and is used there
58755:
reason: Fixed requests version 2.31.0 requires Python>=3.7 and is used there

# Continue with exit code 0 when vulnerabilities are found.
continue-on-vulnerability-error: False
3 changes: 3 additions & 0 deletions docs/changes.rst
Expand Up @@ -38,6 +38,9 @@ Released: not yet
* Circumvented the removal of Python 2.7 from the Github Actions plugin
setup-python, by using the Docker container python:2.7.18-buster instead.

* Addressed safety issues from 6/2023, by increasing 'requests' to 2.31.0
on Python >=3.7.

**Enhancements:**

* Improved the end2end test cases for session management.
Expand Down
3 changes: 2 additions & 1 deletion minimum-constraints.txt
Expand Up @@ -151,7 +151,8 @@ pytz==2016.10; python_version <= '3.9'
pytz==2019.1; python_version >= '3.10'
stomp.py==4.1.23
wcwidth==0.1.7
requests==2.25.0
requests==2.25.0; python_version <= '3.6'
requests==2.31.0; python_version >= '3.7'


# Direct dependencies for development (must be consistent with dev-requirements.txt)
Expand Down

0 comments on commit b6e2e49

Please sign in to comment.