Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions services/backend/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
Expand Down
2 changes: 1 addition & 1 deletion services/backend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@deploystack/backend",
"version": "0.57.0",
"version": "0.58.0",
"scripts": {
"dev": "nodemon",
"build": "tsc && webpack --mode=production",
Expand Down
4 changes: 2 additions & 2 deletions services/backend/src/config/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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'
};

Expand Down
Loading