diff --git a/package-lock.json b/package-lock.json
index 565cbe8a5..a5bc6d5f5 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -22369,7 +22369,7 @@
},
"services/satellite": {
"name": "@deploystack/satellite",
- "version": "0.14.1",
+ "version": "0.14.2",
"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 9fe5b46ee..21f98027d 100644
--- a/services/satellite/CHANGELOG.md
+++ b/services/satellite/CHANGELOG.md
@@ -1,5 +1,10 @@
# Changelog
+## 0.14.2 (2025-12-14)
+
+* fix(satellite): resolve Docker volume permission issues preventing credential persistence 6aa532f24650a1e009a0be5e5869c295640e436b
+* feat(all): add satellite selection to MCP client configuration 34d1a7972db2b8099825478998fc300058cddaac, closes #548
+
## 0.14.1 (2025-12-14)
* feat(all): add satellite_url field with auto-detection and first-heartbeat updates 6ec441c8dfecc96bf7c36c9066f8c2d4a7bd2cf2
diff --git a/services/satellite/package.json b/services/satellite/package.json
index a89fe5b81..0e335a5e9 100644
--- a/services/satellite/package.json
+++ b/services/satellite/package.json
@@ -1,6 +1,6 @@
{
"name": "@deploystack/satellite",
- "version": "0.14.1",
+ "version": "0.14.2",
"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 4d5348c6b..35899e069 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.1',
- buildTime: '2025-12-14T12:04:20.358Z',
+ version: '0.14.2',
+ buildTime: '2025-12-14T16:05:54.385Z',
source: 'release'
};