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

Increased minimum version of zhmcclient to 1.17.0 #631

Merged
merged 1 commit into from
Aug 5, 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
6 changes: 0 additions & 6 deletions .safety-policy-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,6 @@ security:
reason: Fixed version PyYAML 5.4.0 (and 6.0.0) fails to install since Cython 3 was released; No risk since full_load method and FullLoader are not used
67599:
reason: There is no fixed pip version
67884:
# TODO: Adjust once we remove stomp-py pinning
reason: Fixed stomp-py version 8.1.1 conflicts with our pinning of stomp-py to <7.0.0
67894:
# TODO: Adjust once we remove stomp-py pinning
reason: Fixed stomp-py version 8.1.1 conflicts with our pinning of stomp-py to <7.0.0

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

* Addressed safety issues up to 2024-07-21.

* Increased minimum version of zhmcclient to 1.17.0 (and dependent packages
accordingly) to pick up fixes and functionality. (issue #623)

**Enhancements:**

* Test: Added support for running the 'ruff' checker via "make ruff" and added
Expand Down
6 changes: 3 additions & 3 deletions minimum-constraints-install.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ wheel==0.38.1

# Direct dependencies for install (must be consistent with requirements.txt)

zhmcclient==1.13.4
zhmcclient==1.17.0

click==8.0.2
click-repl==0.2
Expand All @@ -30,7 +30,7 @@ prompt-toolkit==3.0.13
# PyYAML is pulled in by zhmccli, zhmcclient, yamlloader
PyYAML==5.3.1

jsonschema==3.0.1
jsonschema==3.1.0
yamlloader==0.5.5

# urllib3 is used to disable warnings
Expand All @@ -52,6 +52,6 @@ docopt==0.6.2
idna==3.7
python-utils==2.0.1
pytz==2019.1
stomp.py==4.1.23
stomp-py==8.1.1
wcwidth==0.2.6
requests==2.32.2
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@

# Direct dependencies for install (must be consistent with minimum-constraints-install.txt)

# zhmcclient @ git+https://github.com/zhmcclient/python-zhmcclient.git@stable_1.13
zhmcclient>=1.13.4
# zhmcclient @ git+https://github.com/zhmcclient/python-zhmcclient.git@master
zhmcclient>=1.17.0

# safety 2.2.0 depends on click>=8.0.2
click>=8.0.2
Expand Down Expand Up @@ -35,7 +35,7 @@ prompt-toolkit>=3.0.13
PyYAML>=5.3.1,!=5.4.0,!=5.4.1; python_version <= '3.11'
PyYAML>=5.3.1,!=5.4.0,!=5.4.1,!=6.0.0; python_version >= '3.12'

jsonschema>=3.0.1
jsonschema>=3.1.0
yamlloader>=0.5.5

urllib3>=1.26.19
Expand Down
Loading