Skip to content

Commit ba752ea

Browse files
authored
Merge pull request #201 from maykinmedia/release/2.1.0
🔖 Release 2.1.0
2 parents 91d39cb + 9f40cc2 commit ba752ea

File tree

6 files changed

+31
-19
lines changed

6 files changed

+31
-19
lines changed

.bumpversion.cfg

+1-9
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,12 @@
11
[bumpversion]
22
commit = False
33
tag = False
4-
current_version = 2.0.0
4+
current_version = 2.1.0
55

66
[bumpversion:file:README.rst]
77

8-
# [bumpversion:file:README.EN.rst]
9-
108
[bumpversion:file:package.json]
119
search = "version": "{current_version}",
1210
replace = "version": "{new_version}",
1311

1412
[bumpversion:file:src/openklant/__init__.py]
15-
16-
# [bumpversion:file:docs/api/index.rst]
17-
18-
# [bumpversion:file:publiccode.yaml]
19-
# search = softwareVersion: {current_version}
20-
# replace = softwareVersion: {new_version}

CHANGELOG.rst

+23-3
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,16 @@ Change history
55
2.1.0
66
=====
77

8-
*??? ???, 2024*
8+
*July 16, 2024*
99

10-
New features:
10+
**New features**:
1111

1212
* Add support for mounting Open Klant on a ``SUBPATH``
1313
* Elastic APM service name can now be configured with ``ELASTIC_APM_SERVICE_NAME`` envvar
14+
* [#175] added expand for detail endpoints in redoc
1415
* Made user emails unique to prevent two users logging in with the same email, causing an error
16+
* [#183] added afgehandeld_op field for internetaken
17+
* [#189] Introduced two-factor authentification (2FA) for the Admin, which can be disabled by the environment variable ``DISABLE_2FA``
1518

1619
.. warning::
1720

@@ -22,11 +25,28 @@ New features:
2225
User email addresses will now be unique on a database level. The database migration will fail if there are already
2326
two or more users with the same email address. You must ensure this is not the case before upgrading.
2427

28+
.. warning::
2529

30+
Two-factor authentication is enabled by default. The ``DISABLE_2FA`` environment variable
31+
can be used to disable it if needed.
2632

27-
Bugfixes/QoL:
33+
**Bugfixes/QoL**:
2834

2935
* Settings module was refactored to use generic settings provided by Open API Framework
36+
* [#187] Streamline environment variables
37+
* Fix help-text icon for datetime field in the admin
38+
39+
**Documentation**
40+
41+
* [#196] remove links to outdated VNG documentation
42+
43+
**Project maintenance**
44+
45+
* [#179] Fix Trivy github action
46+
* Update to Python 3.11
47+
* [#155] use open-api-framework
48+
* [#188] remove unused notification settings
49+
* Refactor settings module
3050

3151

3252
2.0.0

README.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Open Klant
33
==========
44

5-
:Version: 2.0.0
5+
:Version: 2.1.0
66
:Source: https://github.com/maykinmedia/open-klant
77
:Keywords: klanten, klantinteracties, contactmomenten, api, common ground
88
:License: EUPL
@@ -39,8 +39,8 @@ Open Klant versie API versie Release datum API specificatie
3939
================== ============== ============= ================
4040
master/latest n/a n/a `ReDoc <https://redocly.github.io/redoc/?url=https://raw.githubusercontent.com/maykinmedia/open-klant/master/src/openklant/components/klantinteracties/openapi.yaml>`_,
4141
`Swagger <https://petstore.swagger.io/?url=https://raw.githubusercontent.com/maykinmedia/open-klant/master/src/openklant/components/klantinteracties/openapi.yaml>`_
42-
2.0.0 0.0.3 2024-03-15 `ReDoc <https://redocly.github.io/redoc/?url=https://raw.githubusercontent.com/maykinmedia/open-klant/2.0.0/src/openklant/components/klantinteracties/openapi.yaml>`_,
43-
`Swagger <https://petstore.swagger.io/?url=https://raw.githubusercontent.com/maykinmedia/open-klant/2.0.0/src/openklant/components/klantinteracties/openapi.yaml>`_
42+
2.1.0 0.0.3 2024-03-15 `ReDoc <https://redocly.github.io/redoc/?url=https://raw.githubusercontent.com/maykinmedia/open-klant/2.1.0/src/openklant/components/klantinteracties/openapi.yaml>`_,
43+
`Swagger <https://petstore.swagger.io/?url=https://raw.githubusercontent.com/maykinmedia/open-klant/2.1.0/src/openklant/components/klantinteracties/openapi.yaml>`_
4444
1.0.0 0.0.1 2023-08-05 Klanten:
4545
`ReDoc <https://redocly.github.io/redoc/?url=https://raw.githubusercontent.com/maykinmedia/open-klant/1.0.0/src/openklant/components/klanten/openapi.yaml>`_,
4646
`Swagger <https://petstore.swagger.io/?url=https://raw.githubusercontent.com/maykinmedia/open-klant/1.0.0/src/openklant/components/klanten/openapi.yaml>`_

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "openklant",
3-
"version": "2.0.0",
3+
"version": "2.1.0",
44
"description": "openklant project",
55
"main": "src/static/openklant/js/openklant.js",
66
"directories": {

src/openklant/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from .celery import app as celery_app
22

33
__all__ = ("celery_app",)
4-
__version__ = "2.0.0"
4+
__version__ = "2.1.0"
55
__author__ = "Maykin"
66
__homepage__ = "https://github.com/maykinmedia/open-klant"

0 commit comments

Comments
 (0)