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
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.

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

## 0.22.0 (2025-07-07)

* ([7b3b275](https://github.com/deploystackio/deploystack/commit/7b3b275347df10b3f30b0e21dd2457e7c63a6d6a))

## <small>0.21.1 (2025-07-06)</small>

* 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))
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.21.1",
"version": "0.22.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.21.0',
buildTime: '2025-07-06T21:03:35.176Z',
version: '0.22.0',
buildTime: '2025-07-07T19:08:15.420Z',
source: 'release'
};

Expand Down