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.

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

## 0.47.0 (2025-11-28)

* chore(all): bump isomorphic-dompurify from 2.32.0 to 2.33.0 6243596
* chore(all): update dependencies in package.json files 12bdfcd
* chore(deps): bump actions/checkout from 5 to 6 e5d84d1
* chore(frontend): release v0.42.0 94ca47c
* chore(frontend): release v0.42.0 14e3b3b
* feat(all): implement breadcrumbs and several frontend and UI improvements f3d3e70
* feat(backend): add total MCP server installation limit per team a9dff02
* feat(frontend): add MCP server limit to team management forms c47091a
* feat(frontend): replace switches with checkboxes for settings c144d10
* fix(backend): set git_branch to null if repository_url is absent bb16362
* style(frontend): remove max-width from content area in settings and profile b9624a8
* feature(backend): re-build the global settings - added name param dfab0ed

## 0.46.0 (2025-11-25)

* chore(backend): release v0.46.0 1490b2a
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.46.0",
"version": "0.47.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.46.0',
buildTime: '2025-11-25T22:04:10.188Z',
version: '0.47.0',
buildTime: '2025-11-28T19:50:26.941Z',
source: 'release'
};

Expand Down