diff --git a/package-lock.json b/package-lock.json index fab442d5e..565cbe8a5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -22369,7 +22369,7 @@ }, "services/satellite": { "name": "@deploystack/satellite", - "version": "0.14.0", + "version": "0.14.1", "dependencies": { "@fastify/http-proxy": "^11.4.1", "@fastify/swagger": "^9.6.1", diff --git a/services/satellite/CHANGELOG.md b/services/satellite/CHANGELOG.md index e51183a90..bc29e9870 100644 --- a/services/satellite/CHANGELOG.md +++ b/services/satellite/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.14.1 (2025-12-14) + +* feat(all): add satellite_url field with auto-detection and first-heartbeat updates 6ec441c8dfecc96bf7c36c9066f8c2d4a7bd2cf2 +* feat(backend): add satellite_url field to team satellites endpoint af13d14c99fd4b5ae25cd73621720fba942e1b29 +* fix(backend): properly delete MCP installations and notify satellites during team deletion 6d82fb3582b519cb44b640479fcd15f0d8e6ed21 +* fix(frontend): preserve team permissions after update and improve delete modal UX d7e92dbd2418858141c937f54ac5219bee3b496c +* fix(satellite): resolve Docker volume permission issues preventing credential persistence 8d4499a2f8cf9816127ab7bc89af9da5ceb242ed, closes #547 + ## 0.14.0 (2025-12-12) ## 0.14.0 (2025-12-12) diff --git a/services/satellite/package.json b/services/satellite/package.json index a5f975f21..a89fe5b81 100644 --- a/services/satellite/package.json +++ b/services/satellite/package.json @@ -1,6 +1,6 @@ { "name": "@deploystack/satellite", - "version": "0.14.0", + "version": "0.14.1", "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 305a90f57..4d5348c6b 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.14.0', - buildTime: '2025-12-12T23:01:03.498Z', + version: '0.14.1', + buildTime: '2025-12-14T12:04:20.358Z', source: 'release' };