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.8.0 #220

Merged
merged 1 commit into from
Jan 13, 2025
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.7.1
current_version = 1.8.0

[bumpversion:file:README.rst]

Expand Down
45 changes: 42 additions & 3 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,30 @@
Changes
=======

1.x.x (TBD)
-----------
1.8.0 (2024-01-07)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reminder to change the date to when we actually release this

------------------

**New features**

* [#108] Admin action to check Abonnement callback status
* [#180] Provide an admin overview for notificatie responses
* [#207] Add experimental PUT and PATCH for Kanaal
* [#199] Add Admin OIDC Configuration step from django-setup-configuration
* [#204] Add SitesConfiguration step from django-setup-configuration
* [#200] Autorisaties-API configuration via django-setup-configuration
* [#202] Configuration Kanalen via django-setup-configuration
* [#202] Configuration Abonnementen via django-setup-configuration
* [#203] Configuration Notification settings via django-setup-configuration
* [maykinmedia/open-api-framework#46] Upgrade open-api-framework to 0.9.1

**Bugfixes and QOL**

* [#66] updated commonground-api-common to 2.1.0 (TBD)
* [maykinmedia/open-api-framework#66] Update zgw consumers to 0.36.0
* [#199] Upgrade mozilla-django-oidc-db to 0.21.1
* [#203] Upgrade notifications-api-common to 0.4.0
* [#204] Upgrade django-setup-configuration to 0.5.0
* [#200] Fix ``CELERY_LOGLEVEL`` not working
* [#200] Upgrade commonground-api-common to 2.2.0

.. warning::

Expand All @@ -15,6 +34,26 @@ Changes
was added to move to the `Service` model. It is advised to verify the `Service`
instances in the admin to check that the data migration was ran as expected.

.. warning::

``LOG_STDOUT`` configuration variable now defaults to ``True`` instead of ``False``

.. warning::

The previous setup configurations are no longer supported.
Make sure to replace the old configurations with the new ones.

**Project maintenance**
danielmursa-dev marked this conversation as resolved.
Show resolved Hide resolved

* [maykinmedia/objects-api#463] Add trivy image scan
* [maykinmedia/open-api-framework#92] Fix docker latest tag publish
* [maykinmedia/open-api-framework#13] Consistent CI configuration across the different projects.

**Documentation**

* [#200] Update docs for setup configuration changes
* [maykinmedia/objects-api#403] Update delivery guarantee documentation


1.7.1 (2024-10-04)
------------------
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.7.1
:Version: 1.8.0
:Source: https://github.com/open-zaak/open-notificaties
:Keywords: zaken, zaakgericht werken, GEMMA, notificaties
:PythonVersion: 3.11
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.7.1' # see https://hub.docker.com/r/openzaak/open-notificaties/tags
opennotificaties_version: '1.8.0' # see https://hub.docker.com/r/openzaak/open-notificaties/tags
opennotificaties_cache_db: 1
tags:
- replicas
Expand Down
4 changes: 2 additions & 2 deletions 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.7.1",
"version": "1.8.0",
"description": "Open Notificaties",
"main": "src/index.js",
"directories": {
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.7.1"
__version__ = "1.8.0"
__author__ = "Maykin Media"
__homepage__ = "https://github.com/open-zaak/open-notificaties"
Loading