Skip to content

Commit

Permalink
⬆️ update to OAF 0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Coperh committed Dec 30, 2024
1 parent 9a83686 commit 95d81f9
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 5 deletions.
4 changes: 3 additions & 1 deletion docs/installation/config.rst
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,12 @@ Optional
* ``EMAIL_HOST_PASSWORD``: password to connect to the mail server. Defaults to: ``(empty string)``.
* ``EMAIL_USE_TLS``: whether to use TLS or not to connect to the mail server. Should be True if you're changing the ``EMAIL_PORT`` to 487. Defaults to: ``False``.
* ``DEFAULT_FROM_EMAIL``: The default email address from which emails are sent. Defaults to: ``referentielijsten@example.com``.
* ``LOG_STDOUT``: whether to log to stdout or not. Defaults to: ``False``.
* ``LOG_STDOUT``: whether to log to stdout or not. Defaults to: ``True``.
* ``LOG_LEVEL``: control the verbosity of logging output. Available values are ``CRITICAL``, ``ERROR``, ``WARNING``, ``INFO`` and ``DEBUG``. Defaults to: ``WARNING``.
* ``LOG_QUERIES``: enable (query) logging at the database backend level. Note that you must also set ``DEBUG=1``, which should be done very sparingly!. Defaults to: ``False``.
* ``LOG_REQUESTS``: enable logging of the outgoing requests. Defaults to: ``False``.
* ``CELERY_LOGLEVEL``: control the verbosity of logging output for celery, independent of ``LOG_LEVEL``. Available values are ``CRITICAL``, ``ERROR``, ``WARNING``, ``INFO`` and ``DEBUG``. Defaults to: ``INFO``.
* ``SESSION_COOKIE_AGE``: For how long, in seconds, the session cookie will be valid. Defaults to: ``1209600``.
* ``SESSION_COOKIE_SAMESITE``: The value of the SameSite flag on the session cookie. This flag prevents the cookie from being sent in cross-site requests thus preventing CSRF attacks and making some methods of stealing session cookie impossible.Currently interferes with OIDC. Keep the value set at Lax if used. Defaults to: ``Lax``.
* ``CSRF_COOKIE_SAMESITE``: The value of the SameSite flag on the CSRF cookie. This flag prevents the cookie from being sent in cross-site requests. Defaults to: ``Strict``.
* ``ENVIRONMENT``: An identifier for the environment, displayed in the admin depending on the settings module used and included in the error monitoring (see ``SENTRY_DSN``). The default is set according to ``DJANGO_SETTINGS_MODULE``.
Expand Down
5 changes: 4 additions & 1 deletion requirements/base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ django==4.2.15
# django-relativedelta
# django-rest-framework-condition
# django-sendfile2
# django-sessionprofile
# django-setup-configuration
# django-simple-certmanager
# django-solo
Expand Down Expand Up @@ -149,6 +150,8 @@ django-rest-framework-condition==0.1.1
# via commonground-api-common
django-sendfile2==0.7.1
# via django-privates
django-sessionprofile==3.0.0
# via open-api-framework
django-setup-configuration==0.3.0
# via open-api-framework
django-simple-certmanager==2.3.0
Expand Down Expand Up @@ -236,7 +239,7 @@ mozilla-django-oidc-db==0.19.0
# via open-api-framework
notifications-api-common==0.3.1
# via commonground-api-common
open-api-framework==0.8.1
open-api-framework==0.9.1
# via -r requirements/base.in
openpyxl==3.1.5
# via tablib
Expand Down
8 changes: 7 additions & 1 deletion requirements/ci.txt
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,7 @@ django==4.2.15
# django-relativedelta
# django-rest-framework-condition
# django-sendfile2
# django-sessionprofile
# django-setup-configuration
# django-simple-certmanager
# django-solo
Expand Down Expand Up @@ -277,6 +278,11 @@ django-sendfile2==0.7.1
# -c requirements/base.txt
# -r requirements/base.txt
# django-privates
django-sessionprofile==3.0.0
# via
# -c requirements/base.txt
# -r requirements/base.txt
# open-api-framework
django-setup-configuration==0.3.0
# via
# -c requirements/base.txt
Expand Down Expand Up @@ -493,7 +499,7 @@ notifications-api-common==0.3.1
# -c requirements/base.txt
# -r requirements/base.txt
# commonground-api-common
open-api-framework==0.8.1
open-api-framework==0.9.1
# via
# -c requirements/base.txt
# -r requirements/base.txt
Expand Down
8 changes: 7 additions & 1 deletion requirements/dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,7 @@ django==4.2.15
# django-relativedelta
# django-rest-framework-condition
# django-sendfile2
# django-sessionprofile
# django-setup-configuration
# django-simple-certmanager
# django-solo
Expand Down Expand Up @@ -303,6 +304,11 @@ django-sendfile2==0.7.1
# -c requirements/ci.txt
# -r requirements/ci.txt
# django-privates
django-sessionprofile==3.0.0
# via
# -c requirements/ci.txt
# -r requirements/ci.txt
# open-api-framework
django-setup-configuration==0.3.0
# via
# -c requirements/ci.txt
Expand Down Expand Up @@ -553,7 +559,7 @@ notifications-api-common==0.3.1
# -c requirements/ci.txt
# -r requirements/ci.txt
# commonground-api-common
open-api-framework==0.8.1
open-api-framework==0.9.1
# via
# -c requirements/ci.txt
# -r requirements/ci.txt
Expand Down
6 changes: 5 additions & 1 deletion src/referentielijsten/fixtures/default_admin_index.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@
[
"mozilla_django_oidc_db",
"openidconnectconfig"
]
],
[
"sessionprofile",
"sessionprofile"
]
]
}
},
Expand Down

0 comments on commit 95d81f9

Please sign in to comment.