From 771dda3bf4df56f43d78bb8b3805737008de63ef Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Tue, 24 Mar 2026 02:09:52 +0100 Subject: [PATCH] chore: release main (#1748) * chore: release main * [autofix.ci] apply automated fixes --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> --- .github/release-please/manifest.json | 6 +++--- CHANGELOG.md | 17 +++++++++++++++++ package.json | 2 +- sonar-project.properties | 2 +- tests/ocpp-server/CHANGELOG.md | 6 ++++++ tests/ocpp-server/pyproject.toml | 2 +- ui/web/CHANGELOG.md | 6 ++++++ ui/web/package.json | 2 +- ui/web/sonar-project.properties | 2 +- 9 files changed, 37 insertions(+), 8 deletions(-) diff --git a/.github/release-please/manifest.json b/.github/release-please/manifest.json index c3fde7df..0d286b50 100644 --- a/.github/release-please/manifest.json +++ b/.github/release-please/manifest.json @@ -1,5 +1,5 @@ { - ".": "3.2.1", - "ui/web": "3.2.1", - "tests/ocpp-server": "3.2.1" + ".": "3.3.0", + "ui/web": "3.3.0", + "tests/ocpp-server": "3.3.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 48d3227f..3a09ca25 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## [3.3.0](https://github.com/SAP/e-mobility-charging-stations-simulator/compare/simulator@v3.2.1...simulator@v3.3.0) (2026-03-24) + +### 🚀 Features + +- **ui-server:** add MCP transport and deprecate HTTP ([#1746](https://github.com/SAP/e-mobility-charging-stations-simulator/issues/1746)) ([8fd32d2](https://github.com/SAP/e-mobility-charging-stations-simulator/commit/8fd32d22c9e6f4fe3c63878b488f1eef67aab19d)) + +### 🐞 Bug Fixes + +- **deps:** update all non-major dependencies ([#1749](https://github.com/SAP/e-mobility-charging-stations-simulator/issues/1749)) ([9d005b5](https://github.com/SAP/e-mobility-charging-stations-simulator/commit/9d005b59e45788c7285f7654426fbab0386c0b1e)) + +### ✨ Polish + +- **broadcast-channel:** extract passthrough() factory, remove 20 identical handlers ([accb056](https://github.com/SAP/e-mobility-charging-stations-simulator/commit/accb056172b75c281dc5bc6376f9e29762e98c50)) +- **broadcast-channel:** extract response status registries from switch/case ([6eb69c8](https://github.com/SAP/e-mobility-charging-stations-simulator/commit/6eb69c8939189af3f6d8df55eb9935afc514262f)) +- **mcp:** split MCP definitions by spec concern — Resources, Tools, ToolSchemas ([9d738e3](https://github.com/SAP/e-mobility-charging-stations-simulator/commit/9d738e3408daddd27d2182d7416dd22eb38c0cea)) +- **ocpp:** extract buildEmptyMeterValue helper for empty MeterValue construction ([e19ff6c](https://github.com/SAP/e-mobility-charging-stations-simulator/commit/e19ff6c4e109105f061f70525771015dc48fed5c)) + ## [3.2.1](https://github.com/SAP/e-mobility-charging-stations-simulator/compare/simulator@v3.2.0...simulator@v3.2.1) (2026-03-22) ### 🐞 Bug Fixes diff --git a/package.json b/package.json index db1218d3..3a0a2825 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "$schema": "https://json.schemastore.org/package", "name": "e-mobility-charging-stations-simulator", - "version": "3.2.1", + "version": "3.3.0", "engines": { "node": ">=22.0.0", "pnpm": ">=10.9.0" diff --git a/sonar-project.properties b/sonar-project.properties index 2aec58eb..528a545c 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=3.2.1 +sonar.projectVersion=3.3.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 99e2dcdc..51a1fb15 100644 --- a/tests/ocpp-server/CHANGELOG.md +++ b/tests/ocpp-server/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [3.3.0](https://github.com/SAP/e-mobility-charging-stations-simulator/compare/ocpp-server@v3.2.1...ocpp-server@v3.3.0) (2026-03-24) + +### 🧹 Chores + +- **ocpp-server:** Synchronize simulator-ui-ocpp-server versions + ## [3.2.1](https://github.com/SAP/e-mobility-charging-stations-simulator/compare/ocpp-server@v3.2.0...ocpp-server@v3.2.1) (2026-03-22) ### 🐞 Bug Fixes diff --git a/tests/ocpp-server/pyproject.toml b/tests/ocpp-server/pyproject.toml index 57b67537..10cbd042 100644 --- a/tests/ocpp-server/pyproject.toml +++ b/tests/ocpp-server/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "ocpp-server" -version = "3.2.1" +version = "3.3.0" description = "OCPP2 mock server" authors = [{ name = "Jérôme Benoit", email = "jerome.benoit@sap.com" }] readme = "README.md" diff --git a/ui/web/CHANGELOG.md b/ui/web/CHANGELOG.md index 1e44dde9..fba3e058 100644 --- a/ui/web/CHANGELOG.md +++ b/ui/web/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [3.3.0](https://github.com/SAP/e-mobility-charging-stations-simulator/compare/webui@v3.2.1...webui@v3.3.0) (2026-03-24) + +### 🐞 Bug Fixes + +- **deps:** update all non-major dependencies ([#1749](https://github.com/SAP/e-mobility-charging-stations-simulator/issues/1749)) ([9d005b5](https://github.com/SAP/e-mobility-charging-stations-simulator/commit/9d005b59e45788c7285f7654426fbab0386c0b1e)) + ## [3.2.1](https://github.com/SAP/e-mobility-charging-stations-simulator/compare/webui@v3.2.0...webui@v3.2.1) (2026-03-22) ### 🐞 Bug Fixes diff --git a/ui/web/package.json b/ui/web/package.json index a065f2ea..f86487eb 100644 --- a/ui/web/package.json +++ b/ui/web/package.json @@ -1,7 +1,7 @@ { "$schema": "https://json.schemastore.org/package", "name": "webui", - "version": "3.2.1", + "version": "3.3.0", "readme": "README.md", "engines": { "node": ">=22.0.0", diff --git a/ui/web/sonar-project.properties b/ui/web/sonar-project.properties index 519f77bd..415b2ed4 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-webui # x-release-please-start-version -sonar.projectVersion=3.2.1 +sonar.projectVersion=3.3.0 # x-release-please-end # Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows. -- 2.43.0