Skip to content

Commit

Permalink
🚀 bump version to 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthijsBekendam committed Feb 21, 2023
1 parent 4b2da2e commit ccb6e34
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 6 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
===========
Wijzigingen
===========
1.3.1 (2023-02-21)
===========
* add search parameters to request body of `_zoek`.
* set vng-api-common to 2.0.4.
* remove standard /api/v1 prefix from OAS generation.

===========
1.3.0 (2022-12-19)
===========
Expand Down Expand Up @@ -31,7 +38,7 @@ Implementation changes
----------------------

* Corrected ZIO create documentation
* Added new notifications module
* Added new notifications module
* replaced ``drf-yasg`` by ``drf-spectacular`` due to yasg not supporting Django 3.2
* Add missing ``bleach`` dependency

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 @@
Zaken API
=========

:Version: 1.3.0
:Version: 1.3.1
:Source: https://github.com/VNG-Realisatie/zaken-api
:Keywords: zaken, zaakgericht werken, GEMMA, RGBZ, ZRC

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "zrc",
"version": "1.3.0",
"version": "1.3.1",
"description": "zrc referentie implementatie API",
"directories": {
"doc": "doc"
Expand Down
2 changes: 1 addition & 1 deletion src/openapi.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
openapi: 3.0.3
info:
title: Zaken API
version: 1.3.0
version: 1.3.1
description: "Een API om een zaakregistratiecomponent (ZRC) te benaderen.
Expand Down
2 changes: 1 addition & 1 deletion src/zrc/api/tests/test_dso_api_strategy.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def test_api_19_documentation_version_yaml(self):
@override_settings(ROOT_URLCONF="zrc.api.tests.test_urls")
def test_api_24_version_header(self):
response = self.client.get("/test-view")
self.assertEqual(response["API-version"], "1.3.0")
self.assertEqual(response["API-version"], "1.3.1")


class DSOApi50Tests(APITestCase):
Expand Down
7 changes: 7 additions & 0 deletions src/zrc/api/tests/test_zaak_zoek.py
Original file line number Diff line number Diff line change
Expand Up @@ -375,9 +375,16 @@ def test_zoek_rol__omschrijving_generiek(self):
def test_zoek_maximale_vertrouwelijkheidaanduidingn(self):
zaak1, zaak2, zaak3 = ZaakFactory.create_batch(3)
url = get_operation_url("zaak__zoek")

zaak1.vertrouwelijkheidaanduiding = VertrouwelijkheidsAanduiding.vertrouwelijk
zaak1.save()

zaak2.vertrouwelijkheidaanduiding = VertrouwelijkheidsAanduiding.openbaar
zaak2.save()

zaak3.vertrouwelijkheidaanduiding = VertrouwelijkheidsAanduiding.confidentieel
zaak3.save()

data = {
"maximale_vertrouwelijkheidaanduiding": zaak2.vertrouwelijkheidaanduiding
}
Expand Down
2 changes: 1 addition & 1 deletion src/zrc/conf/includes/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from vng_api_common.conf.api import * # noqa - imports white-listed

API_VERSION = "1.3.0"
API_VERSION = "1.3.1"

REST_FRAMEWORK = BASE_REST_FRAMEWORK.copy()
REST_FRAMEWORK["PAGE_SIZE"] = 100
Expand Down

0 comments on commit ccb6e34

Please sign in to comment.