Skip to content

Commit

Permalink
Merge branch 'bump-f!f-version-to-8.2.0-20240711.042331' of https://g…
Browse files Browse the repository at this point in the history
…ithub.com/ibissource/zaakbrug into bump-f!f-version-to-8.2.0-20240711.042331
  • Loading branch information
MLenterman committed Sep 12, 2024
2 parents f0afe9d + 6b377eb commit 6d94ee4
Show file tree
Hide file tree
Showing 107 changed files with 5,343 additions and 1,762 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/bump-ff-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ on:

jobs:
bump-ff-version:
uses: wearefrank/ci-cd-templates/.github/workflows/ff-version-auto-bumper.yml@e073950d36ffdeb9f018b14b2ca0c13449825b2f # 1.0.3
uses: wearefrank/ci-cd-templates/.github/workflows/ff-version-auto-bumper.yml@df1db1b1a73abf2e733f3a5e77b87db7693980c0 # 1.0.8
secrets:
token: ${{ secrets.GITHUB_TOKEN }}
token: ${{ secrets.WEAREFRANK_BOT_PAT }}
dockerhub-username: ${{ secrets.DOCKERHUB_USERNAME }}
dockerhub-token: ${{ secrets.DOCKERHUB_TOKEN }}
with:
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
version-next: ${{ steps.reference.outputs.next-reference }}
version-next-strict: ${{ steps.reference.outputs.next-reference }}
steps:
- uses: step-security/harden-runner@17d0e2bd7d51742c71671bd19fa12bdc9d40a3d6 # v2.8.1
- uses: step-security/harden-runner@5c7944e73c4c2a096b17a9cb74d65b6c2bbafbde # v2.9.1
with:
disable-sudo: true
egress-policy: block
Expand All @@ -27,10 +27,10 @@ jobs:

- name: Next Reference
id: reference
uses: wearefrank/ci-cd-templates/next-reference@e8affe3c6b9d1a725b3332042f82096286974d15 #1.0.2
uses: wearefrank/ci-cd-templates/next-reference@df1db1b1a73abf2e733f3a5e77b87db7693980c0 #1.0.8

ci:
uses: wearefrank/ci-cd-templates/.github/workflows/ci-generic.yml@e8affe3c6b9d1a725b3332042f82096286974d15 #1.0.2
uses: wearefrank/ci-cd-templates/.github/workflows/ci-generic.yml@df1db1b1a73abf2e733f3a5e77b87db7693980c0 #1.0.8
needs:
- version-next
secrets:
Expand All @@ -48,7 +48,7 @@ jobs:
- version-next
- ci
steps:
- uses: step-security/harden-runner@17d0e2bd7d51742c71671bd19fa12bdc9d40a3d6 # v2.8.1
- uses: step-security/harden-runner@5c7944e73c4c2a096b17a9cb74d65b6c2bbafbde # v2.9.1
with:
egress-policy: audit

Expand All @@ -71,7 +71,7 @@ jobs:
export ZAAKBRUG_VERSION="${{ needs.version-next.outputs.version-next }}"
docker image inspect ${{ vars.DOCKER_IMAGE_REPOSITORY }}/${{ vars.DOCKER_IMAGE_NAME }}:${ZAAKBRUG_VERSION}
docker-compose -f ./docker-compose.zaakbrug.dev.yml -f ./docker-compose.zaakbrug.postgres.yml -f ./docker-compose.openzaak.dev.yml --profile soapui up -d
docker compose -f ./docker-compose.zaakbrug.dev.yml -f ./docker-compose.zaakbrug.postgres.yml -f ./docker-compose.openzaak.dev.yml --profile soapui up -d
docker ps
sleep 90
Expand All @@ -86,7 +86,7 @@ jobs:
EXIT_CODE=$(docker inspect --format='{{json .State.ExitCode}}' soapui-testrunner)
echo "Exit Code: $EXIT_CODE"
docker-compose -f ./docker-compose.zaakbrug.dev.yml -f ./docker-compose.zaakbrug.postgres.yml -f ./docker-compose.openzaak.dev.yml down
docker compose -f ./docker-compose.zaakbrug.dev.yml -f ./docker-compose.zaakbrug.postgres.yml -f ./docker-compose.openzaak.dev.yml down
if [ "$EXIT_CODE" -ne 0 ]
then
Expand All @@ -104,7 +104,7 @@ jobs:
fi
- name: Upload SoapUI testreports as artifact
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b #4.3.4
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 #4.4.0
if: always()
with:
name: reports-soapui-testreports
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
version-next-tag: ${{ steps.next-version.outputs.release-tag }}
version-next-type: ${{ steps.next-version.outputs.release-type }}
steps:
- uses: step-security/harden-runner@17d0e2bd7d51742c71671bd19fa12bdc9d40a3d6 # v2.8.1
- uses: step-security/harden-runner@5c7944e73c4c2a096b17a9cb74d65b6c2bbafbde # v2.9.1
with:
disable-sudo: true
egress-policy: audit
Expand All @@ -40,7 +40,7 @@ jobs:
GH_TOKEN: ${{ secrets.WEAREFRANK_BOT_PAT }}

ci:
uses: wearefrank/ci-cd-templates/.github/workflows/ci-generic.yml@e8affe3c6b9d1a725b3332042f82096286974d15 #1.0.2
uses: wearefrank/ci-cd-templates/.github/workflows/ci-generic.yml@df1db1b1a73abf2e733f3a5e77b87db7693980c0 #1.0.8
needs: analyze-commits
secrets:
token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -58,7 +58,7 @@ jobs:
- analyze-commits
- ci
steps:
- uses: step-security/harden-runner@17d0e2bd7d51742c71671bd19fa12bdc9d40a3d6 # v2.8.1
- uses: step-security/harden-runner@5c7944e73c4c2a096b17a9cb74d65b6c2bbafbde # v2.9.1
with:
egress-policy: audit

Expand All @@ -81,7 +81,7 @@ jobs:
export ZAAKBRUG_VERSION="${{ needs.analyze-commits.outputs.version-next }}"
docker image inspect ${{ vars.DOCKER_IMAGE_REPOSITORY }}/${{ vars.DOCKER_IMAGE_NAME }}:${ZAAKBRUG_VERSION}
docker-compose -f ./docker-compose.zaakbrug.dev.yml -f ./docker-compose.zaakbrug.postgres.yml -f ./docker-compose.openzaak.dev.yml --profile soapui up -d
docker compose -f ./docker-compose.zaakbrug.dev.yml -f ./docker-compose.zaakbrug.postgres.yml -f ./docker-compose.openzaak.dev.yml --profile soapui up -d
docker ps
sleep 90
Expand All @@ -96,7 +96,7 @@ jobs:
EXIT_CODE=$(docker inspect --format='{{json .State.ExitCode}}' soapui-testrunner)
echo "Exit Code: $EXIT_CODE"
docker-compose -f ./docker-compose.zaakbrug.dev.yml -f ./docker-compose.zaakbrug.postgres.yml -f ./docker-compose.openzaak.dev.yml down
docker compose -f ./docker-compose.zaakbrug.dev.yml -f ./docker-compose.zaakbrug.postgres.yml -f ./docker-compose.openzaak.dev.yml down
if [ "$EXIT_CODE" -ne 0 ]
then
Expand All @@ -114,7 +114,7 @@ jobs:
fi
- name: Upload SoapUI testreports as artifact
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b #4.3.4
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 #4.4.0
if: always()
with:
name: reports-soapui-testreports
Expand All @@ -127,7 +127,7 @@ jobs:
- ci
- run-soapui-tests
steps:
- uses: step-security/harden-runner@17d0e2bd7d51742c71671bd19fa12bdc9d40a3d6 # v2.8.1
- uses: step-security/harden-runner@5c7944e73c4c2a096b17a9cb74d65b6c2bbafbde # v2.9.1
with:
egress-policy: audit

Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:
GH_TOKEN: ${{ secrets.WEAREFRANK_BOT_PAT }}

docker-release:
uses: wearefrank/ci-cd-templates/.github/workflows/docker-release-generic.yml@e8affe3c6b9d1a725b3332042f82096286974d15 #1.0.2
uses: wearefrank/ci-cd-templates/.github/workflows/docker-release-generic.yml@df1db1b1a73abf2e733f3a5e77b87db7693980c0 #1.0.8
needs:
- analyze-commits
- release
Expand Down Expand Up @@ -193,4 +193,4 @@ jobs:
- release
# Set to true to enable Docusaurus publishing to GitHub Pages
if: true
uses: wearefrank/ci-cd-templates/.github/workflows/docusaurus-release.yml@e8affe3c6b9d1a725b3332042f82096286974d15 #1.0.2
uses: wearefrank/ci-cd-templates/.github/workflows/docusaurus-release.yml@df1db1b1a73abf2e733f3a5e77b87db7693980c0 #1.0.8
2 changes: 1 addition & 1 deletion .github/workflows/update-helm-chart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Dispatch an action and get the run ID
uses: Codex-/return-dispatch@v1.14.0
uses: Codex-/return-dispatch@v1.15.0
id: return_dispatch
with:
token: ${{ secrets.token }}
Expand Down
56 changes: 56 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,61 @@
[![conventional commits](https://img.shields.io/badge/conventional%20commits-1.0.0-yellow.svg)](https://conventionalcommits.org) [![semantic versioning](https://img.shields.io/badge/semantic%20versioning-2.0.0-green.svg)](https://semver.org)

## [1.21.2](https://github.com/wearefrank/zaakbrug/compare/v1.21.1...v1.21.2) (2024-09-04)

### 🧑‍💻 Code Refactoring

* skip empty query parameters in GetRolByZaakUrlAndRolTypeUrl adapter ([c3343e1](https://github.com/wearefrank/zaakbrug/commit/c3343e12eb52bf059b25a459c6f78e7e2d64de5a))

## [1.21.1](https://github.com/wearefrank/zaakbrug/compare/v1.21.0...v1.21.1) (2024-09-03)

### 🐛 Bug Fixes

* updateZaak when deleting an existing gerelateerde and add new one back on the same role performs add action before delete action resulting in an error when only 1 of that roltype is allowed ([34ff319](https://github.com/wearefrank/zaakbrug/commit/34ff319fd990a824b885bcd473ff4fe8160537a6))

### ✅ Tests

* change delete&add roles testcase to use initiator instead so that order of operation is checked aswell ([ac0cade](https://github.com/wearefrank/zaakbrug/commit/ac0cadea0d99fcf3ab8d0c2d5fc5a1a66d5bf297))

## [1.21.0](https://github.com/wearefrank/zaakbrug/compare/v1.20.2...v1.21.0) (2024-08-30)

### 🍕 Features

* valueOverrides in the translation profiles can now also be applied to case roles ([17e9371](https://github.com/wearefrank/zaakbrug/commit/17e937132c1eafd3b942df7887ada0b197d083ef))

### 🐛 Bug Fixes

* case rol geboortedatum throws error when absent or empty in input message ([d11a769](https://github.com/wearefrank/zaakbrug/commit/d11a7697a22a01502183f3984db2b0a155147889))
* map annIdentificatie field from zds to zgw ([38378da](https://github.com/wearefrank/zaakbrug/commit/38378da451065f086911041ac54db7f30e2d6722))

### 🧑‍💻 Code Refactoring

* add omschrijving and omschrijvingGeneriek to case role zds to zgw translation to match the zaken api and to retain roltype information ([57b7625](https://github.com/wearefrank/zaakbrug/commit/57b7625d98d74872ea9af508baf6d528121ad30f))
* case role betrokkkeneInformatie translation removes empty elements only where appropriate now instead of skipping all empty element always ([0811ce7](https://github.com/wearefrank/zaakbrug/commit/0811ce702dc780f60d96a9ebc7666995999a018f))
* move zgw api envelope unwrap to the adapter responsible for making the api call ([8113511](https://github.com/wearefrank/zaakbrug/commit/81135115daa3609fb5f96d8953c0c84e35b47259))
* rewrite of xslt responsible for merging the 2 object updateZaak variant to the 1 object variant ([667abae](https://github.com/wearefrank/zaakbrug/commit/667abae49d1b5ecda6159129face40b3c9e6594d))
* xsd for correctly converting a case from xml to json changed to contain only the element which it, so that the ordering of elements is no longer neccesary ([babe98b](https://github.com/wearefrank/zaakbrug/commit/babe98bd79bbad3350dcd6d58707b7d1bae98cc0))
* xsd's for correctly converting xml to json changed to contain element which require it, so that the ordering of elements in no longer necessary ([522acf3](https://github.com/wearefrank/zaakbrug/commit/522acf348da434665158a7096e7a0478fa3aed03))

### ✅ Tests

* e2e testcases for valueOverrides system ([a8206cf](https://github.com/wearefrank/zaakbrug/commit/a8206cf02ab5c8aa9689e53181a145cdf7588357))
* larva testcases for validating valueOverrides related adapters and xslt's ([9f3f960](https://github.com/wearefrank/zaakbrug/commit/9f3f9600e75b82eb0f8e3b2ba488dcb72db94a3a))

### 🤖 Build System

* **dependencies:** bump the docusaurus group across 1 directory with 6 updates ([#433](https://github.com/wearefrank/zaakbrug/issues/433)) ([9662a51](https://github.com/wearefrank/zaakbrug/commit/9662a51be17fd219ed50e2d6852c689d7a450fd9))
* **dependencies:** bump the github-actions group across 1 directory with 4 updates ([#435](https://github.com/wearefrank/zaakbrug/issues/435)) ([b044ba2](https://github.com/wearefrank/zaakbrug/commit/b044ba2cc832c05a867054387856bcbe3ea540eb))

## [1.20.2](https://github.com/wearefrank/zaakbrug/compare/v1.20.1...v1.20.2) (2024-07-26)

### 🤖 Build System

* **dependencies:** bump the github-actions group with 2 updates ([#426](https://github.com/wearefrank/zaakbrug/issues/426)) ([5e2df91](https://github.com/wearefrank/zaakbrug/commit/5e2df91ebf68b259f3d7f03ce993d7c3aafb66f3))

### 🔁 Continuous Integration

* use waf bot pat token for bump-ff-version workflow due to permission issue with ci checks in the created pr ([1794919](https://github.com/wearefrank/zaakbrug/commit/17949192cc76e2613161e4267e02779428be3fd0))

## [1.20.1](https://github.com/wearefrank/zaakbrug/compare/v1.20.0...v1.20.1) (2024-07-19)

### 🔁 Continuous Integration
Expand Down
Loading

0 comments on commit 6d94ee4

Please sign in to comment.