diff --git a/services/satellite/CHANGELOG.md b/services/satellite/CHANGELOG.md index c6435758..4509e8ec 100644 --- a/services/satellite/CHANGELOG.md +++ b/services/satellite/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +# [0.21.0](https://github.com/deploystackio/deploystack/compare/satellite-v0.20.0...satellite-v0.21.0) (2026-02-14) + + +### feat + +* **all:** add OAuth requirement field, hierarchical router improvements, and tool filtering ([](https://github.com/deploystackio/deploystack/commit/231b175e01b4e3d04bb6e20c5442d2f91e34b737)) +* **all:** add reconnect button for offline HTTP/SSE MCP servers ([](https://github.com/deploystackio/deploystack/commit/92ff5093ab02c1c61a8c87062380a003254d8e05)) + + +### fix + +* **all:** use WAF-friendly User-Agent headers for HTTP MCP server requests ([](https://github.com/deploystackio/deploystack/commit/2c9cae011f4fe648d6f0893e1a3150c7093bd9b4)) + # [0.20.0](https://github.com/deploystackio/deploystack/compare/satellite-v0.18.0...satellite-v0.19.0) (2026-02-08) diff --git a/services/satellite/package.json b/services/satellite/package.json index c51b65ad..10d5f33a 100644 --- a/services/satellite/package.json +++ b/services/satellite/package.json @@ -1,6 +1,6 @@ { "name": "@deploystack/satellite", - "version": "0.20.0", + "version": "0.21.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 ca7e1c5c..725c406b 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.20.0', - buildTime: '2026-02-08T21:26:11.013Z', + version: '0.21.0', + buildTime: '2026-02-14T20:17:43.732Z', source: 'release' };