From: Jérôme Benoit Date: Tue, 16 Jun 2026 17:45:59 +0000 (+0200) Subject: chore: release main (#1885) X-Git-Tag: cli@v4.9.0 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=0cfaa40fef2c8141c9759ae1b3c9568d856d388f;p=e-mobility-charging-stations-simulator.git chore: release main (#1885) * chore: release main * [autofix.ci] apply automated fixes --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> --- diff --git a/.github/release-please/manifest.json b/.github/release-please/manifest.json index 5575b1e4..7745cf2d 100644 --- a/.github/release-please/manifest.json +++ b/.github/release-please/manifest.json @@ -1,7 +1,7 @@ { - ".": "4.8.0", - "ui/common": "4.8.0", - "ui/cli": "4.8.0", - "ui/web": "4.8.0", - "tests/ocpp-server": "4.8.0" + ".": "4.9.0", + "ui/common": "4.9.0", + "ui/cli": "4.9.0", + "ui/web": "4.9.0", + "tests/ocpp-server": "4.9.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 4004bc1f..5baeb621 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,29 @@ # Changelog +## [4.9.0](https://github.com/SAP/e-mobility-charging-stations-simulator/compare/simulator@v4.8.0...simulator@v4.9.0) (2026-06-16) + +### 🚀 Features + +- **ui-server:** add source-aware gateway access policy ([#1891](https://github.com/SAP/e-mobility-charging-stations-simulator/issues/1891)) ([72bb3f0](https://github.com/SAP/e-mobility-charging-stations-simulator/commit/72bb3f08a9545d1d8eec1aeb9444f73b7ed1ae6c)) + +### 🐞 Bug Fixes + +- **bootstrap:** make start/stop idempotent and signal handler re-entrant safe ([#1905](https://github.com/SAP/e-mobility-charging-stations-simulator/issues/1905)) ([85c1fb0](https://github.com/SAP/e-mobility-charging-stations-simulator/commit/85c1fb034ee9659418cccbe4dc47679ae0edbd74)) +- **config:** enforce Zod simulator-config validation at boot ([#1874](https://github.com/SAP/e-mobility-charging-stations-simulator/issues/1874)) ([#1903](https://github.com/SAP/e-mobility-charging-stations-simulator/issues/1903)) ([2251594](https://github.com/SAP/e-mobility-charging-stations-simulator/commit/225159487916788c59a9276f474826ccdcb372e1)) +- **config:** tighten Zod validation on uiServer.options.port ([#1874](https://github.com/SAP/e-mobility-charging-stations-simulator/issues/1874)) ([#1901](https://github.com/SAP/e-mobility-charging-stations-simulator/issues/1901)) ([19afcb2](https://github.com/SAP/e-mobility-charging-stations-simulator/commit/19afcb2852ccff5e18d11b8522d77f7c5ff80976)) +- **deps:** update all non-major dependencies ([#1883](https://github.com/SAP/e-mobility-charging-stations-simulator/issues/1883)) ([ad0af48](https://github.com/SAP/e-mobility-charging-stations-simulator/commit/ad0af48961e446298a2442391f4551dc83121bc6)) +- **deps:** update all non-major dependencies ([#1892](https://github.com/SAP/e-mobility-charging-stations-simulator/issues/1892)) ([9bdd22f](https://github.com/SAP/e-mobility-charging-stations-simulator/commit/9bdd22feb5a657f32c94f9f91a18ecbab487a563)) +- **deps:** update all non-major dependencies ([#1896](https://github.com/SAP/e-mobility-charging-stations-simulator/issues/1896)) ([ef750a0](https://github.com/SAP/e-mobility-charging-stations-simulator/commit/ef750a0caa9b16abdd686f83e0f620abc115c7ca)) +- **ui-server:** post-[#1891](https://github.com/SAP/e-mobility-charging-stations-simulator/issues/1891) access policy and WS upgrade hardening ([#1898](https://github.com/SAP/e-mobility-charging-stations-simulator/issues/1898)) ([bf4bc1b](https://github.com/SAP/e-mobility-charging-stations-simulator/commit/bf4bc1b519edc264e29d56100778f32cf3240fc7)) + +### ✨ Polish + +- **simulator:** harmonize OCPP sent-message log prefix ([2608d62](https://github.com/SAP/e-mobility-charging-stations-simulator/commit/2608d623fe685f47323f85b7c9a6dea975307c80)) + +### 🤖 Automation + +- **deps-dev:** bump esbuild ([#1894](https://github.com/SAP/e-mobility-charging-stations-simulator/issues/1894)) ([0df4e34](https://github.com/SAP/e-mobility-charging-stations-simulator/commit/0df4e3445098ce51d7148d4ee375fb4de2c920bb)) + ## [4.8.0](https://github.com/SAP/e-mobility-charging-stations-simulator/compare/simulator@v4.7.3...simulator@v4.8.0) (2026-06-02) ### ⚠ BREAKING CHANGES diff --git a/package.json b/package.json index c761e14a..07cc8dad 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "$schema": "https://json.schemastore.org/package", "name": "e-mobility-charging-stations-simulator", - "version": "4.8.0", + "version": "4.9.0", "engines": { "node": ">=22.0.0", "pnpm": ">=10.9.0" diff --git a/sonar-project.properties b/sonar-project.properties index 9ddaf7c4..c363d879 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -4,7 +4,7 @@ sonar.organization=sap-1 # This is the name and version displayed in the SonarCloud UI. sonar.projectName=e-mobility-charging-stations-simulator # x-release-please-start-version -sonar.projectVersion=4.8.0 +sonar.projectVersion=4.9.0 # x-release-please-end # Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows. diff --git a/tests/ocpp-server/CHANGELOG.md b/tests/ocpp-server/CHANGELOG.md index 179ad343..413b6d7d 100644 --- a/tests/ocpp-server/CHANGELOG.md +++ b/tests/ocpp-server/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [4.9.0](https://github.com/SAP/e-mobility-charging-stations-simulator/compare/ocpp-server@v4.8.0...ocpp-server@v4.9.0) (2026-06-16) + +### 🐞 Bug Fixes + +- **deps:** update all non-major dependencies ([#1892](https://github.com/SAP/e-mobility-charging-stations-simulator/issues/1892)) ([9bdd22f](https://github.com/SAP/e-mobility-charging-stations-simulator/commit/9bdd22feb5a657f32c94f9f91a18ecbab487a563)) +- **deps:** update all non-major dependencies ([#1896](https://github.com/SAP/e-mobility-charging-stations-simulator/issues/1896)) ([ef750a0](https://github.com/SAP/e-mobility-charging-stations-simulator/commit/ef750a0caa9b16abdd686f83e0f620abc115c7ca)) + ## [4.8.0](https://github.com/SAP/e-mobility-charging-stations-simulator/compare/ocpp-server@v4.7.3...ocpp-server@v4.8.0) (2026-06-02) ### 🧹 Chores diff --git a/tests/ocpp-server/pyproject.toml b/tests/ocpp-server/pyproject.toml index c8e238aa..9a48cbce 100644 --- a/tests/ocpp-server/pyproject.toml +++ b/tests/ocpp-server/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "ocpp-server" -version = "4.8.0" +version = "4.9.0" description = "OCPP2 mock server" authors = [{ name = "Jérôme Benoit", email = "jerome.benoit@sap.com" }] readme = "README.md" diff --git a/ui/cli/CHANGELOG.md b/ui/cli/CHANGELOG.md index 844b20ed..3ab61730 100644 --- a/ui/cli/CHANGELOG.md +++ b/ui/cli/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [4.9.0](https://github.com/SAP/e-mobility-charging-stations-simulator/compare/cli@v4.8.0...cli@v4.9.0) (2026-06-16) + +### 🐞 Bug Fixes + +- **deps:** update all non-major dependencies ([#1892](https://github.com/SAP/e-mobility-charging-stations-simulator/issues/1892)) ([9bdd22f](https://github.com/SAP/e-mobility-charging-stations-simulator/commit/9bdd22feb5a657f32c94f9f91a18ecbab487a563)) + +### 🤖 Automation + +- **deps-dev:** bump esbuild ([#1894](https://github.com/SAP/e-mobility-charging-stations-simulator/issues/1894)) ([0df4e34](https://github.com/SAP/e-mobility-charging-stations-simulator/commit/0df4e3445098ce51d7148d4ee375fb4de2c920bb)) + ## [4.8.0](https://github.com/SAP/e-mobility-charging-stations-simulator/compare/cli@v4.7.3...cli@v4.8.0) (2026-06-02) ### 🐞 Bug Fixes diff --git a/ui/cli/package.json b/ui/cli/package.json index 5e205262..64c3b15c 100644 --- a/ui/cli/package.json +++ b/ui/cli/package.json @@ -1,7 +1,7 @@ { "$schema": "https://json.schemastore.org/package", "name": "cli", - "version": "4.8.0", + "version": "4.9.0", "engines": { "node": ">=22.0.0", "pnpm": ">=10.9.0" diff --git a/ui/cli/sonar-project.properties b/ui/cli/sonar-project.properties index f17da43f..a5c43b1a 100644 --- a/ui/cli/sonar-project.properties +++ b/ui/cli/sonar-project.properties @@ -4,7 +4,7 @@ sonar.organization=sap-1 # This is the name and version displayed in the SonarCloud UI. sonar.projectName=e-mobility-charging-stations-simulator-cli # x-release-please-start-version -sonar.projectVersion=4.8.0 +sonar.projectVersion=4.9.0 # x-release-please-end # Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows. diff --git a/ui/common/CHANGELOG.md b/ui/common/CHANGELOG.md index 67c122d1..add5115e 100644 --- a/ui/common/CHANGELOG.md +++ b/ui/common/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [4.9.0](https://github.com/SAP/e-mobility-charging-stations-simulator/compare/ui-common@v4.8.0...ui-common@v4.9.0) (2026-06-16) + +### 🐞 Bug Fixes + +- **config:** enforce Zod simulator-config validation at boot ([#1874](https://github.com/SAP/e-mobility-charging-stations-simulator/issues/1874)) ([#1903](https://github.com/SAP/e-mobility-charging-stations-simulator/issues/1903)) ([2251594](https://github.com/SAP/e-mobility-charging-stations-simulator/commit/225159487916788c59a9276f474826ccdcb372e1)) +- **deps:** update all non-major dependencies ([#1892](https://github.com/SAP/e-mobility-charging-stations-simulator/issues/1892)) ([9bdd22f](https://github.com/SAP/e-mobility-charging-stations-simulator/commit/9bdd22feb5a657f32c94f9f91a18ecbab487a563)) + +### 🧪 Tests + +- **ui-common:** cover buildStatusNotificationPayload 1.6/2.0.x branches ([#1834](https://github.com/SAP/e-mobility-charging-stations-simulator/issues/1834)) ([#1902](https://github.com/SAP/e-mobility-charging-stations-simulator/issues/1902)) ([8fc0b49](https://github.com/SAP/e-mobility-charging-stations-simulator/commit/8fc0b49a0e46c7fd21a4db9cd347326d36547787)) +- **ui-common:** cover buildStatusNotificationPayload 1.6/2.0.x branches ([#1834](https://github.com/SAP/e-mobility-charging-stations-simulator/issues/1834)) ([#1904](https://github.com/SAP/e-mobility-charging-stations-simulator/issues/1904)) ([f9e8ddf](https://github.com/SAP/e-mobility-charging-stations-simulator/commit/f9e8ddfabec327b1ef2d0b76652fed9b1f334408)) + ## [4.8.0](https://github.com/SAP/e-mobility-charging-stations-simulator/compare/ui-common@v4.7.3...ui-common@v4.8.0) (2026-06-02) ### 🐞 Bug Fixes diff --git a/ui/common/package.json b/ui/common/package.json index 08afe66f..92ffe490 100644 --- a/ui/common/package.json +++ b/ui/common/package.json @@ -1,7 +1,7 @@ { "$schema": "https://json.schemastore.org/package", "name": "ui-common", - "version": "4.8.0", + "version": "4.9.0", "engines": { "node": ">=22.0.0", "pnpm": ">=10.9.0" diff --git a/ui/common/sonar-project.properties b/ui/common/sonar-project.properties index a99bcfce..7b724794 100644 --- a/ui/common/sonar-project.properties +++ b/ui/common/sonar-project.properties @@ -4,7 +4,7 @@ sonar.organization=sap-1 # This is the name and version displayed in the SonarCloud UI. sonar.projectName=e-mobility-charging-stations-simulator-ui-common # x-release-please-start-version -sonar.projectVersion=4.8.0 +sonar.projectVersion=4.9.0 # x-release-please-end # Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows. diff --git a/ui/web/CHANGELOG.md b/ui/web/CHANGELOG.md index d1362289..d2e619d7 100644 --- a/ui/web/CHANGELOG.md +++ b/ui/web/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## [4.9.0](https://github.com/SAP/e-mobility-charging-stations-simulator/compare/web@v4.8.0...web@v4.9.0) (2026-06-16) + +### 🐞 Bug Fixes + +- **deps:** update all non-major dependencies ([#1883](https://github.com/SAP/e-mobility-charging-stations-simulator/issues/1883)) ([ad0af48](https://github.com/SAP/e-mobility-charging-stations-simulator/commit/ad0af48961e446298a2442391f4551dc83121bc6)) +- **deps:** update all non-major dependencies ([#1892](https://github.com/SAP/e-mobility-charging-stations-simulator/issues/1892)) ([9bdd22f](https://github.com/SAP/e-mobility-charging-stations-simulator/commit/9bdd22feb5a657f32c94f9f91a18ecbab487a563)) +- **deps:** update all non-major dependencies ([#1896](https://github.com/SAP/e-mobility-charging-stations-simulator/issues/1896)) ([ef750a0](https://github.com/SAP/e-mobility-charging-stations-simulator/commit/ef750a0caa9b16abdd686f83e0f620abc115c7ca)) +- **ui-web:** skip dev-only diagnostics under Vitest ([#1897](https://github.com/SAP/e-mobility-charging-stations-simulator/issues/1897)) ([18c3847](https://github.com/SAP/e-mobility-charging-stations-simulator/commit/18c3847df54a099e645e24561a5b55c295dba4ca)) + +### 🧪 Tests + +- remove uneeded comment ([6e02e21](https://github.com/SAP/e-mobility-charging-stations-simulator/commit/6e02e217df36125fd5e9731d75ad6499b2fbcec0)) +- **ui-web:** drain dynamic imports globally for async components ([#1893](https://github.com/SAP/e-mobility-charging-stations-simulator/issues/1893)) ([0eb8954](https://github.com/SAP/e-mobility-charging-stations-simulator/commit/0eb89546c237200c00b3a607fba348d894b0b356)) +- **ui-web:** mock useTheme/useSkin in SimulatorBar.test.ts to fix vitest 4.x teardown RPC leak ([#1884](https://github.com/SAP/e-mobility-charging-stations-simulator/issues/1884)) ([5790cab](https://github.com/SAP/e-mobility-charging-stations-simulator/commit/5790cab94b1b64c3f4e453860ce86436e69fff2f)) + ## [4.8.0](https://github.com/SAP/e-mobility-charging-stations-simulator/compare/web@v4.7.3...web@v4.8.0) (2026-06-02) ### 🐞 Bug Fixes diff --git a/ui/web/package.json b/ui/web/package.json index bfc6d0ff..f5705d9a 100644 --- a/ui/web/package.json +++ b/ui/web/package.json @@ -1,7 +1,7 @@ { "$schema": "https://json.schemastore.org/package", "name": "web", - "version": "4.8.0", + "version": "4.9.0", "readme": "README.md", "engines": { "node": ">=22.0.0", diff --git a/ui/web/sonar-project.properties b/ui/web/sonar-project.properties index d3830ff9..b24910b3 100644 --- a/ui/web/sonar-project.properties +++ b/ui/web/sonar-project.properties @@ -4,7 +4,7 @@ sonar.organization=sap-1 # This is the name and version displayed in the SonarCloud UI. sonar.projectName=e-mobility-charging-stations-simulator-web # x-release-please-start-version -sonar.projectVersion=4.8.0 +sonar.projectVersion=4.9.0 # x-release-please-end # Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.