diff --git a/CHANGELOG.md b/CHANGELOG.md index bed129ab5..563503f7e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,30 @@ # CHANGELOG + +## [0.11.0](https://github.com/dyrector-io/dyrectorio/compare/0.10.0...0.11.0) (2024-02-13) + +### Feat + +* container expected state ([#891](https://github.com/dyrector-io/dyrectorio/issues/891)) +* **(web):** pipeline event watchers ([#905](https://github.com/dyrector-io/dyrectorio/issues/905)) +* **(web):** pipelines ([#900](https://github.com/dyrector-io/dyrectorio/issues/900)) +* **(web):** add image push and pull to notifications ([#897](https://github.com/dyrector-io/dyrectorio/issues/897)) +* adds crux coverage to codecov ([#898](https://github.com/dyrector-io/dyrectorio/issues/898)) +* **(web):** add encryption for third party credentials ([#892](https://github.com/dyrector-io/dyrectorio/issues/892)) +* COAL ([#878](https://github.com/dyrector-io/dyrectorio/issues/878)) + +### Fix + +* pipeline related bugs ([#907](https://github.com/dyrector-io/dyrectorio/issues/907)) +* missing teamslug from pipeline hooks ([#906](https://github.com/dyrector-io/dyrectorio/issues/906)) +* **(crux):** pipelines migration +* **(web):** v2 manifest list & yup translate error ([#896](https://github.com/dyrector-io/dyrectorio/issues/896)) +* **(crux):** coal label parser typo ([#895](https://github.com/dyrector-io/dyrectorio/issues/895)) +* **(crux):** crash while selecting tag for images without an environment ([#894](https://github.com/dyrector-io/dyrectorio/issues/894)) +* **(crux-ui):** hide change credentials field when creating a registry or storage ([#893](https://github.com/dyrector-io/dyrectorio/issues/893)) + + ## [0.10.0](https://github.com/dyrector-io/dyrectorio/compare/0.9.0...0.10.0) (2023-12-04) diff --git a/golang/internal/version/version.go b/golang/internal/version/version.go index 0c5241a78..8a1ab0664 100644 --- a/golang/internal/version/version.go +++ b/golang/internal/version/version.go @@ -6,7 +6,7 @@ import ( var ( // Version represents the version of the application - Version = "0.10.0" + Version = "0.11.0" // CommitHash is the hash of the commit used for the build CommitHash = "n/a" // BuildTimestamp represents the timestamp when the build was created diff --git a/web/crux-ui/package-lock.json b/web/crux-ui/package-lock.json index 53fff451d..643d9120a 100644 --- a/web/crux-ui/package-lock.json +++ b/web/crux-ui/package-lock.json @@ -1,12 +1,12 @@ { "name": "crux-ui", - "version": "0.10.0", + "version": "0.11.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "crux-ui", - "version": "0.10.0", + "version": "0.11.0", "license": "Apache-2.0", "dependencies": { "@ory/kratos-client": "^0.13.1", diff --git a/web/crux-ui/package.json b/web/crux-ui/package.json index 0a65a3bef..379e7608f 100644 --- a/web/crux-ui/package.json +++ b/web/crux-ui/package.json @@ -1,6 +1,6 @@ { "name": "crux-ui", - "version": "0.10.0", + "version": "0.11.0", "description": "Open-source delivery platform that helps developers to deliver applications efficiently by simplifying software releases and operations in any environment.", "author": "dyrector.io", "private": true, diff --git a/web/crux/package-lock.json b/web/crux/package-lock.json index 5e50b0222..3af8d71e0 100644 --- a/web/crux/package-lock.json +++ b/web/crux/package-lock.json @@ -1,12 +1,12 @@ { "name": "crux", - "version": "0.10.0", + "version": "0.11.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "crux", - "version": "0.10.0", + "version": "0.11.0", "license": "Apache-2.0", "dependencies": { "@grpc/grpc-js": "^1.9.0", diff --git a/web/crux/package.json b/web/crux/package.json index 473c876a6..bf521a67c 100644 --- a/web/crux/package.json +++ b/web/crux/package.json @@ -1,6 +1,6 @@ { "name": "crux", - "version": "0.10.0", + "version": "0.11.0", "description": "Open-source delivery platform that helps developers to deliver applications efficiently by simplifying software releases and operations in any environment.", "author": "dyrector.io", "private": true,