Skip to content

Commit

Permalink
Update simple_openid_connect library
Browse files Browse the repository at this point in the history
  • Loading branch information
timonegk committed Feb 8, 2024
1 parent 7e20fc1 commit 07357b6
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 15 deletions.
1 change: 1 addition & 0 deletions bitpoll/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -406,4 +406,5 @@
from .settings_local import *

INSTALLED_APPS += INSTALLED_APPS_LOCAL
MIDDLEWARE += MIDDLEWARE_LOCAL
PIPELINE.update(PIPELINE_LOCAL)
4 changes: 4 additions & 0 deletions bitpoll/settings_local.sample.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@
#LOGIN_URL = "simple_openid_connect_django:login"
#LOGOUT_REDIRECT_URL = "index"

MIDDLEWARE_LOCAL = [
# "simple_openid_connect.integrations.django.middleware.TokenVerificationMiddleware",
]

# Compress the JS and CSS files, for more Options see https://django-pipeline.readthedocs.io/en/latest/compressors.html
# the Compressor have to be installed in the system
PIPELINE_LOCAL = {}
Expand Down
23 changes: 14 additions & 9 deletions requirements-production.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,27 +4,29 @@
#
# pip-compile --output-file=requirements-production.txt requirements-production.in requirements.in
#
annotated-types==0.6.0
# via pydantic
asgiref==3.7.2
# via django
bleach[css]==6.1.0
# via django-markdownify
caldav==1.3.9
# via -r requirements.in
certifi==2023.11.17
certifi==2024.2.2
# via
# requests
# sentry-sdk
cffi==1.16.0
# via cryptography
charset-normalizer==3.3.2
# via requests
cryptography==41.0.7
cryptography==42.0.2
# via
# cryptojwt
# django-encrypted-model-fields
cryptojwt==1.8.3
# via simple-openid-connect
django==4.2.9
django==5.0.2
# via
# -r requirements.in
# django-auth-ldap
Expand All @@ -43,7 +45,7 @@ django-markdownify==0.9.3
# via -r requirements.in
django-pipeline==3.0.0
# via -r requirements.in
django-simple-csp==0.3.dev1
django-simple-csp==0.4.dev1
# via -r requirements.in
django-token-bucket==0.2.4
# via -r requirements.in
Expand Down Expand Up @@ -79,16 +81,18 @@ pyasn1-modules==0.3.0
# via python-ldap
pycparser==2.21
# via cffi
pydantic==1.10.13
pydantic==2.6.1
# via simple-openid-connect
pydantic-core==2.16.2
# via pydantic
python-dateutil==2.8.2
# via
# icalendar
# recurring-ical-events
# vobject
python-ldap==3.4.4
# via django-auth-ldap
pytz==2023.3.post1
pytz==2024.1
# via
# -r requirements.in
# caldav
Expand All @@ -102,9 +106,9 @@ requests==2.31.0
# caldav
# cryptojwt
# simple-openid-connect
sentry-sdk==1.39.2
sentry-sdk==1.40.2
# via -r requirements-production.in
simple-openid-connect[django]==0.5.3
simple-openid-connect[django]==1.0.0
# via -r requirements-production.in
six==1.16.0
# via
Expand All @@ -120,9 +124,10 @@ typing-extensions==4.9.0
# via
# asgiref
# pydantic
# pydantic-core
tzlocal==5.2
# via caldav
urllib3==2.1.0
urllib3==2.2.0
# via
# requests
# sentry-sdk
Expand Down
12 changes: 6 additions & 6 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ bleach[css]==6.1.0
# via django-markdownify
caldav==1.3.9
# via -r requirements.in
certifi==2023.11.17
certifi==2024.2.2
# via requests
cffi==1.16.0
# via cryptography
charset-normalizer==3.3.2
# via requests
cryptography==41.0.7
cryptography==42.0.2
# via django-encrypted-model-fields
django==5.0.1
django==5.0.2
# via
# -r requirements.in
# django-encrypted-model-fields
Expand All @@ -33,7 +33,7 @@ django-markdownify==0.9.3
# via -r requirements.in
django-pipeline==3.0.0
# via -r requirements.in
django-simple-csp==0.3.dev1
django-simple-csp==0.4.dev1
# via -r requirements.in
django-token-bucket==0.2.4
# via -r requirements.in
Expand Down Expand Up @@ -62,7 +62,7 @@ python-dateutil==2.8.2
# icalendar
# recurring-ical-events
# vobject
pytz==2023.3.post1
pytz==2024.1
# via
# -r requirements.in
# caldav
Expand All @@ -85,7 +85,7 @@ typing-extensions==4.9.0
# via asgiref
tzlocal==5.2
# via caldav
urllib3==2.1.0
urllib3==2.2.0
# via requests
vobject==0.9.6.1
# via caldav
Expand Down

0 comments on commit 07357b6

Please sign in to comment.