Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 26 additions & 0 deletions services/satellite/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
# Changelog

## 0.13.0 (2025-12-04)

* feat(all): add real-time MCP server config updates with automatic stdio restart ad287e4
* feat(all): add user configuration support in installation process cd26a0e
* feat(all): queue MCP server deletion as background job with cascade notifications 679fcb5
* feat(backend): add email notifications for MCP installation events 448e687
* feat(frontend): add boolean select input for environment variables bbd9b62
* feat(frontend): implement server search and installation wizard 4a78930
* feat(frontend): simplify checkbox value update handling in settings 8b7c3ac
* feat(satellite): add support for public backend URL in OAuth configuration aebb814
* chore(backend): release v0.49.0 b8459cd
* chore(backend): release v0.49.0 cb8ca0a
* chore(backend): release v0.50.0 cee81fb
* chore(backend): release v0.50.0 56decfb
* chore(frontend): release v0.45.0 b3fe4a0
* chore(frontend): release v0.45.0 430bfe1
* fix(backend): notify satellites when auto-installing MCP servers for new teams b3df717
* fix(frontend): clean repository URL and improve validation logic 3862166
* fix(frontend): clear additional edit-related storage keys 726626a
* fix(frontend): implement category caching and loading logic 38fa102
* fix(frontend): normalize tag input to lowercase on addition 50fc847
* fix(frontend): remove hotlined profile picture 2fa3257
* fix(frontend): update logout messages for clarity and consistency 5bf215b
* style(frontend): adjust padding for server details display c19c47a
* docs(all): update feature list with per-tool access controls and catalog improvements d4ec492

## 0.12.0 (2025-12-01)

* chore(frontend): release v0.44.0 086b98d
Expand Down
2 changes: 1 addition & 1 deletion services/satellite/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@deploystack/satellite",
"version": "0.12.0",
"version": "0.13.0",
"description": "DeployStack Satellite - MCP Server Management Service",
"main": "dist/index.js",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions services/satellite/src/config/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ export interface VersionInfo {

// This will be replaced by the build script
let versionData: VersionInfo = {
version: '0.12.0',
buildTime: '2025-11-30T22:49:55.147Z',
version: '0.13.0',
buildTime: '2025-12-04T15:37:58.286Z',
source: 'release'
};

Expand Down