Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🔖 release 1.5.0 #117

Merged
merged 1 commit into from
Dec 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[bumpversion]
commit = False
tag = False
current_version = 1.4.3
current_version = 1.5.0

[bumpversion:file:README.rst]

Expand Down
32 changes: 32 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,38 @@
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
* [#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)
==================

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion deployment/single-server/open-notificaties.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nrc",
"version": "1.4.3",
"version": "1.5.0",
"description": "Open Notificaties",
"main": "src/index.js",
"directories": {
Expand Down
4 changes: 2 additions & 2 deletions publiccode.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/nrc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Loading