diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 33142dac..bdccf040 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = False tag = False -current_version = 2.2.1 +current_version = 2.2.2 [bumpversion:file:README.rst] diff --git a/CHANGELOG.rst b/CHANGELOG.rst index de7ac89a..44dd0c1f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,16 @@ Change history ============== +2.2.2 (2024-10-01) +------------------ + +**Bugfixes and QOL** + +* fix API schema not showing casued by CSP errors +* change seesion cookie samesite to lax to fix OIDC login not working +* change all setup configuration to disabled by default +* Remove the need to manually configure Site.domain for the 2FA app title + 2.2.1 (2024-08-29) ------------------ diff --git a/README.NL.rst b/README.NL.rst index 4987b5c8..ab13a378 100644 --- a/README.NL.rst +++ b/README.NL.rst @@ -2,7 +2,7 @@ Objecttypen API =============== -:Version: 2.2.1 +:Version: 2.2.2 :Source: https://github.com/maykinmedia/objecttypes-api :Keywords: objecten, assets, zaakobjecten @@ -36,10 +36,10 @@ Versie Release datum API specificatie ============== ============== ============================= latest n/a `ReDoc `_, `Swagger `_, - (`verschillen `_) -2.2.1 2022-08-23 `ReDoc `_, - `Swagger `_ - (`verschillen `_) + (`verschillen `_) +2.2.2 2022-08-23 `ReDoc `_, + `Swagger `_ + (`verschillen `_) 2.2.0 2022-06-24 `ReDoc `_, `Swagger `_ (`verschillen `_) diff --git a/README.rst b/README.rst index 31869ba7..29c7bd73 100644 --- a/README.rst +++ b/README.rst @@ -2,7 +2,7 @@ Objecttypes API =============== -:Version: 2.2.1 +:Version: 2.2.2 :Source: https://github.com/maykinmedia/objecttypes-api :Keywords: objects, assets, zaakobjecten @@ -35,10 +35,10 @@ Version Release date API specification ============== ============== ============================= latest n/a `ReDoc `_, `Swagger `_, - (`diff `_) -2.2.1 2022-08-23 `ReDoc `_, - `Swagger `_ - (`diff `_) + (`diff `_) +2.2.2 2022-08-23 `ReDoc `_, + `Swagger `_ + (`diff `_) 2.2.0 2022-06-24 `ReDoc `_, `Swagger `_ (`diff `_) diff --git a/package.json b/package.json index 1a1962db..3872a904 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "objecttypes", - "version": "2.2.1", + "version": "2.2.2", "description": "objecttypes project", "main": "src/objecttypes/static/bundles/objecttypes-js.js", "directories": { diff --git a/publiccode.yaml b/publiccode.yaml index c32d4579..08770839 100644 --- a/publiccode.yaml +++ b/publiccode.yaml @@ -7,7 +7,7 @@ publiccodeYmlVersion: '0.2' name: Objecttypes API url: 'http://github.com/maykinmedia/objecttypes-api.git' softwareType: standalone/backend -softwareVersion: 2.2.1 +softwareVersion: 2.2.2 releaseDate: '2021-01-13' logo: 'https://github.com/maykinmedia/objects-api/blob/master/docs/logo.png' platforms: diff --git a/src/objecttypes/api/v2/openapi.yaml b/src/objecttypes/api/v2/openapi.yaml index eceb5d02..4ee10b48 100644 --- a/src/objecttypes/api/v2/openapi.yaml +++ b/src/objecttypes/api/v2/openapi.yaml @@ -1,7 +1,7 @@ openapi: 3.0.3 info: title: Objecttypes API - version: 2.2.1 (v2) + version: 2.2.2 (v2) description: |+ An API to manage Object types. diff --git a/src/objecttypes/conf/api.py b/src/objecttypes/conf/api.py index 6693cf86..f3a3993f 100644 --- a/src/objecttypes/conf/api.py +++ b/src/objecttypes/conf/api.py @@ -1,7 +1,7 @@ from vng_api_common.conf.api import * # noqa - imports white-listed -API_VERSION = "2.2.1" -VERSIONS = {"v1": "1.2.0", "v2": "2.2.1"} +API_VERSION = "2.2.2" +VERSIONS = {"v1": "1.2.0", "v2": "2.2.2"} # api settings