diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 2dd3488..9737091 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = False tag = False -current_version = 1.4.3 +current_version = 1.5.0 [bumpversion:file:README.rst] diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 2d507b4..d93ed05 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,39 @@ Changes ======= +1.5.0 (2023-11-30) +================== + +Open Notificaties 1.5.0 is a release focused on security and update of dependencies + +**New features** + +* [#82] Allowed non-unique callback urls for subscriptions +* [#100] Cleaned old notifications with the periodic task +* [#101] Added `uuid` to the Notification message +* [#106] Added links to Open Notificaties documentation and Github to the landing page + +**Bugfixes** + +* [#92] Fixed handling failed notifications with big error message + +**Project maintenance** + +* [#110] Bumped dependencies with latest (security) patches +* [#89] Bumped mozilla-django-oidc-db to 0.12.0 +* [#77, #86] Replaced vng-api-common with commonground-api-common and notifications-api-common +* [#94] Added django-log-outgoing-requests +* [#98] Added Elastic APM support +* [#84] Cleaned up urls in unit tests +* [open-zaak/open-zaak#1502, open-zaak/open-zaak#1518] Added Trivy into the CI as an docker image scaner +* [open-zaak/open-zaak#1512] Moved the project from Python 3.9 to Python 3.10 +* [open-zaak/open-zaak#1512] Removed Bootstrap and jQuery from the web interface +* [open-zaak/open-zaak#1512] Switched to Debian 12 as a base for the docker image + +** Documentation** + +* [#91] Updated links to ZGW API Standards + 1.4.3 (2022-07-15) ================== diff --git a/README.rst b/README.rst index 47589f1..56482dc 100644 --- a/README.rst +++ b/README.rst @@ -2,7 +2,7 @@ Open Notificaties ================= -:Version: 1.4.3 +:Version: 1.5.0 :Source: https://github.com/open-zaak/open-notificaties :Keywords: zaken, zaakgericht werken, GEMMA, notificaties :PythonVersion: 3.10 diff --git a/deployment/single-server/open-notificaties.yml b/deployment/single-server/open-notificaties.yml index d99cfdb..5288ab6 100644 --- a/deployment/single-server/open-notificaties.yml +++ b/deployment/single-server/open-notificaties.yml @@ -60,7 +60,7 @@ - role: open_notificaties_docker vars: - opennotificaties_version: '1.4.3' # see https://hub.docker.com/r/openzaak/open-notificaties/tags + opennotificaties_version: '1.5.0' # see https://hub.docker.com/r/openzaak/open-notificaties/tags opennotificaties_cache_db: 1 tags: - replicas diff --git a/package-lock.json b/package-lock.json index cc78f93..27185b7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "nrc", - "version": "1.4.3", + "version": "1.5.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index bed12b0..a1c4572 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nrc", - "version": "1.4.3", + "version": "1.5.0", "description": "Open Notificaties", "main": "src/index.js", "directories": { diff --git a/publiccode.yaml b/publiccode.yaml index 0181072..da60f91 100644 --- a/publiccode.yaml +++ b/publiccode.yaml @@ -7,8 +7,8 @@ publiccodeYmlVersion: '0.2' name: Open Notificaties url: 'https://github.com/open-zaak/open-notificaties.git' softwareType: standalone/backend -softwareVersion: 1.0.0 -releaseDate: '2019-09-30' +softwareVersion: 1.5.0 +releaseDate: '2023-11-30' logo: 'https://raw.githubusercontent.com/open-zaak/open-notificaties/main/docs/logo.svg' platforms: - web diff --git a/src/nrc/__init__.py b/src/nrc/__init__.py index 65b0899..b22db44 100644 --- a/src/nrc/__init__.py +++ b/src/nrc/__init__.py @@ -2,6 +2,6 @@ __all__ = ("celery_app",) -__version__ = "1.4.3" +__version__ = "1.5.0" __author__ = "Maykin Media" __homepage__ = "https://github.com/open-zaak/open-notificaties"