Skip to content

Commit 894e92b

Browse files
committed
[#66] update zgw-consumers
1 parent d883724 commit 894e92b

File tree

5 files changed

+61
-39
lines changed

5 files changed

+61
-39
lines changed

docs/installation/config.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ Optional
8787
* ``RELEASE``: The version number or commit hash of the application (this is also sent to Sentry).
8888
* ``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``.
8989
* ``CSRF_TRUSTED_ORIGINS``: A list of trusted origins for unsafe requests (e.g. POST). Defaults to: ``[]``.
90-
* ``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``.
90+
* ``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``. #TODO: remove this setting?
9191
* ``DISABLE_2FA``: Whether or not two factor authentication should be disabled. Defaults to: ``False``.
9292
* ``LOG_OUTGOING_REQUESTS_EMIT_BODY``: Whether or not outgoing request bodies should be logged. Defaults to: ``True``.
9393
* ``LOG_OUTGOING_REQUESTS_DB_SAVE``: Whether or not outgoing request logs should be saved to the database. Defaults to: ``False``.

requirements/base.in

+2
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
open-api-framework
2+
3+
git+https://github.com/maykinmedia/commonground-api-common@feature/update-notifs-client

requirements/base.txt

+20-12
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@
77
amqp==5.2.0
88
# via kombu
99
ape-pie==0.2.0
10-
# via zgw-consumers
10+
# via
11+
# commonground-api-common
12+
# notifications-api-common
13+
# zgw-consumers
1114
asgiref==3.8.1
1215
# via
1316
# django
@@ -56,8 +59,10 @@ click-plugins==1.1.1
5659
# via celery
5760
click-repl==0.3.0
5861
# via celery
59-
commonground-api-common==1.13.4
60-
# via open-api-framework
62+
commonground-api-common @ git+https://github.com/maykinmedia/commonground-api-common@feature/update-notifs-client
63+
# via
64+
# -r requirements/base.in
65+
# open-api-framework
6166
coreapi==2.3.3
6267
# via commonground-api-common
6368
coreschema==0.0.4
@@ -105,6 +110,7 @@ django==4.2.15
105110
# notifications-api-common
106111
# open-api-framework
107112
# zgw-consumers
113+
# zgw-consumers-oas
108114
django-admin-index==3.1.1
109115
# via open-api-framework
110116
django-appconf==1.0.6
@@ -190,14 +196,12 @@ elastic-apm==6.23.0
190196
# via open-api-framework
191197
face==20.1.1
192198
# via glom
199+
faker==32.1.0
200+
# via zgw-consumers-oas
193201
flower==2.0.1
194202
# via open-api-framework
195203
furl==2.1.3
196204
# via ape-pie
197-
gemma-zds-client==2.0.0
198-
# via
199-
# commonground-api-common
200-
# notifications-api-common
201205
glom==23.5.0
202206
# via mozilla-django-oidc-db
203207
humanize==4.10.0
@@ -232,7 +236,7 @@ mozilla-django-oidc==4.0.1
232236
# via mozilla-django-oidc-db
233237
mozilla-django-oidc-db==0.19.0
234238
# via open-api-framework
235-
notifications-api-common==0.2.2
239+
notifications-api-common==0.3.0
236240
# via commonground-api-common
237241
open-api-framework==0.8.1
238242
# via -r requirements/base.in
@@ -255,7 +259,6 @@ pycparser==2.22
255259
pyjwt==2.9.0
256260
# via
257261
# commonground-api-common
258-
# gemma-zds-client
259262
# zgw-consumers
260263
pyopenssl==24.2.1
261264
# via
@@ -267,6 +270,7 @@ python-dateutil==2.9.0.post0
267270
# via
268271
# celery
269272
# django-relativedelta
273+
# faker
270274
python-decouple==3.8
271275
# via open-api-framework
272276
python-dotenv==1.0.1
@@ -279,8 +283,8 @@ pyyaml==6.0.1
279283
# via
280284
# drf-spectacular
281285
# drf-yasg
282-
# gemma-zds-client
283286
# oyaml
287+
# zgw-consumers-oas
284288
qrcode==7.4.2
285289
# via django-two-factor-auth
286290
redis==5.0.8
@@ -295,7 +299,6 @@ requests==2.32.3
295299
# commonground-api-common
296300
# coreapi
297301
# django-log-outgoing-requests
298-
# gemma-zds-client
299302
# mozilla-django-oidc
300303
# open-api-framework
301304
# zgw-consumers
@@ -318,9 +321,11 @@ tornado==6.4.1
318321
# via flower
319322
typing-extensions==4.12.2
320323
# via
324+
# faker
321325
# mozilla-django-oidc-db
322326
# qrcode
323327
# zgw-consumers
328+
# zgw-consumers-oas
324329
tzdata==2024.1
325330
# via celery
326331
uritemplate==4.1.1
@@ -348,7 +353,10 @@ webencodings==0.5.1
348353
# via bleach
349354
wrapt==1.16.0
350355
# via elastic-apm
351-
zgw-consumers==0.34.0
356+
zgw-consumers==0.35.1
352357
# via
358+
# commonground-api-common
353359
# notifications-api-common
354360
# open-api-framework
361+
zgw-consumers-oas==1.0.0
362+
# via commonground-api-common

requirements/ci.txt

+19-13
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ amqp==5.2.0
1313
ape-pie==0.2.0
1414
# via
1515
# -r requirements/base.txt
16+
# commonground-api-common
17+
# notifications-api-common
1618
# zgw-consumers
1719
asgiref==3.8.1
1820
# via
@@ -97,7 +99,7 @@ click-repl==0.3.0
9799
# celery
98100
codecov==2.1.13
99101
# via -r requirements/ci.in
100-
commonground-api-common==1.13.4
102+
commonground-api-common @ git+https://github.com/maykinmedia/commonground-api-common@feature/update-notifs-client
101103
# via
102104
# -r requirements/base.txt
103105
# open-api-framework
@@ -162,6 +164,7 @@ django==4.2.15
162164
# notifications-api-common
163165
# open-api-framework
164166
# zgw-consumers
167+
# zgw-consumers-oas
165168
django-admin-index==3.1.1
166169
# via
167170
# -r requirements/base.txt
@@ -318,8 +321,11 @@ face==20.1.1
318321
# glom
319322
factory-boy==3.3.0
320323
# via -r requirements/test-tools.in
321-
faker==26.1.0
322-
# via factory-boy
324+
faker==32.1.0
325+
# via
326+
# -r requirements/base.txt
327+
# factory-boy
328+
# zgw-consumers-oas
323329
flake8==7.1.0
324330
# via -r requirements/test-tools.in
325331
flower==2.0.1
@@ -332,11 +338,6 @@ furl==2.1.3
332338
# via
333339
# -r requirements/base.txt
334340
# ape-pie
335-
gemma-zds-client==2.0.0
336-
# via
337-
# -r requirements/base.txt
338-
# commonground-api-common
339-
# notifications-api-common
340341
glom==23.5.0
341342
# via
342343
# -r requirements/base.txt
@@ -424,7 +425,7 @@ multidict==6.0.5
424425
# via yarl
425426
mypy-extensions==1.0.0
426427
# via black
427-
notifications-api-common==0.2.2
428+
notifications-api-common==0.3.0
428429
# via
429430
# -r requirements/base.txt
430431
# commonground-api-common
@@ -487,7 +488,6 @@ pyjwt==2.9.0
487488
# via
488489
# -r requirements/base.txt
489490
# commonground-api-common
490-
# gemma-zds-client
491491
# zgw-consumers
492492
pylint==3.2.6
493493
# via -r requirements/test-tools.in
@@ -529,9 +529,9 @@ pyyaml==6.0.1
529529
# -r requirements/base.txt
530530
# drf-spectacular
531531
# drf-yasg
532-
# gemma-zds-client
533532
# oyaml
534533
# vcrpy
534+
# zgw-consumers-oas
535535
qrcode==7.4.2
536536
# via
537537
# -r requirements/base.txt
@@ -555,7 +555,6 @@ requests==2.32.3
555555
# commonground-api-common
556556
# coreapi
557557
# django-log-outgoing-requests
558-
# gemma-zds-client
559558
# mozilla-django-oidc
560559
# open-api-framework
561560
# requests-mock
@@ -626,9 +625,11 @@ tornado==6.4.1
626625
typing-extensions==4.12.2
627626
# via
628627
# -r requirements/base.txt
628+
# faker
629629
# mozilla-django-oidc-db
630630
# qrcode
631631
# zgw-consumers
632+
# zgw-consumers-oas
632633
tzdata==2024.1
633634
# via
634635
# -r requirements/base.txt
@@ -684,8 +685,13 @@ wrapt==1.16.0
684685
# vcrpy
685686
yarl==1.9.4
686687
# via vcrpy
687-
zgw-consumers==0.34.0
688+
zgw-consumers==0.35.1
688689
# via
689690
# -r requirements/base.txt
691+
# commonground-api-common
690692
# notifications-api-common
691693
# open-api-framework
694+
zgw-consumers-oas==1.0.0
695+
# via
696+
# -r requirements/base.txt
697+
# commonground-api-common

requirements/dev.txt

+19-13
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ amqp==5.2.0
1313
ape-pie==0.2.0
1414
# via
1515
# -r requirements/base.txt
16+
# commonground-api-common
17+
# notifications-api-common
1618
# zgw-consumers
1719
asgiref==3.8.1
1820
# via
@@ -98,7 +100,7 @@ click-repl==0.3.0
98100
# via
99101
# -r requirements/base.txt
100102
# celery
101-
commonground-api-common==1.13.4
103+
commonground-api-common @ git+https://github.com/maykinmedia/commonground-api-common@feature/update-notifs-client
102104
# via
103105
# -r requirements/base.txt
104106
# open-api-framework
@@ -163,6 +165,7 @@ django==4.2.15
163165
# notifications-api-common
164166
# open-api-framework
165167
# zgw-consumers
168+
# zgw-consumers-oas
166169
django-admin-index==3.1.1
167170
# via
168171
# -r requirements/base.txt
@@ -323,8 +326,11 @@ face==20.1.1
323326
# glom
324327
factory-boy==3.3.0
325328
# via -r requirements/test-tools.in
326-
faker==26.1.0
327-
# via factory-boy
329+
faker==32.1.0
330+
# via
331+
# -r requirements/base.txt
332+
# factory-boy
333+
# zgw-consumers-oas
328334
flake8==7.1.0
329335
# via -r requirements/test-tools.in
330336
flower==2.0.1
@@ -337,11 +343,6 @@ furl==2.1.3
337343
# via
338344
# -r requirements/base.txt
339345
# ape-pie
340-
gemma-zds-client==2.0.0
341-
# via
342-
# -r requirements/base.txt
343-
# commonground-api-common
344-
# notifications-api-common
345346
gitdb==4.0.11
346347
# via gitpython
347348
gitpython==3.1.43
@@ -431,7 +432,7 @@ multidict==6.0.5
431432
# via yarl
432433
mypy-extensions==1.0.0
433434
# via black
434-
notifications-api-common==0.2.2
435+
notifications-api-common==0.3.0
435436
# via
436437
# -r requirements/base.txt
437438
# commonground-api-common
@@ -494,7 +495,6 @@ pyjwt==2.9.0
494495
# via
495496
# -r requirements/base.txt
496497
# commonground-api-common
497-
# gemma-zds-client
498498
# zgw-consumers
499499
pylint==3.2.6
500500
# via -r requirements/test-tools.in
@@ -538,9 +538,9 @@ pyyaml==6.0.1
538538
# -r requirements/base.txt
539539
# drf-spectacular
540540
# drf-yasg
541-
# gemma-zds-client
542541
# oyaml
543542
# vcrpy
543+
# zgw-consumers-oas
544544
qrcode==7.4.2
545545
# via
546546
# -r requirements/base.txt
@@ -563,7 +563,6 @@ requests==2.32.3
563563
# commonground-api-common
564564
# coreapi
565565
# django-log-outgoing-requests
566-
# gemma-zds-client
567566
# mozilla-django-oidc
568567
# open-api-framework
569568
# requests-mock
@@ -637,9 +636,11 @@ tornado==6.4.1
637636
typing-extensions==4.12.2
638637
# via
639638
# -r requirements/base.txt
639+
# faker
640640
# mozilla-django-oidc-db
641641
# qrcode
642642
# zgw-consumers
643+
# zgw-consumers-oas
643644
tzdata==2024.1
644645
# via
645646
# -r requirements/base.txt
@@ -697,11 +698,16 @@ wrapt==1.16.0
697698
# vcrpy
698699
yarl==1.9.4
699700
# via vcrpy
700-
zgw-consumers==0.34.0
701+
zgw-consumers==0.35.1
701702
# via
702703
# -r requirements/base.txt
704+
# commonground-api-common
703705
# notifications-api-common
704706
# open-api-framework
707+
zgw-consumers-oas==1.0.0
708+
# via
709+
# -r requirements/base.txt
710+
# commonground-api-common
705711

706712
# The following packages are considered to be unsafe in a requirements file:
707713
# pip

0 commit comments

Comments
 (0)