diff --git a/package-lock.json b/package-lock.json index 582ae06f2..b88370c55 100644 --- a/package-lock.json +++ b/package-lock.json @@ -23272,7 +23272,7 @@ }, "services/satellite": { "name": "@deploystack/satellite", - "version": "0.5.0", + "version": "0.6.0", "dependencies": { "@fastify/http-proxy": "^11.3.0", "@fastify/swagger": "^9.5.2", @@ -23304,6 +23304,15 @@ "webpack-cli": "^6.0.1", "webpack-node-externals": "^3.0.0" } + }, + "services/satellite/node_modules/zod": { + "version": "3.25.76", + "resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz", + "integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } } } } diff --git a/services/satellite/CHANGELOG.md b/services/satellite/CHANGELOG.md index ede449983..ffec06371 100644 --- a/services/satellite/CHANGELOG.md +++ b/services/satellite/CHANGELOG.md @@ -1,5 +1,29 @@ # Changelog +## 0.6.0 (2025-10-24) + +* 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(all): Add shared types and components for configuration schema management ([231e4f9](https://github.com/deploystackio/deploystack/commit/231e4f9)) +* feat(backend): add cleanup old jobs cron and worker functionality ([2f63f81](https://github.com/deploystackio/deploystack/commit/2f63f81)) +* feat(frontend): add search button and manual execution for server search ([0fb2c8e](https://github.com/deploystackio/deploystack/commit/0fb2c8e)) +* feat(satellite): add authentication middleware to MCP routes for stats ([c292d86](https://github.com/deploystackio/deploystack/commit/c292d86)) +* feat(satellite): add uninstall shutdown handling to skip crash detection ([f34fef8](https://github.com/deploystackio/deploystack/commit/f34fef8)) +* feat(satellite): enhance debug route to group servers by team ([be24451](https://github.com/deploystackio/deploystack/commit/be24451)) +* feat(satellite): enhance MCP protocol to handle initialized notifications ([9b95a08](https://github.com/deploystackio/deploystack/commit/9b95a08)) +* feat(satellite): enhance nsjail resource limits and cache directory management ([d0e38e1](https://github.com/deploystackio/deploystack/commit/d0e38e1)) +* feat(satellite): filter out stdio servers during tool discovery ([b5317e2](https://github.com/deploystackio/deploystack/commit/b5317e2)) +* feat(satellite): handle cleanup of removed servers during config changes ([785b73c](https://github.com/deploystackio/deploystack/commit/785b73c)) +* feat(satellite): implement server removal handling for active and dormant states ([593a9a7](https://github.com/deploystackio/deploystack/commit/593a9a7)) +* feat(satellite): resolve command paths for nsjail execution ([a253bc6](https://github.com/deploystackio/deploystack/commit/a253bc6)) +* chore(backend): release v0.38.0 ([1bcf0db](https://github.com/deploystackio/deploystack/commit/1bcf0db)) +* chore(backend): release v0.38.0 ([27fd535](https://github.com/deploystackio/deploystack/commit/27fd535)) +* 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)) +* fix(backend): update redirect URI patterns for Claude.ai MCP OAuth ([22383da](https://github.com/deploystackio/deploystack/commit/22383da)) +* fix(frontend): validate remote objects in server configuration ([0f1ee1b](https://github.com/deploystackio/deploystack/commit/0f1ee1b)) +* fix(satellite): adjust shutdown notification handling during tool discovery ([1896108](https://github.com/deploystackio/deploystack/commit/1896108)) + ## 0.5.0 (2025-10-18) * chore(frontend): release v0.32.0 ([0b61a0a](https://github.com/deploystackio/deploystack/commit/0b61a0a)) diff --git a/services/satellite/package.json b/services/satellite/package.json index b358c7c4b..b51f5a0ae 100644 --- a/services/satellite/package.json +++ b/services/satellite/package.json @@ -1,6 +1,6 @@ { "name": "@deploystack/satellite", - "version": "0.5.0", + "version": "0.6.0", "description": "DeployStack Satellite - MCP Server Management Service", "main": "dist/index.js", "scripts": { diff --git a/services/satellite/src/config/version.ts b/services/satellite/src/config/version.ts index a085803f7..5b79b7a01 100644 --- a/services/satellite/src/config/version.ts +++ b/services/satellite/src/config/version.ts @@ -9,8 +9,8 @@ export interface VersionInfo { // This will be replaced by the build script let versionData: VersionInfo = { - version: '0.5.0', - buildTime: '2025-10-18T10:08:41.395Z', + version: '0.6.0', + buildTime: '2025-10-24T20:14:19.079Z', source: 'release' };