diff --git a/services/backend/CHANGELOG.md b/services/backend/CHANGELOG.md index 7d2d8ff9..1e7d0b12 100644 --- a/services/backend/CHANGELOG.md +++ b/services/backend/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 0.58.0 (2026-01-10) + +* feat(all): implement OAuth2 authorization flow and user feedback system ([dedacf74aa1da000bf4b13933dae17fc3a1846a9](https://github.com/deploystackio/deploystack/commit/dedacf74aa1da000bf4b13933dae17fc3a1846a9)) +* feat(backend): implement sanitization utilities for XSS prevention ([981faf2c25fd654943a0f0c54fdb7cee19097c83](https://github.com/deploystackio/deploystack/commit/981faf2c25fd654943a0f0c54fdb7cee19097c83)) +* chore(all): bump webpack from 5.103.0 to 5.104.1 ([dc39724170dad1d801c9867506251560a34f004f](https://github.com/deploystackio/deploystack/commit/dc39724170dad1d801c9867506251560a34f004f)) + ## 0.57.0 (2026-01-01) * chore(all): update deploystack banner image ([924cbcb5835e1a91c572f658db1e47b6465a20a9](https://github.com/deploystackio/deploystack/commit/924cbcb5835e1a91c572f658db1e47b6465a20a9)) diff --git a/services/backend/package.json b/services/backend/package.json index fd5e483c..ec6f4972 100644 --- a/services/backend/package.json +++ b/services/backend/package.json @@ -1,6 +1,6 @@ { "name": "@deploystack/backend", - "version": "0.57.0", + "version": "0.58.0", "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 d2d6eabf..66f5b9e3 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.57.0', - buildTime: '2026-01-01T21:35:40.433Z', + version: '0.58.0', + buildTime: '2026-01-10T16:01:54.807Z', source: 'release' };