chore: release main
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Thu, 4 Jul 2024 23:47:52 +0000 (01:47 +0200)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Thu, 4 Jul 2024 23:47:52 +0000 (01:47 +0200)
.github/release-please/manifest.json
CHANGELOG.md
package.json
sonar-project.properties
tests/ocpp-server/CHANGELOG.md [new file with mode: 0644]
tests/ocpp-server/pyproject.toml
ui/web/CHANGELOG.md [new file with mode: 0644]
ui/web/package.json
ui/web/sonar-project.properties

index 31b375a045e841187c4f90b8cc987d7cf8f5b40c..430475d1e422da2a03595bd0e7c6d5c47c0bbf76 100644 (file)
@@ -1,5 +1,5 @@
 {
-  ".": "1.3.7",
-  "ui/web": "1.3.7",
-  "tests/ocpp-server": "1.3.7"
+  ".": "1.4.0",
+  "ui/web": "1.4.0",
+  "tests/ocpp-server": "1.4.0"
 }
index 8f641ecd58834eae394ff2af0d8176e536e00527..702ff54ca8d860220f9cdd264201e46d9308f7f0 100644 (file)
@@ -1,5 +1,42 @@
 # Changelog
 
+## [1.4.0](https://github.com/SAP/e-mobility-charging-stations-simulator/compare/simulator-v1.3.7...simulator@v1.4.0) (2024-07-04)
+
+
+### 🚀 Features
+
+* switch to release-please release manager ([2c02376](https://github.com/SAP/e-mobility-charging-stations-simulator/commit/2c02376b6b17a6094c451b976275ed9eb2e1407b))
+
+
+### 🐞 Fixes
+
+* **ci:** fix release-please GH action run ([2a91b70](https://github.com/SAP/e-mobility-charging-stations-simulator/commit/2a91b70f1cf33c64ee6f2f3be63bb9b5614cd319))
+* **ci:** silence release-please GH action warnings ([4dc1046](https://github.com/SAP/e-mobility-charging-stations-simulator/commit/4dc10464e640d30a12ece043edcd72390cd1fb43))
+* ensure checks are run on release PR ([ce4b669](https://github.com/SAP/e-mobility-charging-stations-simulator/commit/ce4b6698ed11fbee77caf6f448fef2db36240bcc))
+
+
+### 📚 Documentation
+
+* add branching model to README.md ([d295031](https://github.com/SAP/e-mobility-charging-stations-simulator/commit/d295031fa6c94271ec551f32bba55f9cd99c998e))
+* add PR template ([8d9bfb0](https://github.com/SAP/e-mobility-charging-stations-simulator/commit/8d9bfb088bc280dac892ca71f40bb085842eb7e7))
+
+
+### ✨ Polish
+
+* **test:** code cleanups ([b53037c](https://github.com/SAP/e-mobility-charging-stations-simulator/commit/b53037c097bf8412831281229234e814aaae82a9))
+* **test:** typing cleanups ([65a1581](https://github.com/SAP/e-mobility-charging-stations-simulator/commit/65a1581afd90a44096f1c0157abf4d5531d76fa5))
+
+
+### 🤖 Automation
+
+* bump volta node version ([abc5de8](https://github.com/SAP/e-mobility-charging-stations-simulator/commit/abc5de857ea9e4a27f83d1c2fe60b4618775a540))
+* **ci:** fix component handling in release-please ([60414a7](https://github.com/SAP/e-mobility-charging-stations-simulator/commit/60414a7e313e6ce7b3a9effd8a8cccb41555a04c))
+* **ci:** limit initial release PR to previous version commit ([e49bac4](https://github.com/SAP/e-mobility-charging-stations-simulator/commit/e49bac45f5d513b19991fde86e7c234eb46ab85d))
+* **ci:** remove release-please workspace plugin ([94097a8](https://github.com/SAP/e-mobility-charging-stations-simulator/commit/94097a8d456f51654a9b201e41309d9628638a81))
+* **deps-dev:** apply updates ([e92bd99](https://github.com/SAP/e-mobility-charging-stations-simulator/commit/e92bd991d1f0c43442dd20d7b5e34fd30f9bb136))
+* **deps-dev:** apply updates ([a33e3b4](https://github.com/SAP/e-mobility-charging-stations-simulator/commit/a33e3b4129757990b84af075cf9b678506937afb))
+* **deps:** bump ws from 8.17.1 to 8.18.0 ([4119c6e](https://github.com/SAP/e-mobility-charging-stations-simulator/commit/4119c6edbafb3fe813587770a2fb5a91c85a8340))
+
 ## [v1.3.7](https://github.com/sap/e-mobility-charging-stations-simulator/compare/v1.3.6...v1.3.7)
 
 - fix: fix OCPP2 mock server command sending [`#1061`](https://github.com/sap/e-mobility-charging-stations-simulator/pull/1061)
index 2bfd772e1069abadf9e30f9dda494099289a0947..72fc91fcf460ce1f2a6ed3d1362011de4386234a 100644 (file)
@@ -1,7 +1,7 @@
 {
   "$schema": "https://json.schemastore.org/package",
   "name": "e-mobility-charging-stations-simulator",
-  "version": "1.3.7",
+  "version": "1.4.0",
   "engines": {
     "node": ">=18.18.0",
     "pnpm": ">=9.0.0"
index e2c23a0fcfe04619287882f6bffc9b098869c6ff..962793132b1b00575c7047c70a5114bfb24c93b4 100644 (file)
@@ -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=1.3.7
+sonar.projectVersion=1.4.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
new file mode 100644 (file)
index 0000000..f0b5a6f
--- /dev/null
@@ -0,0 +1,8 @@
+# Changelog
+
+## [1.4.0](https://github.com/SAP/e-mobility-charging-stations-simulator/compare/ocpp-server-v1.3.7...ocpp-server@v1.4.0) (2024-07-04)
+
+
+### 🐞 Fixes
+
+* **ocpp-server:** randomize GetBaseReport request id ([8fe113d](https://github.com/SAP/e-mobility-charging-stations-simulator/commit/8fe113d7ae764df93daaa7a69c6fe810b6703587))
index b0753b7e7a9eed50d6470517696b23ad74d5b503..96bb5f9373bcfeb79f65c02cdd823c9cbf6268ab 100644 (file)
@@ -1,6 +1,6 @@
 [tool.poetry]
 name = "ocpp-server"
-version = "1.3.7"
+version = "1.4.0"
 description = "OCPP2 mock server"
 authors = ["Jérôme Benoit <jerome.benoit@sap.com>"]
 readme = "README.md"
diff --git a/ui/web/CHANGELOG.md b/ui/web/CHANGELOG.md
new file mode 100644 (file)
index 0000000..2bde5b2
--- /dev/null
@@ -0,0 +1,10 @@
+# Changelog
+
+## [1.4.0](https://github.com/SAP/e-mobility-charging-stations-simulator/compare/ui-v1.3.7...ui@v1.4.0) (2024-07-04)
+
+
+### 🤖 Automation
+
+* bump volta node version ([abc5de8](https://github.com/SAP/e-mobility-charging-stations-simulator/commit/abc5de857ea9e4a27f83d1c2fe60b4618775a540))
+* **deps-dev:** apply updates ([e92bd99](https://github.com/SAP/e-mobility-charging-stations-simulator/commit/e92bd991d1f0c43442dd20d7b5e34fd30f9bb136))
+* **deps-dev:** apply updates ([a33e3b4](https://github.com/SAP/e-mobility-charging-stations-simulator/commit/a33e3b4129757990b84af075cf9b678506937afb))
index 007fa107d35eb256c08d2f182534392f288995ae..50627880d1567d6b2eb811a9ff26eda4a937b9f4 100644 (file)
@@ -1,7 +1,7 @@
 {
   "$schema": "https://json.schemastore.org/package",
   "name": "webui",
-  "version": "1.3.7",
+  "version": "1.4.0",
   "readme": "README.md",
   "engines": {
     "node": ">=18.0.0",
index 0dce01e66ccd7138764add9b196766bf5d7b0944..61c6bc6ce475235de5b002f9f397264078159b9d 100644 (file)
@@ -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=0.3.0
+sonar.projectVersion=1.4.0
 # x-release-please-end
 
 # Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.