From 13a7796e4144edad24a1955da7c3f1dbc787c71b Mon Sep 17 00:00:00 2001 From: Lasim <7317318+Lasim@users.noreply.github.com> Date: Sat, 22 Nov 2025 22:08:48 +0000 Subject: [PATCH] chore(backend): release v0.45.0 --- package-lock.json | 2 +- services/backend/CHANGELOG.md | 21 +++++++++++++++++++++ services/backend/package.json | 2 +- services/backend/src/config/version.ts | 4 ++-- 4 files changed, 25 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index 4f6c28ec2..3037d71fb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -22320,7 +22320,7 @@ }, "services/backend": { "name": "@deploystack/backend", - "version": "0.44.0", + "version": "0.45.0", "dependencies": { "@fastify/cookie": "^11.0.2", "@fastify/cors": "^11.1.0", diff --git a/services/backend/CHANGELOG.md b/services/backend/CHANGELOG.md index f91a7476c..b2fce54d5 100644 --- a/services/backend/CHANGELOG.md +++ b/services/backend/CHANGELOG.md @@ -1,5 +1,26 @@ # Changelog +## 0.45.0 (2025-11-22) + +* chore(all): update dependencies across services 44bbbc2 +* 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.44.0 (2025-11-17) * chore(backend): release v0.44.0 ([1c71e34](https://github.com/deploystackio/deploystack/commit/1c71e34)) diff --git a/services/backend/package.json b/services/backend/package.json index 1d7501b55..52a0ab205 100644 --- a/services/backend/package.json +++ b/services/backend/package.json @@ -1,6 +1,6 @@ { "name": "@deploystack/backend", - "version": "0.44.0", + "version": "0.45.0", "scripts": { "dev": "nodemon", "build": "tsc && webpack --mode=production", diff --git a/services/backend/src/config/version.ts b/services/backend/src/config/version.ts index 34c1ae665..d1bdf0b4a 100644 --- a/services/backend/src/config/version.ts +++ b/services/backend/src/config/version.ts @@ -9,8 +9,8 @@ export interface VersionInfo { // This will be replaced by the build script let versionData: VersionInfo = { - version: '0.44.0', - buildTime: '2025-11-17T21:05:29.108Z', + version: '0.45.0', + buildTime: '2025-11-22T22:08:47.452Z', source: 'release' };