diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e78a3290..36ae5d1ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,27 @@ +## [0.31.0](https://github.com/bcgov/platform-services-registry/compare/v0.30.0...v0.31.0) (2024-06-24) + +### Features + +* **3034:** hide current resource info on non-editable form ([e85ef64](https://github.com/bcgov/platform-services-registry/commit/e85ef648eeda12c97d5aa6367189c6cb20e31864)) +* **3046:** add API test script for private cloud product download ([5578c03](https://github.com/bcgov/platform-services-registry/commit/5578c0389f70fec4bc3ad1dc071c6f19bbcf45b7)) +* **3046:** add API test script for private cloud product requests ([80e50d2](https://github.com/bcgov/platform-services-registry/commit/80e50d20a9147d7f4c1b3202910975bb0f97ea1a)) +* **3047:** add API test scripts for public cloud routes ([a77fc65](https://github.com/bcgov/platform-services-registry/commit/a77fc65240650f5832ce4acfb8d95acdcbad9ec8)) +* **3048:** add API test scripts for user service account endpoints ([be31521](https://github.com/bcgov/platform-services-registry/commit/be31521db0e7e582cde36ddc3f9fc050a291e85d)) +* **3094:** display request box in public product table list ([0005186](https://github.com/bcgov/platform-services-registry/commit/00051868d993976f9d6ffb12a3c50ccba5ac3024)) +* **provisioner:** add backend logic to backup provisioner callback (remove 'completed' attribute) ([dce3c8e](https://github.com/bcgov/platform-services-registry/commit/dce3c8ec4ed5660bb13810d3302dd82516309935)) + +### Bug Fixes + +* **2889:** update data diff common function ([c4c48e0](https://github.com/bcgov/platform-services-registry/commit/c4c48e0f5945a585d1c8f0ee03c77f9b8aad3cc6)) +* **2977:** update private cloud reject email to cover create request ([f8dc841](https://github.com/bcgov/platform-services-registry/commit/f8dc84195e240e8fd0b5961204cbbfb849589b8b)) +* **3093:** add word wrap and character limit to description tool tips ([6b37fc2](https://github.com/bcgov/platform-services-registry/commit/6b37fc26d3464583f125c487a163e656ce3bec97)) +* **3103:** give explicit view permission to ministry editor ([d5fe609](https://github.com/bcgov/platform-services-registry/commit/d5fe60946333454e3354e689c2d9a8f426a60971)) +* **3174:** fix newlines in edit text area and refetching of edited comments ([33e68cf](https://github.com/bcgov/platform-services-registry/commit/33e68cf06d56c750841494ba116d3566a8850f11)) +* show only requested environments budget ([32adb92](https://github.com/bcgov/platform-services-registry/commit/32adb92eea296a69911a2a39a27eb712c2c90d20)) + +### Refactors + +* update landing page content ([193b33d](https://github.com/bcgov/platform-services-registry/commit/193b33d7ef62f04f5c637090fbdaefcb004389f1)) ## [0.30.0](https://github.com/bcgov/platform-services-registry/compare/v0.29.1...v0.30.0) (2024-06-17) ### Features diff --git a/VERSION b/VERSION index c25c8e5b7..26bea73e8 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.30.0 +0.31.0 diff --git a/app/package-lock.json b/app/package-lock.json index 649345af6..f3fb865b7 100644 --- a/app/package-lock.json +++ b/app/package-lock.json @@ -6,7 +6,7 @@ "packages": { "": { "name": "pltsvc-app", - "version": "0.30.0", + "version": "0.31.0", "hasInstallScript": true, "dependencies": { "@azure/msal-node": "^2.3.0", diff --git a/app/package.json b/app/package.json index 3d1006dda..2cb884677 100644 --- a/app/package.json +++ b/app/package.json @@ -1,7 +1,7 @@ { "name": "pltsvc-app", "description": "B.C. Government's Platform Product Registry - App", - "version": "0.30.0", + "version": "0.31.0", "private": true, "scripts": { "dev": "next dev", diff --git a/package-lock.json b/package-lock.json index be9740eaa..283bbe1b7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "pltsvc", - "version": "0.30.0", + "version": "0.31.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "pltsvc", - "version": "0.30.0", + "version": "0.31.0", "devDependencies": { "@badeball/cypress-cucumber-preprocessor": "^20.0.2", "@bahmutov/cypress-esbuild-preprocessor": "^2.2.0", diff --git a/package.json b/package.json index d7f99a408..b335979ea 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "pltsvc", "description": "B.C. Government's Platform Product Registry", - "version": "0.30.0", + "version": "0.31.0", "private": true, "scripts": { "lint": "eslint --no-eslintrc --config .eslintrc.root.json .",