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.4: Addressed safety issues up to 2023-11-05 #405

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 @@ -60,6 +60,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
5 changes: 1 addition & 4 deletions docs/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@ Released: not yet

**Bug fixes:**

* Addressed safety issues from 6+7/2023, by increasing 'requests' to 2.31.0
on Python >=3.7, and by increasing other packages only needed for development.
* Addressed safety issues up to 2023-11-05.

**Enhancements:**

Expand Down Expand Up @@ -86,8 +85,6 @@ in this version, please update it in your installation.
* Fixed issue with PyYAML 5.4 installation on Python>=3.10 that fails since
the recent release of Cython 3.

* Fixed safety issues from 2023-08-27.

* Test: Circumvented a pip-check-reqs issue by excluding its version 2.5.0.

**Enhancements:**
Expand Down
3 changes: 2 additions & 1 deletion minimum-constraints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ wheel==0.38.1; python_version >= '3.7'
zhmcclient==1.9.1

prometheus-client==0.9.0
urllib3==1.26.5
urllib3==1.26.9; python_version == '3.5'
urllib3==1.26.17; python_version >= '3.6'
jsonschema==3.2.0
six==1.14.0; python_version <= '3.9'
six==1.16.0; python_version >= '3.10'
Expand Down
5 changes: 3 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@
zhmcclient>=1.9.1

prometheus-client>=0.9.0
urllib3>=1.25.9; python_version <= '3.9'
urllib3>=1.26.5; python_version >= '3.10'
# urllib3 1.26.10 removed support for py35
urllib3>=1.26.9; python_version == '3.5'
urllib3>=1.26.17; python_version >= '3.6'
jsonschema>=3.2.0
six>=1.14.0; python_version <= '3.9'
six>=1.16.0; python_version >= '3.10'
Expand Down
Loading