Skip to content

Commit

Permalink
Fixed safety issues from 6/23
Browse files Browse the repository at this point in the history
Details:

* Addressed safety issues from 6/23, by increasing 'requests' to 2.31.0
  on Python >=3.7. Ignored the safety issue on Python <=3.6.

Signed-off-by: Andreas Maier <maiera@de.ibm.com>
  • Loading branch information
andy-maier committed Jun 23, 2023
1 parent 440a758 commit 1588456
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .safety-policy.yml
Expand Up @@ -83,6 +83,8 @@ security:
reason: Not yet fixed in any ansible version, but need to support ansible 2.9
54230:
reason: Not yet fixed in any ansible version, but need to support ansible 2.9
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/source/release_notes.rst
Expand Up @@ -33,6 +33,9 @@ Availability: `AutomationHub`_, `Galaxy`_, `GitHub`_

**Bug fixes:**

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

**Enhancements:**

**Cleanup:**
Expand Down
4 changes: 2 additions & 2 deletions minimum-constraints.txt
Expand Up @@ -119,8 +119,8 @@ resolvelib==0.5.3; python_version == '3.10'
resolvelib==0.5.3; python_version >= '3.11'
distlib==0.3.6

requests==2.22.0; python_version <= '3.9'
requests==2.25.0; python_version >= '3.10'
requests==2.22.0; python_version <= '3.6'
requests==2.31.0; python_version >= '3.7'

zhmcclient==1.5.0

Expand Down

0 comments on commit 1588456

Please sign in to comment.