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.7.0 #182

Merged
merged 3 commits into from
Sep 2, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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.6.0
current_version = 1.7.0

[bumpversion:file:README.rst]

Expand Down
44 changes: 35 additions & 9 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,27 +2,53 @@
Changes
=======

1.7.0 (2024-??-??)
1.7.0 (2024-08-26)
Coperh marked this conversation as resolved.
Show resolved Hide resolved
------------------

**New features**

* Made user emails unique to prevent two users logging in with the same email, causing an error
* [#169] Made user emails unique to prevent two users logging in with the same email, causing an error
* [#151] Added 2FA to the Admin
* [#157] Optimized deleting abonnement with a lot of notifications in the Admin
annashamray marked this conversation as resolved.
Show resolved Hide resolved

.. warning::

User email addresses will now be unique on a database level. The database migration will fail if there are already
two or more users with the same email address. You must ensure this is not the case before upgrading.

.. warning::

The default value for ``ELASTIC_APM_SERVICE_NAME`` changed from ``Open Notificaties - <ENVIRONMENT>`` to ``nrc - <ENVIRONMENT>``.
The default values for ``DB_NAME``, ``DB_USER``, ``DB_PASSWORD`` changed from ``opennotificaties`` to ``nrc``.
The default value for ``LOG_OUTGOING_REQUESTS_DB_SAVE`` changed from ``False`` to ``True``.
Two-factor authentication is enabled by default. The ``DISABLE_2FA`` environment variable
can be used to disable it if needed.


**Bugfixes**

* [#168] Fixed CSS style for help-text icon in the Admin
* [#166] Fixed ReadTheDocs build
* [#171] Fixed filtering subscribers for ``objecten`` channel and ``object_type`` filter

**Documentation**

* [#142] Updated and improved documentation to configure ON and its consumers
* [#174] Updated the documentation of environment variables using open-api-framework

**Project maintaince**

* [#159] Added open-api-framework
* [#107, #163, #165] Refactored Settings module to use generic settings provided by Open API Framework
* [#164] Updated Python to 3.11
* [#176, #179] Bumped python dependencies due to security issues: ampq, django, celery, certifi, maykin-2fa,
mozilla-django-oidc-db, sentry-sdk, uwsgi and others
* [#172] Added OAS checks to CI
* [#177] Added celery healthcheck, the example how to use it can be found in ``docker-compose.yml``

.. warning::
User email addresses will now be unique on a database level. The database migration will fail if there are already
two or more users with the same email address. You must ensure this is not the case before upgrading.

The default value for ``ELASTIC_APM_SERVICE_NAME`` changed from ``Open Notificaties - <ENVIRONMENT>`` to ``nrc - <ENVIRONMENT>``.
The default values for ``DB_NAME``, ``DB_USER``, ``DB_PASSWORD`` changed from ``opennotificaties`` to ``nrc``.
The default value for ``LOG_OUTGOING_REQUESTS_DB_SAVE`` changed from ``False`` to ``True``.

Bugfixes/QoL:
* Settings module was refactored to use generic settings provided by Open API Framework

1.6.0 (2024-05-28)
------------------
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.6.0
:Version: 1.7.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.6.0' # see https://hub.docker.com/r/openzaak/open-notificaties/tags
opennotificaties_version: '1.7.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.6.0",
"version": "1.7.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.6.0"
__version__ = "1.7.0"
__author__ = "Maykin Media"
__homepage__ = "https://github.com/open-zaak/open-notificaties"
Loading