diff --git a/package-lock.json b/package-lock.json index 48909776..603de2e8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -23478,7 +23478,7 @@ }, "services/backend": { "name": "@deploystack/backend", - "version": "0.40.0", + "version": "0.41.0", "dependencies": { "@fastify/cookie": "^11.0.2", "@fastify/cors": "^11.1.0", diff --git a/services/backend/CHANGELOG.md b/services/backend/CHANGELOG.md index 4bf585ce..675686bd 100644 --- a/services/backend/CHANGELOG.md +++ b/services/backend/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## 0.41.0 (2025-11-09) + +* chore(all): bump @modelcontextprotocol/sdk from 1.20.2 to 1.21.0 ([7c81126](https://github.com/deploystackio/deploystack/commit/7c81126)) +* chore(all): bump @types/node from 24.8.1 to 24.10.0 ([3467f4b](https://github.com/deploystackio/deploystack/commit/3467f4b)) +* chore(all): bump @types/uuid from 10.0.0 to 11.0.0 ([5ee2773](https://github.com/deploystackio/deploystack/commit/5ee2773)) +* chore(all): bump lucide-vue-next from 0.546.0 to 0.552.0 ([b6058de](https://github.com/deploystackio/deploystack/commit/b6058de)) +* chore(all): update node version to 24 in workflow files ([147192d](https://github.com/deploystackio/deploystack/commit/147192d)) +* chore(backend): update dependencies in package.json ([e3f9c05](https://github.com/deploystackio/deploystack/commit/e3f9c05)) +* chore(frontend): bump lucide-vue-next in /services/frontend ([cb55024](https://github.com/deploystackio/deploystack/commit/cb55024)) +* chore(frontend): release v0.35.0 ([f9bfa86](https://github.com/deploystackio/deploystack/commit/f9bfa86)) +* chore(frontend): release v0.35.0 ([37f88a6](https://github.com/deploystackio/deploystack/commit/37f88a6)) +* chore(frontend): release v0.36.0 ([347024b](https://github.com/deploystackio/deploystack/commit/347024b)) +* chore(frontend): update dependencies in frontend package.json ([4fa9043](https://github.com/deploystackio/deploystack/commit/4fa9043)) +* chore(satellite): bump @types/uuid in /services/satellite ([319a8cf](https://github.com/deploystackio/deploystack/commit/319a8cf)) +* chore(satellite): bump zod from 3.25.76 to 4.1.12 in /services/satellite ([f6f825d](https://github.com/deploystackio/deploystack/commit/f6f825d)) +* feat(all): add teams management functionality for global admins ([d3a9926](https://github.com/deploystackio/deploystack/commit/d3a9926)) +* feat(backend): implement admin team update route with validation and response schemas ([09ae873](https://github.com/deploystackio/deploystack/commit/09ae873)) + ## 0.40.0 (2025-11-04) * chore(backend): release v0.40.0 ([58435ff](https://github.com/deploystackio/deploystack/commit/58435ff)) diff --git a/services/backend/package.json b/services/backend/package.json index 86d90b84..23451a47 100644 --- a/services/backend/package.json +++ b/services/backend/package.json @@ -1,6 +1,6 @@ { "name": "@deploystack/backend", - "version": "0.40.0", + "version": "0.41.0", "scripts": { "dev": "nodemon", "build": "tsc && webpack --mode=production", diff --git a/services/backend/src/config/version.ts b/services/backend/src/config/version.ts index 398dc4d9..e8521f43 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.40.0', - buildTime: '2025-11-04T19:56:19.119Z', + version: '0.41.0', + buildTime: '2025-11-09T23:02:49.710Z', source: 'release' };