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-06-24 #526

Merged
merged 1 commit into from
Jun 24, 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
2 changes: 2 additions & 0 deletions .safety-policy-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ security:
# reason: Fixed idna version 3.7 requires requests>=2.26.0 which requires Python>=3.6 and is used there
70612:
reason: Disputed issue in Jinja2 version 3.1.3 - No known fix
71064:
reason: Fixed requests version 2.32.2 requires Python>=3.8 and is used there

# Continue with exit code 0 when vulnerabilities are found.
continue-on-vulnerability-error: False
2 changes: 1 addition & 1 deletion docs/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Released: not yet

**Bug fixes:**

* Addressed safety issues up to 2024-06-02.
* Addressed safety issues up to 2024-06-24.

* In the Github Actions test workflow for Python 3.6 and 3.7, changed
macos-latest back to macos-12 because macos-latest got upgraded from macOS 12
Expand Down
3 changes: 2 additions & 1 deletion minimum-constraints-install.txt
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ idna==3.7
immutable-views==0.6.0
MarkupSafe==2.0.0
pytz==2019.1
requests==2.31.0
requests==2.31.0; python_version <= '3.7'
requests==2.32.2; python_version >= '3.8'
stomp.py==4.1.23
typing-extensions==4.7.1
zipp==0.5.2 # Used in some combinations of Python version and package level
Loading