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.

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

## 0.10.0 (2025-11-17)

* feat(all): add category-specific client configuration API endpoint ([da6a24e](https://github.com/deploystackio/deploystack/commit/da6a24e))
* feat(all): add OAuth 2.1 authentication for MCP servers ([ec98c8b](https://github.com/deploystackio/deploystack/commit/ec98c8b))
* feat(all): implemented token usage statistics ([2fcd9cf](https://github.com/deploystackio/deploystack/commit/2fcd9cf))
* feat(backend): enhance API specifications and add Cursor support ([a214653](https://github.com/deploystackio/deploystack/commit/a214653))
* feat(backend): enhance MCP client types API with categorized response ([21e4833](https://github.com/deploystackio/deploystack/commit/21e4833))
* feat(frontend): add statistics page with under construction message ([1ad3ab7](https://github.com/deploystackio/deploystack/commit/1ad3ab7))
* chore(all): bump @octokit/request from 10.0.6 to 10.0.7 ([ed81e3e](https://github.com/deploystackio/deploystack/commit/ed81e3e))
* chore(all): bump nodemon from 3.1.10 to 3.1.11 ([653ab6e](https://github.com/deploystackio/deploystack/commit/653ab6e))
* fix(satellite): update markdown linting path for AI instructions ([8032166](https://github.com/deploystackio/deploystack/commit/8032166))
* fix(satellite): update token consumption metrics in README ([b58e58b](https://github.com/deploystackio/deploystack/commit/b58e58b))

## 0.9.0 (2025-11-15)

* chore(frontend): release v0.38.0 ([f11c7df](https://github.com/deploystackio/deploystack/commit/f11c7df))
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.9.0",
"version": "0.10.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.9.0',
buildTime: '2025-11-17T17:33:30.175Z',
version: '0.10.0',
buildTime: '2025-11-17T19:47:55.600Z',
source: 'release'
};

Expand Down