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.

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

## 0.11.0 (2025-11-23)

* chore(all): update dependencies across services 44bbbc2
* chore(backend): release v0.44.0 09333c5
* chore(backend): release v0.44.0 1c71e34
* chore(backend): release v0.45.0 482c6f4
* chore(backend): release v0.45.0 13a7796
* chore(frontend): release v0.39.0 2245bc8
* chore(frontend): release v0.39.0 fd6535a
* chore(frontend): release v0.40.0 d422afc
* chore(frontend): release v0.40.0 b5ddad8
* refactor(all): simplify conventional changelog preset configuration 482c662
* feat(all): add OAuth authorization step in server installation wizard fce8128
* feat(all): add README content management to MCP server forms f0b706e
* feat(backend): add endpoint to retrieve available satellites for team 5c87421
* feat(backend): add installation_type field for OAuth installations c79f52a
* feat(backend): add OAuth token management services and utilities 3729357
* feat(backend): added icon_url to mcp catalog a1d66de
* feat(backend): auto-fill icon_url from GitHub avatar if not provided 3f418cf
* feat(backend): implement OAuth token retrieval and status endpoints 51472b6
* feat(backend): implement OAuthDiscoveryService for detecting and discovering OAuth metadata from MCP 424a4bc
* feat(frontend): add icon_url field to MCP server forms and views 7356c2b
* feat(frontend): add satellite selection step in installation wizard f4c71d0
* feat(frontend): add website URL display in MCP server card 703416c
* feat(frontend): add website URL field to MCP server forms 5de8134
* feat(frontend): enhance MCP server details with specifications view 3f08f39
* feat(frontend): make repository URL optional in GitHub step aab785c

## 0.10.0 (2025-11-17)

* chore(all): bump @octokit/request from 10.0.6 to 10.0.7 ([ed81e3e](https://github.com/deploystackio/deploystack/commit/ed81e3e))
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.10.0",
"version": "0.11.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.10.0',
buildTime: '2025-11-17T19:47:55.600Z',
version: '0.11.0',
buildTime: '2025-11-23T07:00:30.861Z',
source: 'release'
};

Expand Down