diff --git a/package-lock.json b/package-lock.json index 3f87b1001..4a5e136cf 100644 --- a/package-lock.json +++ b/package-lock.json @@ -19358,7 +19358,7 @@ }, "services/backend": { "name": "@deploystack/backend", - "version": "0.23.1", + "version": "0.24.0", "dependencies": { "@fastify/cookie": "^11.0.2", "@fastify/cors": "^11.0.1", diff --git a/services/backend/CHANGELOG.md b/services/backend/CHANGELOG.md index df6e73375..dd2d2256f 100644 --- a/services/backend/CHANGELOG.md +++ b/services/backend/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.24.0 (2025-07-14) + +* centralize role permissions management and synchronize with database ([197dd8b](https://github.com/deploystackio/deploystack/commit/197dd8ba4702527329a08516f4f6fade519739c2))* Refactor MCP server catalog forms and add Claude Desktop configuration step ([83579a4](https://github.com/deploystackio/deploystack/commit/83579a45359b08164b68a14a213c52937a3b2032))* remove edit view and replace with view functionality for MCP server catalog ([f5565c1](https://github.com/deploystackio/deploystack/commit/f5565c1f9d06186be0189eaa5dc01da2d6e9c1e7)) + ## 0.23.1 (2025-07-09) * bump @libsql/client from 0.14.0 to 0.15.9 ([d6b7275](https://github.com/deploystackio/deploystack/commit/d6b72759c48ae8fdda29f7e534599155db1e8321))* bump @typescript-eslint/eslint-plugin from 8.35.1 to 8.36.0 ([6597d61](https://github.com/deploystackio/deploystack/commit/6597d61628e942e8fc462f2c56b4f35fb59600fc))* bump @vue/eslint-config-typescript from 14.5.1 to 14.6.0 ([20af682](https://github.com/deploystackio/deploystack/commit/20af6823e790d8797fb5a67f9fba51a3913cf78b))* bump eslint-plugin-vue from 10.2.0 to 10.3.0 ([12aa557](https://github.com/deploystackio/deploystack/commit/12aa5575b631fcb844dab84e3d9179b0ad364107))* bump jest from 30.0.3 to 30.0.4 ([90f7cf1](https://github.com/deploystackio/deploystack/commit/90f7cf184e25850094ee38d09c66ece680bacda5))* bump nodemailer from 7.0.4 to 7.0.5 ([165406d](https://github.com/deploystackio/deploystack/commit/165406d97628561fb5a5435968e7c0f66f84756b))* bump supertest from 7.1.1 to 7.1.2 ([3043ed8](https://github.com/deploystackio/deploystack/commit/3043ed83ec2f5067c46cc2b321d0ca8db397f984))* bump typescript-eslint from 8.35.1 to 8.36.0 ([45d8ecd](https://github.com/deploystackio/deploystack/commit/45d8ecdd1265ca16037da38862d785d1e232accf))* bump vue-i18n from 11.1.7 to 11.1.9 ([6f80630](https://github.com/deploystackio/deploystack/commit/6f80630f392adde2de390c2e0d835f8c0aac8b54))* bump vue-tsc from 2.2.10 to 3.0.1 ([6eb773e](https://github.com/deploystackio/deploystack/commit/6eb773eedef989554108600e3c225d04e858ada3))* bump zod from 3.25.67 to 3.25.75 ([f69125a](https://github.com/deploystackio/deploystack/commit/f69125a11013c55b78e403e38dcad816eb82b5aa))* bump @libsql/client in /services/backend ([f92bbd9](https://github.com/deploystackio/deploystack/commit/f92bbd95770f1ba8d5c41bc9142e56eac302ac12))* release v0.23.0 ([c68890a](https://github.com/deploystackio/deploystack/commit/c68890abaf16cb6537d88851f177c6e6f44bc7a0))* Enhance MCP Server Catalog with GitHub integration and pagination ([49ac701](https://github.com/deploystackio/deploystack/commit/49ac7016581efe5e0ddcc6b7d58b8555302e59de))* Implement MCP Server Catalog Management UI ([9197fb6](https://github.com/deploystackio/deploystack/commit/9197fb64e02da7d22298c0ffac595d11e4301c6f))* Update API routes to use preValidation instead of preHandler for global admin checks ([2ad5139](https://github.com/deploystackio/deploystack/commit/2ad5139150af0188fdbd75df4d9b976ad874b63a))* ([06b1224](https://github.com/deploystackio/deploystack/commit/06b12245cccbc2c0eb0f6c367509fd507ef6e4ae)) diff --git a/services/backend/package.json b/services/backend/package.json index bafc8444a..84e920a26 100644 --- a/services/backend/package.json +++ b/services/backend/package.json @@ -1,6 +1,6 @@ { "name": "@deploystack/backend", - "version": "0.23.1", + "version": "0.24.0", "scripts": { "dev": "nodemon", "build": "tsc", diff --git a/services/backend/src/config/version.ts b/services/backend/src/config/version.ts index a2eab5297..ac2e689a1 100644 --- a/services/backend/src/config/version.ts +++ b/services/backend/src/config/version.ts @@ -9,8 +9,8 @@ export interface VersionInfo { // This will be replaced by the build script let versionData: VersionInfo = { - version: '0.23.0', - buildTime: '2025-07-09T18:00:55.176Z', + version: '0.24.0', + buildTime: '2025-07-14T20:28:04.774Z', source: 'release' };