Skip to content
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
1 change: 1 addition & 0 deletions BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ target(
dependencies=[
"//:reqs#st2-auth-backend-flat-file",
"//:reqs#st2-auth-ldap",
"//:reqs#st2-auth-backend-pam",
],
)

Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ Added
working on StackStorm, improve our security posture, and improve CI reliability thanks in part
to pants' use of PEX lockfiles. This is not a user-facing addition.
#6118 #6141 #6133 #6120 #6181 #6183 #6200 #6237 #6229 #6240 #6241 #6244 #6251 #6253
#6254 #6258 #6259 #6260 #6269 #6275 #6279 #6278 #6282 #6283 #6273 #6287
#6254 #6258 #6259 #6260 #6269 #6275 #6279 #6278 #6282 #6283 #6273 #6287 #6306
Contributed by @cognifloyd
* Build of ST2 EL9 packages #6153
Contributed by @amanda11
Expand Down
2 changes: 1 addition & 1 deletion conf/st2.conf.sample
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ token_ttl = 86400
# Standalone mode options - options below only apply when auth service is running in the standalone
# mode.

# Authentication backend to use in a standalone mode. Available backends: flat_file, ldap.
# Authentication backend to use in a standalone mode. Available backends: flat_file, ldap, pam.
backend = flat_file
# JSON serialized arguments which are passed to the authentication backend in a standalone mode.
backend_kwargs = None
Expand Down
4 changes: 2 additions & 2 deletions fixed-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ lockfile==0.12.2
mongoengine==0.29.1
networkx==3.1
# jsonpath-rw is the only thing that depends on decorator (a transitive dep)
decorator==5.1.1
decorator==5.2.1
# 202403: Bump oslo.config for py3.10 support.
oslo.config==9.6.0
oslo.utils==7.3.0
Expand Down Expand Up @@ -80,7 +80,7 @@ bcrypt==4.2.1
jinja2==3.1.5
mock==5.1.0
pytest==7.0.1
psutil==6.1.1
psutil==7.0.0
python-dateutil==2.9.0.post0
python-statsd==2.1.0
orjson==3.10.15
Expand Down
246 changes: 132 additions & 114 deletions lockfiles/st2.lock

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions requirements-pants.txt
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ stevedore
# For backward compatibility reasons, flat file backend is installed by default
st2-auth-backend-flat-file
st2-auth-ldap @ git+https://github.com/StackStorm/st2-auth-ldap.git@master
st2-auth-backend-pam @ git+https://github.com/StackStorm/st2-auth-backend-pam.git@master
st2-rbac-backend @ git+https://github.com/StackStorm/st2-rbac-backend.git@master
# tabulate used by tools/log_watcher.py
tabulate
Expand Down
5 changes: 3 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ cffi==1.17.1
chardet==5.2.0
ciso8601
cryptography==43.0.3
decorator==5.1.1
decorator==5.2.1
dnspython
editor==1.6.6
eventlet==0.39.0
Expand All @@ -42,7 +42,7 @@ paramiko==3.5.1
passlib==1.7.4
prettytable==3.10.2
prompt-toolkit==3.0.50
psutil==6.1.1
psutil==7.0.0
pyOpenSSL
pygments==2.19.1
pyinotify==0.9.6 ; platform_system=="Linux"
Expand All @@ -66,6 +66,7 @@ simplejson
six==1.17.0
sseclient-py==1.8.0
st2-auth-backend-flat-file
st2-auth-backend-pam@ git+https://github.com/StackStorm/st2-auth-backend-pam.git@master
st2-auth-ldap@ git+https://github.com/StackStorm/st2-auth-ldap.git@master
st2-rbac-backend@ git+https://github.com/StackStorm/st2-rbac-backend.git@master
stevedore==5.3.0
Expand Down
2 changes: 2 additions & 0 deletions st2auth/in-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,6 @@ stevedore
# For backward compatibility reasons, flat file backend is installed by default
st2-auth-backend-flat-file
st2-auth-ldap@ git+https://github.com/StackStorm/st2-auth-ldap.git@master
# This requirement has been injected by st2-packages.git for many years.
st2-auth-backend-pam@ git+https://github.com/StackStorm/st2-auth-backend-pam.git@master
gunicorn
1 change: 1 addition & 0 deletions st2auth/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@ passlib==1.7.4
pymongo==4.6.3
six==1.17.0
st2-auth-backend-flat-file
st2-auth-backend-pam@ git+https://github.com/StackStorm/st2-auth-backend-pam.git@master
st2-auth-ldap@ git+https://github.com/StackStorm/st2-auth-ldap.git@master
stevedore==5.3.0
2 changes: 1 addition & 1 deletion st2common/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ cffi==1.17.1
chardet==5.2.0
ciso8601
cryptography==43.0.3
decorator==5.1.1
decorator==5.2.1
dnspython
eventlet==0.39.0
flex==6.14.1
Expand Down
2 changes: 1 addition & 1 deletion st2tests/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# update the component requirements.txt
RandomWords
mock==5.1.0
psutil==6.1.1
psutil==7.0.0
pyrabbit
pytest==7.0.1
webtest==3.0.1
2 changes: 1 addition & 1 deletion test-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ pyyaml==6.0.2
pygments==2.19.1
RandomWords
gunicorn==23.0.0
psutil==6.1.1
psutil==7.0.0
webtest==3.0.1
# Bump to latest to meet sphinx requirements.
rstcheck==6.2.1
Expand Down
Loading