Skip to content

Commit fdabfc4

Browse files
committed
🔖 release 2.2.0
1 parent 0f61637 commit fdabfc4

File tree

6 files changed

+16
-8
lines changed

6 files changed

+16
-8
lines changed

.bumpversion.cfg

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

66
[bumpversion:file:README.rst]
77

CHANGELOG.rst

+8
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ Change history
88

99
**New features**
1010

11+
* [#50] updated python dependencies due to security issues.
12+
* [#208] fixed the bug within the api schema generation for expand paths.
13+
* [#209] added query parameters to the `digitalenadressen` endpoint.
14+
* [#214] Added expand path from `digitaleadressen` to `internetaken`.
15+
* [#182] added `actoren` field in `internetaken`.
16+
* [#207] changed indicatie geheimhouding from required to optional.
1117
* updated open-api-framework to 0.8.0, which includes adding CSRF, CSP and HSTS settings (#438).
1218
All new environment variables are added to the `documentation <https://objects-and-objecttypes-api.readthedocs.io/en/latest/installation/config.html>`_
1319

@@ -17,7 +23,9 @@ Change history
1723
before upgrading to this version of open-api-framework, your entire application is served
1824
over HTTPS, otherwise this setting can break parts of your application (see https://docs.djangoproject.com/en/4.2/ref/middleware/#http-strict-transport-security)
1925

26+
.. warning::
2027

28+
With the introduction of the ``actoren`` field in the internetaken endpoint, made the field ``actor`` depricated and will be removed in the next version.
2129

2230
2.1.0
2331
=====

README.rst

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

5-
:Version: 2.1.0
5+
:Version: 2.2.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.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>`_
42+
2.2.0 0.0.3 2024-03-15 `ReDoc <https://redocly.github.io/redoc/?url=https://raw.githubusercontent.com/maykinmedia/open-klant/2.2.0/src/openklant/components/klantinteracties/openapi.yaml>`_,
43+
`Swagger <https://petstore.swagger.io/?url=https://raw.githubusercontent.com/maykinmedia/open-klant/2.2.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.1.0",
3+
"version": "2.2.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.1.0"
4+
__version__ = "2.2.0"
55
__author__ = "Maykin"
66
__homepage__ = "https://github.com/maykinmedia/open-klant"

0 commit comments

Comments
 (0)