From 8836aefaf67eeb702b97313f2b1136665d31675b Mon Sep 17 00:00:00 2001 From: Sonny Bakker Date: Thu, 24 Oct 2024 10:29:27 +0200 Subject: [PATCH 1/4] Update changelog --- CHANGELOG.rst | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 1320f7d..a5ed963 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,19 @@ Changelog ========= +0.3.0 (2024-10-24) +------------------ + +* Upgraded Django requirement to >= 4.2 +* Upgraded minimum python requirement to >= 3.10 +* Added python 3.12 support +* Added the `NOTIFICATIONS_GUARANTEE_DELIVERY` environment variable which allows + `RuntimeError`s to be raised (or not to) whenever no Notifications API is + configured. The default for this setting is set to `True`. +* Upgraded zgw-consumers to 0.35.1 + * This removed support for retrieving external OAS files to determine + possible API calls + 0.2.2 (2023-04-20) ------------------ From 65343d3bc2d9c8abd5a450396048795031ddb903 Mon Sep 17 00:00:00 2001 From: Sonny Bakker Date: Thu, 24 Oct 2024 10:30:16 +0200 Subject: [PATCH 2/4] Update readthedocs configuration --- .readthedocs.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 30cc6ce..3b52192 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -8,7 +8,7 @@ sphinx: configuration: docs/conf.py python: - version: 3.8 + version: 3.10 install: - method: pip path: . From 85813c7aba184456275ae688f0939b4ed4032287 Mon Sep 17 00:00:00 2001 From: Sonny Bakker Date: Thu, 24 Oct 2024 10:30:47 +0200 Subject: [PATCH 3/4] Bump version --- .bumpversion.cfg | 2 +- README.rst | 2 +- docs/conf.py | 2 +- notifications_api_common/locale/en/LC_MESSAGES/django.po | 2 +- notifications_api_common/locale/nl/LC_MESSAGES/django.po | 2 +- setup.cfg | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index eae6d6c..c76cd12 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = False tag = False -current_version = 0.2.2 +current_version = 0.3.0 [bumpversion:file:setup.cfg] diff --git a/README.rst b/README.rst index 3f80b95..a29de3b 100644 --- a/README.rst +++ b/README.rst @@ -1,7 +1,7 @@ notifications-api-common ======================== -:Version: 0.2.2 +:Version: 0.3.0 :Source: https://github.com/maykinmedia/notifications-api-common :Keywords: notifications, REST, API, Common Ground, ZGW :PythonVersion: 3.10 diff --git a/docs/conf.py b/docs/conf.py index 52458f0..a18fa63 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -26,7 +26,7 @@ author = "Maykin Media" # The full version, including alpha/beta/rc tags -release = "0.2.2" +release = "0.3.0" # -- General configuration --------------------------------------------------- diff --git a/notifications_api_common/locale/en/LC_MESSAGES/django.po b/notifications_api_common/locale/en/LC_MESSAGES/django.po index e64abf4..a7157db 100644 --- a/notifications_api_common/locale/en/LC_MESSAGES/django.po +++ b/notifications_api_common/locale/en/LC_MESSAGES/django.po @@ -6,7 +6,7 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 0.2.2\n" +"Project-Id-Version: 0.3.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2022-12-14 13:45+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" diff --git a/notifications_api_common/locale/nl/LC_MESSAGES/django.po b/notifications_api_common/locale/nl/LC_MESSAGES/django.po index c43fa20..b042ea6 100644 --- a/notifications_api_common/locale/nl/LC_MESSAGES/django.po +++ b/notifications_api_common/locale/nl/LC_MESSAGES/django.po @@ -6,7 +6,7 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 0.2.2\n" +"Project-Id-Version: 0.3.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2022-12-14 13:45+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" diff --git a/setup.cfg b/setup.cfg index df8b1b9..47696db 100644 --- a/setup.cfg +++ b/setup.cfg @@ -2,7 +2,7 @@ # see http://setuptools.readthedocs.io/en/latest/setuptools.html#configuring-setup-using-setup-cfg-files [metadata] name = notifications-api-common -version = 0.2.2 +version = 0.3.0 description = Re-usable integration layer for the Common Ground Notifications API specification. long_description = file: README.rst url = https://github.com/maykinmedia/notifications-api-common From 6e5d8fd75387a678b1cde785b1af278976320f43 Mon Sep 17 00:00:00 2001 From: Sonny Bakker Date: Thu, 24 Oct 2024 11:05:04 +0200 Subject: [PATCH 4/4] Add `Service` model notice --- CHANGELOG.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index a5ed963..cfd84a0 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -13,7 +13,8 @@ Changelog configured. The default for this setting is set to `True`. * Upgraded zgw-consumers to 0.35.1 * This removed support for retrieving external OAS files to determine - possible API calls + * This requires `zgw_consumers.models.Service` ("service") instances to be + created to do external API calls through `zgw_consumer` 0.2.2 (2023-04-20) ------------------