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.

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

## 0.39.0 (2025-10-24)

* chore(deps): bump actions/setup-node from 5 to 6 ([5050cee](https://github.com/deploystackio/deploystack/commit/5050cee))
* chore(frontend): release v0.33.0 ([068f29a](https://github.com/deploystackio/deploystack/commit/068f29a))
* chore(satellite): release v0.6.0 ([764cce4](https://github.com/deploystackio/deploystack/commit/764cce4))
* chore(satellite): release v0.6.0 ([ae2b514](https://github.com/deploystackio/deploystack/commit/ae2b514))
* refactor(satellite): satellite service to integrate MCP SDK and remove custom transport handlers ([ec92ba4](https://github.com/deploystackio/deploystack/commit/ec92ba4))
* refactor(satellite): simplify Dockerfile for development environment ([45e31c7](https://github.com/deploystackio/deploystack/commit/45e31c7))
* feat(satellite): add authentication middleware to MCP routes for stats ([c292d86](https://github.com/deploystackio/deploystack/commit/c292d86))
* feat(satellite): enhance MCP protocol to handle initialized notifications ([9b95a08](https://github.com/deploystackio/deploystack/commit/9b95a08))

## 0.38.0 (2025-10-21)

* chore(backend): release v0.38.0 ([27fd535](https://github.com/deploystackio/deploystack/commit/27fd535))
Expand Down
2 changes: 1 addition & 1 deletion services/backend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@deploystack/backend",
"version": "0.38.0",
"version": "0.39.0",
"scripts": {
"dev": "nodemon",
"build": "tsc && webpack --mode=production",
Expand Down
4 changes: 2 additions & 2 deletions services/backend/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.38.0',
buildTime: '2025-10-21T20:56:40.519Z',
version: '0.39.0',
buildTime: '2025-10-24T20:27:44.485Z',
source: 'release'
};

Expand Down