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 all deps. #228

Closed
wants to merge 8 commits into from
Closed
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: 1 addition & 1 deletion ansible_base/authentication/authenticator_plugins/ldap.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def validate_ldap_filter(value: Any, with_user: bool = False) -> bool:
# We only need to check with_user at the top of the recursion stack
validate_ldap_filter(f'({sub_filter})', with_user=False)
return
raise ValidationError(_('Invalid filter: %s') % value)
raise ValidationError(_('Invalid filter: %s' % value))
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This doesn't feel correct to me. If I understand right, this will do the string interpolation before _() meaning that the fully interpolated string is what will land in the translation files.



def get_all_sub_classes(cls):
Expand Down
38 changes: 18 additions & 20 deletions requirements/requirements_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@ asgiref==3.7.2
# via
# channels
# django
attrs==23.1.0
attrs==23.2.0
# via
# jsonschema
# referencing
certifi==2023.11.17
certifi==2024.2.2
# via requests
cffi==1.16.0
# via cryptography
channels==4.0.0
# via -r requirements/requirements_channels.in
charset-normalizer==3.3.2
# via requests
cryptography==41.0.7
cryptography==42.0.5
# via
# -r requirements/requirements.in
# -r requirements/requirements_testing.in
Expand All @@ -23,7 +23,7 @@ defusedxml==0.8.0rc2
# via
# python3-openid
# social-auth-core
django==4.2.8
django==4.2.11
# via
# -r requirements/requirements.in
# channels
Expand All @@ -36,13 +36,13 @@ django-auth-ldap==4.6.0
# via -r requirements/requirements_authentication.in
django-crum==0.7.9
# via -r requirements/requirements.in
django-split-settings==1.2.0
django-split-settings==1.3.0
# via -r requirements/requirements.in
djangorestframework==3.14.0
djangorestframework==3.15.0
# via
# -r requirements/requirements.in
# drf-spectacular
drf-spectacular==0.27.0
drf-spectacular==0.27.1
# via -r requirements/requirements_api_documentation.in
idna==3.6
# via requests
Expand All @@ -54,19 +54,19 @@ iniconfig==2.0.0
# via pytest
isodate==0.6.1
# via python3-saml
jsonschema==4.20.0
jsonschema==4.21.1
# via drf-spectacular
jsonschema-specifications==2023.11.2
jsonschema-specifications==2023.12.1
# via jsonschema
lxml==4.9.3
lxml==5.1.0
# via
# python3-saml
# xmlsec
oauthlib==3.2.2
# via
# requests-oauthlib
# social-auth-core
packaging==23.2
packaging==24.0
# via pytest
pluggy==1.4.0
# via pytest
Expand All @@ -82,11 +82,11 @@ pyjwt==2.8.0
# via
# -r requirements/requirements_jwt_consumer.in
# social-auth-core
pytest==7.4.4
pytest==8.1.1
# via
# -r requirements/requirements_testing.in
# pytest-django
pytest-django==4.7.0
pytest-django==4.8.0
# via -r requirements/requirements_testing.in
python-ldap==3.4.4
# via
Expand All @@ -96,11 +96,9 @@ python3-openid==3.2.0
# via social-auth-core
python3-saml==1.16.0
# via -r requirements/requirements_authentication.in
pytz==2023.3.post1
# via djangorestframework
pyyaml==6.0.1
# via drf-spectacular
referencing==0.32.0
referencing==0.34.0
# via
# jsonschema
# jsonschema-specifications
Expand All @@ -109,9 +107,9 @@ requests==2.31.0
# -r requirements/requirements_jwt_consumer.in
# requests-oauthlib
# social-auth-core
requests-oauthlib==1.3.1
requests-oauthlib==1.4.0
# via social-auth-core
rpds-py==0.15.2
rpds-py==0.18.0
# via
# jsonschema
# referencing
Expand All @@ -121,7 +119,7 @@ six==1.16.0
# tacacs-plus
social-auth-app-django==5.4.0
# via -r requirements/requirements_authentication.in
social-auth-core==4.5.1
social-auth-core==4.5.3
# via social-auth-app-django
sqlparse==0.4.4
# via django
Expand All @@ -131,7 +129,7 @@ tacacs-plus==2.6
# via -r requirements/requirements_authentication.in
uritemplate==4.1.1
# via drf-spectacular
urllib3==2.1.0
urllib3==2.2.1
# via requests
xmlsec==1.3.13
# via python3-saml
Loading