Skip to content

[Backend Release] v0.28.0 #169

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 7, 2025
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
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 19 additions & 0 deletions services/backend/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Changelog

## 0.28.0 (2025-08-07)

* remove scoped commit implementation documentation ([8311fc8](https://github.com/deploystackio/deploystack/commit/8311fc89c5c7c6ca4944c0f7040275e00d5170b9))
* add paths for backend catalog and dereferenced data ([9af5c3e](https://github.com/deploystackio/deploystack/commit/9af5c3e0ec37f85d671ea2c2bbc1b096779b0940))
* Implement session management and SSE handling ([cb58e53](https://github.com/deploystackio/deploystack/commit/cb58e538b8b6927e30c175ed979708aa89170c5c))
* implement scoped commit message guidelines and templates ([a6839b8](https://github.com/deploystackio/deploystack/commit/a6839b880248a35a213cfb44f19ec29c0b9553cc))
* update README with new links and SVG assets ([704799c](https://github.com/deploystackio/deploystack/commit/704799c34ef1d67824b5a1911d14ae148b0f4b15))
* add OAuth2 UserInfo endpoint for user information retrieval ([0493bec](https://github.com/deploystackio/deploystack/commit/0493becac71e16909912e262e90c403a5bbac5ed))
* add response type validation in OAuth2 authorization ([f8b82b1](https://github.com/deploystackio/deploystack/commit/f8b82b1237356d86af1c890a4bb50fcb1e6cc0bd))
* add userinfo route and extend token expiration to 1 week ([2660d2e](https://github.com/deploystackio/deploystack/commit/2660d2e8a2f83ece50ac045c59d862e84519ddac))
* enhance API documentation for authentication methods ([237b590](https://github.com/deploystackio/deploystack/commit/237b59003041e4f6e1a1b8b69a5077786b504f9b))
* enhance API spec with health check and consent details ([56282e9](https://github.com/deploystackio/deploystack/commit/56282e988ecd8a3ec8aab1aa17d51365ed9e4449))
* Implement OAuth2 consent flow with detailed consent management ([a9ae782](https://github.com/deploystackio/deploystack/commit/a9ae7823ff27129f1a5bee54baba2f3bba678998))
* skip OAuth scope validation for cookie-based authentication ([5ffa12c](https://github.com/deploystackio/deploystack/commit/5ffa12cc415e610ae67eb773a44d931b2e3e9d03))
* update cloud credential tests for GCP provider ([666ce2d](https://github.com/deploystackio/deploystack/commit/666ce2d6123077c3a9f5d023d1f8f9134768d0d4))
* update README links for better formatting ([ba15434](https://github.com/deploystackio/deploystack/commit/ba15434bd65f371d9ad39576a56a923a9040f74e))
* remove unnecessary whitespace in registerRoutes function ([1c6dd17](https://github.com/deploystackio/deploystack/commit/1c6dd17dfc9663bfc648e54cc24e698b8a43b2bb))
* simplify token handling in TokenService ([16f177b](https://github.com/deploystackio/deploystack/commit/16f177bf41234554595e7352808e2f87ab9a0d09))

## <small>0.27.1 (2025-07-26)</small>

* bump @libsql/client from 0.15.9 to 0.15.10 ([908efef](https://github.com/deploystackio/deploystack/commit/908efefe920ad03cd859e17c9df9a2e52493e99b))
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.27.1",
"version": "0.28.0",
"scripts": {
"dev": "nodemon",
"build": "tsc",
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.27.0',
buildTime: '2025-07-26T12:13:45.744Z',
version: '0.28.0',
buildTime: '2025-08-07T15:48:45.540Z',
source: 'release'
};

Expand Down