Skip to content

Commit

Permalink
Fixed safety issues 7/2023
Browse files Browse the repository at this point in the history
Signed-off-by: Andreas Maier <maiera@de.ibm.com>
  • Loading branch information
andy-maier committed Jul 5, 2023
1 parent 54fb948 commit 61a95b7
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .safety-policy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,8 @@ security:
reason: Not yet fixed in any ansible version, but need to support ansible 2.9
58755:
reason: Fixed requests version 2.31.0 requires Python>=3.7 and is used there
58910:
reason: Fixed pygments version 2.15.0 requires Python>=3.7 and is used there

# Continue with exit code 0 when vulnerabilities are found.
continue-on-vulnerability-error: False
3 changes: 2 additions & 1 deletion dev-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@ GitPython>=2.1.15; python_version == '3.6'
GitPython>=3.1.30; python_version >= '3.7'
sphinxcontrib-fulltoc>=1.2.0; python_version >= '3.6'
sphinxcontrib-websupport>=1.1.2; python_version >= '3.6'
Pygments>=2.7.4; python_version >= '3.6'
Pygments>=2.7.4; python_version == '3.6'
Pygments>=2.15.0; python_version >= '3.7'
# Babel 2.7.0 fixes an ImportError for MutableMapping which starts failing on Python 3.10
# Babel 2.9.1 fixes safety issue 42203
Babel>=2.9.1
Expand Down
3 changes: 3 additions & 0 deletions docs/source/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ Availability: `AutomationHub`_, `Galaxy`_, `GitHub`_

**Bug fixes:**

* Addressed safety issues from 7/2023, by increasing increasing packages only
needed for development.

**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 @@ -215,7 +215,8 @@ GitPython==2.1.15; python_version == '3.6'
GitPython==3.1.30; python_version >= '3.7'
sphinxcontrib-fulltoc==1.2.0; python_version >= '3.6'
sphinxcontrib-websupport==1.1.2; python_version >= '3.6'
Pygments==2.7.4; python_version >= '3.6'
Pygments==2.7.4; python_version == '3.6'
Pygments==2.15.0; python_version >= '3.7'
Babel==2.9.1; python_version >= '3.6'
# sphinx-versions: Retrieved from git repo in dev-requirements.txt for python_version >= '3.6'
# ansible-doc-extractor and it's dependent theme for docs generation (no imports, invoked via script):
Expand Down

0 comments on commit 61a95b7

Please sign in to comment.