From c68890abaf16cb6537d88851f177c6e6f44bc7a0 Mon Sep 17 00:00:00 2001 From: Lasim <7317318+Lasim@users.noreply.github.com> Date: Wed, 9 Jul 2025 18:00:56 +0000 Subject: [PATCH] chore(backend): release v0.23.0 --- package-lock.json | 2 +- services/backend/CHANGELOG.md | 4 ++++ services/backend/package.json | 2 +- services/backend/src/config/version.ts | 4 ++-- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index 070c5254c..2ca9977a7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -19358,7 +19358,7 @@ }, "services/backend": { "name": "@deploystack/backend", - "version": "0.22.1", + "version": "0.23.0", "dependencies": { "@fastify/cookie": "^11.0.2", "@fastify/cors": "^11.0.1", diff --git a/services/backend/CHANGELOG.md b/services/backend/CHANGELOG.md index 185c8a110..6945c8239 100644 --- a/services/backend/CHANGELOG.md +++ b/services/backend/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.23.0 (2025-07-09) + +* Enhance MCP Server Catalog with GitHub integration and pagination ([49ac701](https://github.com/deploystackio/deploystack/commit/49ac7016581efe5e0ddcc6b7d58b8555302e59de))* Implement MCP Server Catalog Management UI ([9197fb6](https://github.com/deploystackio/deploystack/commit/9197fb64e02da7d22298c0ffac595d11e4301c6f))* Update API routes to use preValidation instead of preHandler for global admin checks ([2ad5139](https://github.com/deploystackio/deploystack/commit/2ad5139150af0188fdbd75df4d9b976ad874b63a))* bump @libsql/client from 0.14.0 to 0.15.9 ([d6b7275](https://github.com/deploystackio/deploystack/commit/d6b72759c48ae8fdda29f7e534599155db1e8321))* bump @typescript-eslint/eslint-plugin from 8.35.1 to 8.36.0 ([6597d61](https://github.com/deploystackio/deploystack/commit/6597d61628e942e8fc462f2c56b4f35fb59600fc))* bump @vue/eslint-config-typescript from 14.5.1 to 14.6.0 ([20af682](https://github.com/deploystackio/deploystack/commit/20af6823e790d8797fb5a67f9fba51a3913cf78b))* bump eslint-plugin-vue from 10.2.0 to 10.3.0 ([12aa557](https://github.com/deploystackio/deploystack/commit/12aa5575b631fcb844dab84e3d9179b0ad364107))* bump jest from 30.0.3 to 30.0.4 ([90f7cf1](https://github.com/deploystackio/deploystack/commit/90f7cf184e25850094ee38d09c66ece680bacda5))* bump nodemailer from 7.0.4 to 7.0.5 ([165406d](https://github.com/deploystackio/deploystack/commit/165406d97628561fb5a5435968e7c0f66f84756b))* bump supertest from 7.1.1 to 7.1.2 ([3043ed8](https://github.com/deploystackio/deploystack/commit/3043ed83ec2f5067c46cc2b321d0ca8db397f984))* bump typescript-eslint from 8.35.1 to 8.36.0 ([45d8ecd](https://github.com/deploystackio/deploystack/commit/45d8ecdd1265ca16037da38862d785d1e232accf))* bump vue-i18n from 11.1.7 to 11.1.9 ([6f80630](https://github.com/deploystackio/deploystack/commit/6f80630f392adde2de390c2e0d835f8c0aac8b54))* bump vue-tsc from 2.2.10 to 3.0.1 ([6eb773e](https://github.com/deploystackio/deploystack/commit/6eb773eedef989554108600e3c225d04e858ada3))* bump zod from 3.25.67 to 3.25.75 ([f69125a](https://github.com/deploystackio/deploystack/commit/f69125a11013c55b78e403e38dcad816eb82b5aa))* bump @libsql/client in /services/backend ([f92bbd9](https://github.com/deploystackio/deploystack/commit/f92bbd95770f1ba8d5c41bc9142e56eac302ac12))* ([06b1224](https://github.com/deploystackio/deploystack/commit/06b12245cccbc2c0eb0f6c367509fd507ef6e4ae)) + ## 0.22.1 (2025-07-07) * release v0.22.0 ([021a1e8](https://github.com/deploystackio/deploystack/commit/021a1e888dd2fe8cb7a85edb6518c478979a28cd))* ([7b3b275](https://github.com/deploystackio/deploystack/commit/7b3b275347df10b3f30b0e21dd2457e7c63a6d6a)) diff --git a/services/backend/package.json b/services/backend/package.json index d3e1b8bac..49be177df 100644 --- a/services/backend/package.json +++ b/services/backend/package.json @@ -1,6 +1,6 @@ { "name": "@deploystack/backend", - "version": "0.22.1", + "version": "0.23.0", "scripts": { "dev": "nodemon", "build": "tsc", diff --git a/services/backend/src/config/version.ts b/services/backend/src/config/version.ts index 26623b9f9..a2eab5297 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.22.0', - buildTime: '2025-07-07T19:08:15.420Z', + version: '0.23.0', + buildTime: '2025-07-09T18:00:55.176Z', source: 'release' };