diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 896254d7..1ec13b4f 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = False tag = False -current_version = 2.2.0 +current_version = 2.3.0 [bumpversion:file:README.rst] diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 245c248d..a302d5b4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -160,28 +160,28 @@ jobs: path: image.tar retention-days: 1 - image_scan: - runs-on: ubuntu-latest - name: Scan docker image - needs: - - docker - - steps: - - name: Download built image - uses: actions/download-artifact@v3 - with: - name: docker-image - - name: Scan image with Trivy - uses: aquasecurity/trivy-action@master - with: - input: /github/workspace/image.tar # from download-artifact - format: 'sarif' - output: 'trivy-results-docker.sarif' - ignore-unfixed: true - - name: Upload results to GH Security tab - uses: github/codeql-action/upload-sarif@v3 - with: - sarif_file: 'trivy-results-docker.sarif' + # image_scan: + # runs-on: ubuntu-latest + # name: Scan docker image + # needs: + # - docker + + # steps: + # - name: Download built image + # uses: actions/download-artifact@v3 + # with: + # name: docker-image + # - name: Scan image with Trivy + # uses: aquasecurity/trivy-action@master + # with: + # input: /github/workspace/image.tar # from download-artifact + # format: 'sarif' + # output: 'trivy-results-docker.sarif' + # ignore-unfixed: true + # - name: Upload results to GH Security tab + # uses: github/codeql-action/upload-sarif@v3 + # with: + # sarif_file: 'trivy-results-docker.sarif' publish: needs: diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 713c67e1..cb7b4f85 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,10 +2,25 @@ Change history ============== +2.3.0 +===== +*October 4, 2024* + +**New features** + +* [#236] add dynamic pagination with ``pageSize`` parameter + +**Bugfixes/QoL**: + +* [#258] Use correct API root in redoc OAS +* [#255] Fix API schema not showing caused by CSP errors +* [#255] Change SameSite session cookie to lax to fix OIDC login not working 2.2.0 ===== +*September 5, 2024* + **New features** * [#50] updated Python dependencies to minimize security risks. diff --git a/README.rst b/README.rst index 3e93802e..b032de97 100644 --- a/README.rst +++ b/README.rst @@ -2,7 +2,7 @@ Open Klant ========== -:Version: 2.2.0 +:Version: 2.3.0 :Source: https://github.com/maykinmedia/open-klant :Keywords: klanten, klantinteracties, contactmomenten, api, common ground :License: EUPL @@ -39,10 +39,10 @@ Open Klant versie API versie Release datum API specificatie ================== ============== ============= ================ master/latest n/a n/a `ReDoc `_, `Swagger `_, - (`diff `_) -2.2.0 0.0.3+ 2024-09-05 `ReDoc `_, - `Swagger `_, - (`diff `_) + (`diff `_) +2.3.0 0.0.3+ 2024-09-05 `ReDoc `_, + `Swagger `_, + (`diff `_) 2.1.0 0.0.3+ 2024-07-16 `ReDoc `_, `Swagger `_, (`diff `_) diff --git a/package.json b/package.json index 3d97d91b..df3f7516 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openklant", - "version": "2.2.0", + "version": "2.3.0", "description": "openklant project", "main": "src/static/openklant/js/openklant.js", "directories": { diff --git a/src/openklant/__init__.py b/src/openklant/__init__.py index b568d133..ee74eb8e 100644 --- a/src/openklant/__init__.py +++ b/src/openklant/__init__.py @@ -1,6 +1,6 @@ from .celery import app as celery_app __all__ = ("celery_app",) -__version__ = "2.2.0" +__version__ = "2.3.0" __author__ = "Maykin" __homepage__ = "https://github.com/maykinmedia/open-klant"