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

Addressed safety issues up to 2024-12-29 #1102

Merged
merged 1 commit into from
Dec 29, 2024
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
4 changes: 4 additions & 0 deletions .safety-policy-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@ security:
reason: Fixed ansible-core version is 2.15.2, but we support older ansible versions
73302:
reason: Advice to use no_log when reading sensitive variables - not related to any fixes
74221:
reason: Fixed ansible-core version is 2.14.18rc1, but we support older ansible versions
74261:
reason: Fixed ansible-core version is 2.18, but we support older ansible versions

# Continue with exit code 0 when vulnerabilities are found.
continue-on-vulnerability-error: False
2 changes: 1 addition & 1 deletion docs/source/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Availability: `AutomationHub`_, `Galaxy`_, `GitHub`_

**Bug fixes:**

* Fixed safety issues up to 2024-11-21.
* Fixed safety issues up to 2024-12-29.

* Increased zhmcclient version to 1.18.2 to pick up fixes. (issue #1074)

Expand Down
2 changes: 1 addition & 1 deletion minimum-constraints-install.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ ansible==9.0.1; python_version >= '3.12'
# ansible-core is pulled in by ansible>=4.0, and is needed for pip-check-reqs checks.
ansible-core==2.11.12; python_version == '3.9'
ansible-core==2.12.10; python_version == '3.10'
ansible-core==2.14.14; python_version == '3.11'
ansible-core==2.14.18; python_version == '3.11'
ansible-core==2.16.3; python_version >= '3.12'

# other ansible or ansible-core dependencies
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ ansible>=9.0.1; python_version >= '3.12'
# ansible-core is pulled in by ansible>=4.0, and is needed for pip-check-reqs checks.
ansible-core>=2.11.12; python_version == '3.9'
ansible-core>=2.12.10; python_version == '3.10'
ansible-core>=2.14.14; python_version == '3.11'
ansible-core>=2.14.18; python_version == '3.11'
ansible-core>=2.16.0; python_version >= '3.12'

requests>=2.32.2
Expand Down
Loading