From 021a1e888dd2fe8cb7a85edb6518c478979a28cd Mon Sep 17 00:00:00 2001 From: Lasim <7317318+Lasim@users.noreply.github.com> Date: Mon, 7 Jul 2025 19:08:16 +0000 Subject: [PATCH] chore(backend): release v0.22.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 d2e622fa6..48007370c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -19816,7 +19816,7 @@ }, "services/backend": { "name": "@deploystack/backend", - "version": "0.21.1", + "version": "0.22.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 664baec8e..4c482bf8f 100644 --- a/services/backend/CHANGELOG.md +++ b/services/backend/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.22.0 (2025-07-07) + +* ([7b3b275](https://github.com/deploystackio/deploystack/commit/7b3b275347df10b3f30b0e21dd2457e7c63a6d6a)) + ## 0.21.1 (2025-07-06) * release v0.21.0 ([b5fba29](https://github.com/deploystackio/deploystack/commit/b5fba29faa63cf956661a85be3f50c88409853a3))* remove action button from empty credentials state and clean up related text ([d83eb9c](https://github.com/deploystackio/deploystack/commit/d83eb9ca009a47906dcdbd11f3b600b386035281))* remove unused components and consolidate credential table logic ([780df9f](https://github.com/deploystackio/deploystack/commit/780df9f2ffbb9169024dcf520d9dfbb5d5a38469))* Remove unused imports from CredentialDetail and TeamTableColumns components ([0b0208e](https://github.com/deploystackio/deploystack/commit/0b0208eced1c8d3f077468a3b49046aec510a921))* Simplify error handling in version retrieval and clean up team member addition logic ([72c8fe4](https://github.com/deploystackio/deploystack/commit/72c8fe42e67dd6a713caf994464d1d5de20f64fd))* Add configurable version display in root API response based on global setting ([0aa6a93](https://github.com/deploystackio/deploystack/commit/0aa6a93311a5d975c9a4b344c53c706e55630d18))* Add health check endpoint for API status monitoring ([e774a38](https://github.com/deploystackio/deploystack/commit/e774a38410d4056ed31868ba85b58ae5977725de))* Enhance credential management by implementing team-based credential retrieval and success message handling ([6742249](https://github.com/deploystackio/deploystack/commit/6742249c8c979f9b570bfa918e456ba8d3418482))* Enhance credentials search functionality with manual search button ([1d58ee4](https://github.com/deploystackio/deploystack/commit/1d58ee4d227acdfbbfcf5c1cc9ba7174ad605f23))* Enhance user teams retrieval by including roles and membership details ([748cd1c](https://github.com/deploystackio/deploystack/commit/748cd1c9e2abc8c9af5fcd8f39f8c8c27787d50e))* Implement cloud credentials management UI and service integration ([bef036b](https://github.com/deploystackio/deploystack/commit/bef036bd464a977ab04681f35d2c71166d96f900))* Implement team member management endpoints and schemas ([bf9ecf8](https://github.com/deploystackio/deploystack/commit/bf9ecf880fa1a1c20b40dea37c616511ca044922))* Implement version management by creating version.ts and updating Dockerfile, workflows, and banner to use dynamic versioning ([29b57c3](https://github.com/deploystackio/deploystack/commit/29b57c32a9f95b5608347f07d79abb4a1627beab))* Refactor team management table by creating a dedicated component and enhancing search functionality ([655660d](https://github.com/deploystackio/deploystack/commit/655660d19ee179c469ccbb9cf7f0ad233723d869))* Update API endpoints in user and cloud credentials tests to include '/api' prefix for consistency ([b228f44](https://github.com/deploystackio/deploystack/commit/b228f447b1d009761f3e9b4c63dd2f8854e5f4eb))* Update table headers to improve styling and consistency across components ([151accb](https://github.com/deploystackio/deploystack/commit/151accb66fbbee75fed92eb71ddaafd6300ec183))* Add comprehensive tests for health route including registration, response validation, and error handling ([80fdfdc](https://github.com/deploystackio/deploystack/commit/80fdfdcf111d7b9cfc7401eefacb85436a92d61e))* ([e0459d6](https://github.com/deploystackio/deploystack/commit/e0459d69c59543ee5584fe93fc45c99787b9c145))* ([34458f2](https://github.com/deploystackio/deploystack/commit/34458f296a8e689874a0f212822be8be71fdcb09)) diff --git a/services/backend/package.json b/services/backend/package.json index aa8d5dc10..1b4fbbc34 100644 --- a/services/backend/package.json +++ b/services/backend/package.json @@ -1,6 +1,6 @@ { "name": "@deploystack/backend", - "version": "0.21.1", + "version": "0.22.0", "scripts": { "dev": "nodemon", "build": "tsc", diff --git a/services/backend/src/config/version.ts b/services/backend/src/config/version.ts index 22d3bf4e0..26623b9f9 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.21.0', - buildTime: '2025-07-06T21:03:35.176Z', + version: '0.22.0', + buildTime: '2025-07-07T19:08:15.420Z', source: 'release' };