Skip to content

Commit f109a26

Browse files
authored
Merge pull request #332 from deploystackio/backend-release
[Backend Release] v0.34.0
2 parents ecfc8e0 + a7d6771 commit f109a26

File tree

4 files changed

+33
-4
lines changed

4 files changed

+33
-4
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

services/backend/CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,34 @@
11
# Changelog
22

3+
## 0.34.0 (2025-09-23)
4+
5+
* feat: Implement satellite registration token management system ([1928400](https://github.com/deploystackio/deploystack/commit/1928400))
6+
* feat(all): added satellite pairing system ([59e63bc](https://github.com/deploystackio/deploystack/commit/59e63bc))
7+
* refactor(backend): improve token cleanup service logging and initialization ([73de288](https://github.com/deploystackio/deploystack/commit/73de288))
8+
* refactor(backend): simplify deleteInstallation logging and remove checks ([cfa74ab](https://github.com/deploystackio/deploystack/commit/cfa74ab))
9+
* refactor(frontend): remove MCP catalog contribution banner component ([4e7c699](https://github.com/deploystackio/deploystack/commit/4e7c699))
10+
* chore(all): bump @eslint/js from 9.34.0 to 9.35.0 ([c7d6995](https://github.com/deploystackio/deploystack/commit/c7d6995))
11+
* chore(all): bump @fastify/http-proxy from 10.0.2 to 11.3.0 ([a0664e2](https://github.com/deploystackio/deploystack/commit/a0664e2))
12+
* chore(all): bump @libsql/client from 0.15.14 to 0.15.15 ([f950974](https://github.com/deploystackio/deploystack/commit/f950974))
13+
* chore(all): bump @types/node from 20.19.13 to 24.4.0 ([da2047d](https://github.com/deploystackio/deploystack/commit/da2047d))
14+
* chore(all): bump eslint from 9.34.0 to 9.35.0 ([ee720b5](https://github.com/deploystackio/deploystack/commit/ee720b5))
15+
* chore(all): bump nanoid from 3.3.11 to 5.1.5 ([e07ef11](https://github.com/deploystackio/deploystack/commit/e07ef11))
16+
* chore(all): bump pino from 9.9.0 to 9.9.5 ([7d69829](https://github.com/deploystackio/deploystack/commit/7d69829))
17+
* chore(all): bump tailwindcss from 4.1.12 to 4.1.13 ([308fa44](https://github.com/deploystackio/deploystack/commit/308fa44))
18+
* chore(all): bump vite from 7.1.4 to 7.1.5 ([95574fc](https://github.com/deploystackio/deploystack/commit/95574fc))
19+
* chore(all): bump vite from 7.1.6 to 7.1.7 ([f662458](https://github.com/deploystackio/deploystack/commit/f662458))
20+
* chore(all): bump vue from 3.5.20 to 3.5.21 ([43dfe73](https://github.com/deploystackio/deploystack/commit/43dfe73))
21+
* chore(all): bump vue-tsc from 3.0.6 to 3.0.7 ([7d6c7c7](https://github.com/deploystackio/deploystack/commit/7d6c7c7))
22+
* chore(all): bump zod-openapi from 5.4.0 to 5.4.1 ([d0a2d5f](https://github.com/deploystackio/deploystack/commit/d0a2d5f))
23+
* chore(all): ci/cd updates ([b32b782](https://github.com/deploystackio/deploystack/commit/b32b782))
24+
* chore(deps): bump actions/github-script from 7 to 8 ([1226ad1](https://github.com/deploystackio/deploystack/commit/1226ad1))
25+
* chore(deps): bump actions/setup-node from 4 to 5 ([2c52ca0](https://github.com/deploystackio/deploystack/commit/2c52ca0))
26+
* chore(frontend): bump lucide-vue-next in /services/frontend ([e6010f3](https://github.com/deploystackio/deploystack/commit/e6010f3))
27+
* chore(satellite): bump @fastify/http-proxy in /services/satellite ([3ab8436](https://github.com/deploystackio/deploystack/commit/3ab8436))
28+
* chore(satellite): bump @types/node in /services/satellite ([e50b404](https://github.com/deploystackio/deploystack/commit/e50b404))
29+
* chore(satellite): bump dotenv in /services/satellite ([5cb8a83](https://github.com/deploystackio/deploystack/commit/5cb8a83))
30+
* fix(backend): handle property name differences in delete operation ([1444a10](https://github.com/deploystackio/deploystack/commit/1444a10))
31+
332
## <small>0.33.1 (2025-09-15)</small>
433

534
* chore(backend): release v0.33.1 ([8ad733e](https://github.com/deploystackio/deploystack/commit/8ad733e))

services/backend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@deploystack/backend",
3-
"version": "0.33.1",
3+
"version": "0.34.0",
44
"scripts": {
55
"dev": "nodemon",
66
"build": "tsc && webpack --mode=production",

services/backend/src/config/version.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ export interface VersionInfo {
99

1010
// This will be replaced by the build script
1111
let versionData: VersionInfo = {
12-
version: '0.33.1',
13-
buildTime: '2025-09-15T20:35:41.864Z',
12+
version: '0.34.0',
13+
buildTime: '2025-09-23T20:25:00.405Z',
1414
source: 'release'
1515
};
1616

0 commit comments

Comments
 (0)