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.

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

## <small>0.13.1 (2025-12-06)</small>

* fix(backend): clarify backend API base URL description 1f6ef4e
* fix(backend): emit USER_REGISTERED event for new GitHub users 8d84726
* fix(backend): include drizzle migrations in Docker image bc4c9af, closes #546
* fix(backend): set default value for DEPLOYSTACK_ENCRYPTION_SECRET 8359fc3
* fix(backend): update MCP installation email templates for clarity ee9c3bf
* fix(backend): update run-local-postgres script for consistency dda8eb9
* fix(ci): always pass --increment flag in release PR workflows 6f650be
* fix(satellite): respect transport_type for SSE MCP servers 96a05fa, closes #553
* chore(backend): release v0.50.0 b7e6d19
* chore(backend): release v0.50.0 714a87d
* chore(backend): release v0.50.1 615117f
* chore(backend): release v0.50.1 c84b8a3
* chore(frontend): release v0.46.0 016a8c1
* chore(frontend): release v0.46.0 5d8faca
* feat(backend): add user-level HTTP config overrides for headers and query params 7193e89

## 0.13.0 (2025-12-04)

* chore(backend): release v0.50.0 cee81fb
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.13.0",
"version": "0.13.1",
"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.13.0',
buildTime: '2025-12-04T15:37:58.286Z',
version: '0.13.1',
buildTime: '2025-12-06T22:54:50.126Z',
source: 'release'
};

Expand Down