From 9d965815bca06448f56f55d1dac78308acc29ec7 Mon Sep 17 00:00:00 2001 From: Lasim <7317318+Lasim@users.noreply.github.com> Date: Tue, 11 Nov 2025 21:16:11 +0000 Subject: [PATCH] chore(backend): release v0.42.0 --- package-lock.json | 2 +- services/backend/CHANGELOG.md | 11 +++++++++++ services/backend/package.json | 2 +- services/backend/src/config/version.ts | 4 ++-- 4 files changed, 15 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index 8dac64d8..51ac85ee 100644 --- a/package-lock.json +++ b/package-lock.json @@ -23478,7 +23478,7 @@ }, "services/backend": { "name": "@deploystack/backend", - "version": "0.41.0", + "version": "0.42.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 c06d6561..75c29f73 100644 --- a/services/backend/CHANGELOG.md +++ b/services/backend/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## 0.42.0 (2025-11-11) + +* chore(all): bump @octokit/auth-app from 8.1.1 to 8.1.2 ([b9e93c6](https://github.com/deploystackio/deploystack/commit/b9e93c6)) +* chore(all): bump @octokit/request from 10.0.5 to 10.0.6 ([67fcd1b](https://github.com/deploystackio/deploystack/commit/67fcd1b)) +* chore(all): bump marked from 16.4.1 to 17.0.0 ([aa37cf6](https://github.com/deploystackio/deploystack/commit/aa37cf6)) +* chore(all): bump release-it from 19.0.5 to 19.0.6 ([d2fdb5c](https://github.com/deploystackio/deploystack/commit/d2fdb5c)) +* chore(frontend): release v0.37.0 ([2e71d44](https://github.com/deploystackio/deploystack/commit/2e71d44)) +* chore(frontend): release v0.37.0 ([bfa8025](https://github.com/deploystackio/deploystack/commit/bfa8025)) +* feat(all): Add support for URL query parameters in MCP server configuration ([bce275a](https://github.com/deploystackio/deploystack/commit/bce275a)) +* feat(all): added new route for MCP client config ([1d7fb4a](https://github.com/deploystackio/deploystack/commit/1d7fb4a)) + ## 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)) diff --git a/services/backend/package.json b/services/backend/package.json index 8ad7c536..289a7455 100644 --- a/services/backend/package.json +++ b/services/backend/package.json @@ -1,6 +1,6 @@ { "name": "@deploystack/backend", - "version": "0.41.0", + "version": "0.42.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 e8521f43..deb94428 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.41.0', - buildTime: '2025-11-09T23:02:49.710Z', + version: '0.42.0', + buildTime: '2025-11-11T21:16:10.392Z', source: 'release' };