diff --git a/services/satellite/CHANGELOG.md b/services/satellite/CHANGELOG.md index 08b3da6a2..24912dcc1 100644 --- a/services/satellite/CHANGELOG.md +++ b/services/satellite/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.16.0 (2025-12-24) + +* feat(all): add real-time SSE streaming for MCP installations list ([420b99e99af44ae12cd04dca5a05eb60a130aad2](https://github.com/deploystackio/deploystack/commit/420b99e99af44ae12cd04dca5a05eb60a130aad2)) +* feat(satellite): add backend status tracking to debug endpoint ([3ce04acd430670ef6d46a9d4fe6d3db87042111d](https://github.com/deploystackio/deploystack/commit/3ce04acd430670ef6d46a9d4fe6d3db87042111d)) +* feat(satellite): add immediate status updates on tool execution ([d33d49567802ad3253f28aa547b4dd5482eaedc1](https://github.com/deploystackio/deploystack/commit/d33d49567802ad3253f28aa547b4dd5482eaedc1)) +* chore(all): bump vite from 7.2.7 to 7.3.0 ([35da3c2261eb8218b9b81f0815f54fc62f8c4e27](https://github.com/deploystackio/deploystack/commit/35da3c2261eb8218b9b81f0815f54fc62f8c4e27)) +* fix(satellite): emit status event on successful tool discovery ([19129acc9d82df000cdeca8c80745061c96c9ef4](https://github.com/deploystackio/deploystack/commit/19129acc9d82df000cdeca8c80745061c96c9ef4)) + ## 0.15.0 (2025-12-19) ## 0.15.0 (2025-12-19) diff --git a/services/satellite/package.json b/services/satellite/package.json index c5f681995..3bc523bee 100644 --- a/services/satellite/package.json +++ b/services/satellite/package.json @@ -1,6 +1,6 @@ { "name": "@deploystack/satellite", - "version": "0.15.0", + "version": "0.16.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 94a3ea8fd..c50cf600f 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.15.0', - buildTime: '2025-12-19T07:31:53.643Z', + version: '0.16.0', + buildTime: '2025-12-24T10:16:35.533Z', source: 'release' };