diff --git a/package-lock.json b/package-lock.json index 7b140456d..4f0749f8a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -21043,7 +21043,7 @@ }, "services/backend": { "name": "@deploystack/backend", - "version": "0.29.1", + "version": "0.29.2", "dependencies": { "@fastify/cookie": "^11.0.2", "@fastify/cors": "^11.1.0", diff --git a/services/backend/CHANGELOG.md b/services/backend/CHANGELOG.md index 5e6175ac7..6ae66a493 100644 --- a/services/backend/CHANGELOG.md +++ b/services/backend/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.29.2 (2025-08-16) + +* enhance build process with webpack integration ([1aab8fa](https://github.com/deploystackio/deploystack/commit/1aab8faab83777f2f8d66befb3bd9654dfd043bf)) + ## 0.29.1 (2025-08-15) * update @typescript-eslint/parser to version 8.35.1 and add license information ([f4a2ab8](https://github.com/deploystackio/deploystack/commit/f4a2ab8d15866c490db17174eb88a133f26374aa)) diff --git a/services/backend/package.json b/services/backend/package.json index 76fb2134f..d08ada791 100644 --- a/services/backend/package.json +++ b/services/backend/package.json @@ -1,6 +1,6 @@ { "name": "@deploystack/backend", - "version": "0.29.1", + "version": "0.29.2", "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 62c8c7c44..1b63e928d 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.29.0', - buildTime: '2025-08-15T22:15:52.777Z', + version: '0.29.2', + buildTime: '2025-08-16T10:54:22.628Z', source: 'release' };