From 3c783bb70104f8fc6019bdd2876f6398fd69cb57 Mon Sep 17 00:00:00 2001 From: Lasim <7317318+Lasim@users.noreply.github.com> Date: Fri, 24 Oct 2025 20:27:45 +0000 Subject: [PATCH] chore(backend): release v0.39.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 b88370c55..33e7f1147 100644 --- a/package-lock.json +++ b/package-lock.json @@ -22909,7 +22909,7 @@ }, "services/backend": { "name": "@deploystack/backend", - "version": "0.38.0", + "version": "0.39.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 a1cabea91..7bf8e5689 100644 --- a/services/backend/CHANGELOG.md +++ b/services/backend/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## 0.39.0 (2025-10-24) + +* chore(deps): bump actions/setup-node from 5 to 6 ([5050cee](https://github.com/deploystackio/deploystack/commit/5050cee)) +* chore(frontend): release v0.33.0 ([068f29a](https://github.com/deploystackio/deploystack/commit/068f29a)) +* chore(satellite): release v0.6.0 ([764cce4](https://github.com/deploystackio/deploystack/commit/764cce4)) +* chore(satellite): release v0.6.0 ([ae2b514](https://github.com/deploystackio/deploystack/commit/ae2b514)) +* refactor(satellite): satellite service to integrate MCP SDK and remove custom transport handlers ([ec92ba4](https://github.com/deploystackio/deploystack/commit/ec92ba4)) +* refactor(satellite): simplify Dockerfile for development environment ([45e31c7](https://github.com/deploystackio/deploystack/commit/45e31c7)) +* feat(satellite): add authentication middleware to MCP routes for stats ([c292d86](https://github.com/deploystackio/deploystack/commit/c292d86)) +* feat(satellite): enhance MCP protocol to handle initialized notifications ([9b95a08](https://github.com/deploystackio/deploystack/commit/9b95a08)) + ## 0.38.0 (2025-10-21) * chore(backend): release v0.38.0 ([27fd535](https://github.com/deploystackio/deploystack/commit/27fd535)) diff --git a/services/backend/package.json b/services/backend/package.json index fb6dca72d..b964be4af 100644 --- a/services/backend/package.json +++ b/services/backend/package.json @@ -1,6 +1,6 @@ { "name": "@deploystack/backend", - "version": "0.38.0", + "version": "0.39.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 3be2ac11f..04e9a97a9 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.38.0', - buildTime: '2025-10-21T20:56:40.519Z', + version: '0.39.0', + buildTime: '2025-10-24T20:27:44.485Z', source: 'release' };