Skip to content

Commit 1edc8d7

Browse files
⬆️ Update Open-API-Framework to 0.9.3
1 parent 447d4e6 commit 1edc8d7

File tree

5 files changed

+4
-9
lines changed

5 files changed

+4
-9
lines changed

docs/installation/config.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,12 +90,12 @@ Optional
9090
* ``NUM_PROXIES``: the number of reverse proxies in front of the application, as an integer. This is used to determine the actual client IP adres. On Kubernetes with an ingress you typically want to set this to 2. Defaults to: ``1``.
9191
* ``CSRF_TRUSTED_ORIGINS``: A list of trusted origins for unsafe requests (e.g. POST). Defaults to: ``[]``.
9292
* ``NOTIFICATIONS_DISABLED``: indicates whether or not notifications should be sent to the Notificaties API for operations on the API endpoints. Defaults to ``True`` for the ``dev`` environment, otherwise defaults to ``False``.
93+
* ``SENTRY_DSN``: URL of the sentry project to send error reports to. Default empty, i.e. -> no monitoring set up. Highly recommended to configure this.
9394
* ``DISABLE_2FA``: Whether or not two factor authentication should be disabled. Defaults to: ``False``.
9495
* ``LOG_OUTGOING_REQUESTS_EMIT_BODY``: Whether or not outgoing request bodies should be logged. Defaults to: ``True``.
9596
* ``LOG_OUTGOING_REQUESTS_DB_SAVE``: Whether or not outgoing request logs should be saved to the database. Defaults to: ``False``.
9697
* ``LOG_OUTGOING_REQUESTS_DB_SAVE_BODY``: Whether or not outgoing request bodies should be saved to the database. Defaults to: ``True``.
9798
* ``LOG_OUTGOING_REQUESTS_MAX_AGE``: The amount of time after which request logs should be deleted from the database. Defaults to: ``7``.
98-
* ``SENTRY_DSN``: URL of the sentry project to send error reports to. Default empty, i.e. -> no monitoring set up. Highly recommended to configure this.
9999

100100

101101

requirements/base.txt

+1-2
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ mozilla-django-oidc-db==0.22.0
240240
# open-api-framework
241241
notifications-api-common==0.3.1
242242
# via commonground-api-common
243-
open-api-framework==0.9.2
243+
open-api-framework==0.9.3
244244
# via -r requirements/base.in
245245
orderedmultidict==1.0.1
246246
# via furl
@@ -371,4 +371,3 @@ zgw-consumers==0.35.1
371371
# via
372372
# commonground-api-common
373373
# notifications-api-common
374-
# open-api-framework

requirements/ci.txt

+1-2
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,7 @@ notifications-api-common==0.3.1
507507
# -c requirements/base.txt
508508
# -r requirements/base.txt
509509
# commonground-api-common
510-
open-api-framework==0.9.2
510+
open-api-framework==0.9.3
511511
# via
512512
# -c requirements/base.txt
513513
# -r requirements/base.txt
@@ -837,4 +837,3 @@ zgw-consumers==0.35.1
837837
# -r requirements/base.txt
838838
# commonground-api-common
839839
# notifications-api-common
840-
# open-api-framework

requirements/dev.txt

+1-2
Original file line numberDiff line numberDiff line change
@@ -582,7 +582,7 @@ notifications-api-common==0.3.1
582582
# -c requirements/ci.txt
583583
# -r requirements/ci.txt
584584
# commonground-api-common
585-
open-api-framework==0.9.2
585+
open-api-framework==0.9.3
586586
# via
587587
# -c requirements/ci.txt
588588
# -r requirements/ci.txt
@@ -1006,4 +1006,3 @@ zgw-consumers==0.35.1
10061006
# -r requirements/ci.txt
10071007
# commonground-api-common
10081008
# notifications-api-common
1009-
# open-api-framework

src/openklant/conf/base.py

-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33

44
from .api import * # noqa
55

6-
init_sentry()
7-
86
#
97
# APPLICATIONS enabled for this project
108
#

0 commit comments

Comments
 (0)