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

Update gitpython (security) #6063

Merged
merged 5 commits into from
Nov 23, 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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ Fixed

* Fix KV value lookup in actions when RBAC is enabled #5934

* Update version 3.1.15 of ``gitpython`` to 3.1.18 for py3.6 and to 3.1.37 for py3.8 (security). #6063

Added
~~~~~
* Move `git clone` to `user_home/.st2packs` #5845
Expand Down
4 changes: 3 additions & 1 deletion fixed-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ cryptography==39.0.1
# depend on rely
eventlet==0.33.3
flex==6.14.1
gitpython==3.1.15
# Note: installs gitpython==3.1.37 (security fixed) under py3.8 and gitpython==3.1.18 (latest available, vulnerable) under py3.6
# TODO: Pin to 3.1.37 or higher after dropping python3.6 support
gitpython<=3.1.37
# Needed by gitpython, old versions used to bundle it
gitdb==4.0.2
# Note: greenlet is used by eventlet
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ dnspython>=1.16.0,<2.0.0
eventlet==0.33.3
flex==6.14.1
gitdb==4.0.2
gitpython==3.1.15
gitpython<=3.1.37
greenlet==1.0.0
gunicorn==21.2.0
importlib-metadata==3.10.1
Expand Down
2 changes: 1 addition & 1 deletion st2actions/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ MarkupSafe<2.1.0,>=0.23
apscheduler==3.7.0
chardet<3.1.0
eventlet==0.33.3
gitpython==3.1.15
gitpython<=3.1.37
jinja2==2.11.3
kombu==5.0.2
lockfile==0.12.2
Expand Down
2 changes: 1 addition & 1 deletion st2common/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ dnspython>=1.16.0,<2.0.0
eventlet==0.33.3
flex==6.14.1
gitdb==4.0.2
gitpython==3.1.15
gitpython<=3.1.37
greenlet==1.0.0
jinja2==2.11.3
jsonpath-rw==1.4.0
Expand Down