Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.9: Addressed safety issues up to 2023-11-05 #512

Merged
merged 1 commit into from
Nov 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading