Skip to content

Commit

Permalink
Addressed safety issues up to 2023-11-05
Browse files Browse the repository at this point in the history
Signed-off-by: Andreas Maier <[email protected]>
  • Loading branch information
andy-maier committed Nov 5, 2023
1 parent 7b8d5ed commit fe8b45c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .safety-policy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@ security:
reason: Fixed GitPython version 3.1.33 requires Python>=3.7 and is used there
60841:
reason: Fixed GitPython version 3.1.35 requires Python>=3.7 and is used there
61601:
reason: Fixed urllib3 version 1.26.17 requires Python>=3.6 and is used there

# Continue with exit code 0 when vulnerabilities are found.
continue-on-vulnerability-error: False
2 changes: 2 additions & 0 deletions docs/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ Released: not yet

**Bug fixes:**

* Addressed safety issues up to 2023-11-05.

**Enhancements:**

**Cleanup:**
Expand Down
3 changes: 2 additions & 1 deletion minimum-constraints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,8 @@ jsonschema==3.0.1
yamlloader==0.5.5

# urllib3 is used to disable warnings
urllib3==1.26.5
urllib3==1.26.9; python_version == '3.5'
urllib3==1.26.17; python_version >= '3.6'

pyrsistent==0.15.1

Expand Down
4 changes: 3 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@ jsonschema>=3.0.1
yamlloader>=0.5.5

# urllib3 is used to disable warnings
urllib3>=1.26.5 # MIT
# urllib3 1.26.10 removed support for py35
urllib3>=1.26.9; python_version == '3.5'
urllib3>=1.26.17; python_version >= '3.6'


# Indirect dependencies (commented out, only listed to document their license):
Expand Down

0 comments on commit fe8b45c

Please sign in to comment.