Skip to content

Commit

Permalink
release: 0.11.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Levente Orban committed Apr 5, 2024
1 parent 43d7587 commit da81625
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 9 deletions.
23 changes: 22 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,29 @@
# CHANGELOG


<a name="0.11.5"></a>
## [0.11.5](https://github.com/dyrector-io/dyrectorio/compare/help...0.11.5) (0001-01-01)


<a name="help"></a>
## [help](https://github.com/dyrector-io/dyrectorio/compare/0.11.4...help) (2024-04-05)

### Feat

* add agent proto compatibility version update to make release ([#946](https://github.com/dyrector-io/dyrectorio/issues/946))
* add error handling for agent callbacks ([#944](https://github.com/dyrector-io/dyrectorio/issues/944))

### Fix

* agent token replacement status ([#945](https://github.com/dyrector-io/dyrectorio/issues/945))
* **(crux):** improve log API description ([#943](https://github.com/dyrector-io/dyrectorio/issues/943))
* **(web):** node container log stream sharing ([#942](https://github.com/dyrector-io/dyrectorio/issues/942))
* websocket authentication with user tokens ([#941](https://github.com/dyrector-io/dyrectorio/issues/941))
* add ENCRYPTION_SECRET_KEY to root .env.example ([#940](https://github.com/dyrector-io/dyrectorio/issues/940))


<a name="0.11.4"></a>
## [0.11.4](https://github.com/dyrector-io/dyrectorio/compare/0.11.3...0.11.4) (2024-03-24)
## [0.11.4](https://github.com/dyrector-io/dyrectorio/compare/0.11.3...0.11.4) (2024-03-25)

### Feat

Expand Down
2 changes: 1 addition & 1 deletion golang/internal/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (

var (
// Version represents the version of the application
Version = "0.11.4"
Version = "0.11.5"
// CommitHash is the hash of the commit used for the build
CommitHash = "n/a"
// BuildTimestamp represents the timestamp when the build was created
Expand Down
4 changes: 2 additions & 2 deletions web/crux-ui/package-lock.json

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

2 changes: 1 addition & 1 deletion web/crux-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "crux-ui",
"version": "0.11.4",
"version": "0.11.5",
"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,
Expand Down
4 changes: 2 additions & 2 deletions web/crux/package-lock.json

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

2 changes: 1 addition & 1 deletion web/crux/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "crux",
"version": "0.11.4",
"version": "0.11.5",
"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,
Expand Down
2 changes: 1 addition & 1 deletion web/crux/src/shared/const.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const AGENT_STREAM_TIMEOUT = 60_000
export const GET_CONTAINER_LOG_DEFAULT_TAKE = 100

// NOTE(@m8vago): This should be incremented, when a new release includes a proto file change
const AGENT_PROTO_COMPATIBILITY_MINIMUM_VERSION = '0.11.0'
const AGENT_PROTO_COMPATIBILITY_MINIMUM_VERSION = '0.11.5'
export const AGENT_SUPPORTED_MINIMUM_VERSION = coerce(AGENT_PROTO_COMPATIBILITY_MINIMUM_VERSION)

export const API_CREATED_LOCATION_HEADERS = {
Expand Down

0 comments on commit da81625

Please sign in to comment.