From 942eaf8feff5a19624c4ab30fc2d668e5400af69 Mon Sep 17 00:00:00 2001 From: Lasim <7317318+Lasim@users.noreply.github.com> Date: Tue, 24 Feb 2026 22:59:38 +0000 Subject: [PATCH] chore(satellite): release v0.22.0 --- services/satellite/CHANGELOG.md | 27 ++++++++++++++++++++++++ services/satellite/package.json | 2 +- services/satellite/src/config/version.ts | 4 ++-- 3 files changed, 30 insertions(+), 3 deletions(-) diff --git a/services/satellite/CHANGELOG.md b/services/satellite/CHANGELOG.md index 33377405..3b4d3051 100644 --- a/services/satellite/CHANGELOG.md +++ b/services/satellite/CHANGELOG.md @@ -1,5 +1,32 @@ # Changelog +# [0.22.0](https://github.com/deploystackio/deploystack/compare/satellite-v0.21.0...satellite-v0.22.0) (2026-02-24) + + +### chore + +* **all:** update dependencies ([](https://github.com/deploystackio/deploystack/commit/9a4e8cc37fc265a67e822ec05aa5ef89c7bb44b0)) + + +### feat + +* **all:** add public GitHub repository deployment without GitHub App ([](https://github.com/deploystackio/deploystack/commit/f9045615b715109f4b5fbfe8408344b540bc9da5)) +* **all:** add skip_oauth_flow flag for MCP catalog servers ([](https://github.com/deploystackio/deploystack/commit/154a8c0dc88a567ebe02b333c65fa52ea7126546)) +* **all:** auto-detect GitHub installations for user accounts ([](https://github.com/deploystackio/deploystack/commit/a41d5d00e42e61ea96796d43aad9886a23a00986)) +* **all:** enhance MCP config management and deploy wizard ([](https://github.com/deploystackio/deploystack/commit/46a897a82d81074086022d38b637a962e3b907a1)) +* **satellite:** add cgroup v2 auto-detection and fix stderr log delivery ([](https://github.com/deploystackio/deploystack/commit/14d7efc735cc2593960fdf5a68129a62cb4fcd80)) +* **satellite:** add MCP resource proxying and preserve _meta for MCP Apps support ([](https://github.com/deploystackio/deploystack/commit/9e33919b34509a0d721697fd8975e476eb406fd5)) + + +### fix + +* **all:** resolve OAuth popup not communicating back to parent window ([](https://github.com/deploystackio/deploystack/commit/5df38edd60f34a60d372a1a8841f4e3103adbf26)) + + +### refactor + +* **satellite:** update caching logic for tools and resources ([](https://github.com/deploystackio/deploystack/commit/04da74e082cdb20c987e018e02fe46585b1bf5e2)) + # [0.21.0](https://github.com/deploystackio/deploystack/compare/frontend-v0.56.0...satellite-v0.20.0) (2026-02-14) diff --git a/services/satellite/package.json b/services/satellite/package.json index 75fb7942..6a641f36 100644 --- a/services/satellite/package.json +++ b/services/satellite/package.json @@ -1,6 +1,6 @@ { "name": "@deploystack/satellite", - "version": "0.21.0", + "version": "0.22.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 725c406b..ee684fa4 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.21.0', - buildTime: '2026-02-14T20:17:43.732Z', + version: '0.22.0', + buildTime: '2026-02-24T22:59:36.234Z', source: 'release' };