diff --git a/CHANGELOG.md b/CHANGELOG.md index a73b0b8c1..f2a1f915a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## [6.5.0](https://github.com/cloud-pi-native/console/compare/v6.4.0...v6.5.0) (2024-01-25) + + +### Features + +* :children_crossing: better ux for forms in tiles ([da68243](https://github.com/cloud-pi-native/console/commit/da68243a91865732db46b9ae610a82eeec5c9bf2)) +* :loud_sound: add payload and full hook response in validation hooks ([adabb02](https://github.com/cloud-pi-native/console/commit/adabb02fd0b8028b1fcdf1113744234a925d72ce)) +* :loud_sound: add reqId in db logs ([2b7f22b](https://github.com/cloud-pi-native/console/commit/2b7f22b7e24748dc37c8623bbda3e914ed7cae00)) +* :sparkles: add project environments to hook payload ([7aa8117](https://github.com/cloud-pi-native/console/commit/7aa81179ac95afdddf711e1a0a4b3c3a45a35c5a)) +* :sparkles: disallow hyphen on project, environment and stage ([f9b05ee](https://github.com/cloud-pi-native/console/commit/f9b05eefee41f7d514d749a0ac3fa1c1d063f051)) +* :sparkles: download projects data button for admins ([cb38e75](https://github.com/cloud-pi-native/console/commit/cb38e7573314ba0980c4161d1a77a9e83fddb236)) +* :sparkles: to fn, more infos, multi tiles ([8c4de83](https://github.com/cloud-pi-native/console/commit/8c4de83cf3b4bc0e335292d437ddf7d22305ff93)) + + +### Bug Fixes + +* :goal_net: validate schema before creating repo or env ([23535c3](https://github.com/cloud-pi-native/console/commit/23535c3e0c9923df0cc8adb5fb646dc2dd21fb7c)) +* :pushpin: pin axios version to avoid vite error ([88c6d30](https://github.com/cloud-pi-native/console/commit/88c6d30b5ab14cd9ca899fdf7cfcd17faa067903)) + ## [6.4.0](https://github.com/cloud-pi-native/console/compare/v6.3.1...v6.4.0) (2023-12-20) diff --git a/apps/client/package.json b/apps/client/package.json index 09c0f7b61..c73808d21 100644 --- a/apps/client/package.json +++ b/apps/client/package.json @@ -1,6 +1,6 @@ { "name": "@dso-console/client", - "version": "6.4.0", + "version": "6.5.0", "description": "dso-portal client", "type": "module", "private": false, @@ -80,4 +80,4 @@ "@cypress/vue": "^6.0.0", "cypress": "^13.6.2" } -} \ No newline at end of file +} diff --git a/apps/server/package.json b/apps/server/package.json index cc0956090..5a6c2a801 100644 --- a/apps/server/package.json +++ b/apps/server/package.json @@ -76,5 +76,5 @@ }, "type": "module", "types": "./types/plugins/index.d.ts", - "version": "6.4.0" -} \ No newline at end of file + "version": "6.5.0" +} diff --git a/helm/Chart.yaml b/helm/Chart.yaml index f5279fa8f..c1f6ac71d 100644 --- a/helm/Chart.yaml +++ b/helm/Chart.yaml @@ -15,10 +15,10 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 6.4.0 # x-release-please-version +version: 6.5.0 # x-release-please-version # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "6.4.0" # x-release-please-version +appVersion: "6.5.0" # x-release-please-version diff --git a/helm/values.yaml b/helm/values.yaml index 6020a5092..fa2a0af3a 100644 --- a/helm/values.yaml +++ b/helm/values.yaml @@ -36,7 +36,7 @@ server: container: #hashmap of custom env env: - image: ghcr.io/cloud-pi-native/console/server:6.4.0 # x-release-please-version + image: ghcr.io/cloud-pi-native/console/server:6.5.0 # x-release-please-version port: 8080 imagePullPolicy: Always dataConfigmap: @@ -73,7 +73,7 @@ server: client: container: - image: ghcr.io/cloud-pi-native/console/client:6.4.0 # x-release-please-version + image: ghcr.io/cloud-pi-native/console/client:6.5.0 # x-release-please-version port: 8080 imagePullPolicy: Always env: #hashmap of custom env diff --git a/package.json b/package.json index 7c1e8c75c..e6bbab427 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "dso-console", - "version": "6.4.0", + "version": "6.5.0", "private": false, "type": "module", "scripts": { diff --git a/packages/shared/package.json b/packages/shared/package.json index df8b56a64..ef1ad2df7 100644 --- a/packages/shared/package.json +++ b/packages/shared/package.json @@ -45,5 +45,5 @@ }, "type": "module", "types": "types/index.d.ts", - "version": "6.4.0" -} \ No newline at end of file + "version": "6.5.0" +}