Skip to content

Commit

Permalink
release: 0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Levente Orban committed Sep 7, 2023
1 parent 309a1f1 commit 4b07d7a
Show file tree
Hide file tree
Showing 7 changed files with 36 additions and 9 deletions.
29 changes: 28 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,35 @@
# CHANGELOG


<a name="0.8.1"></a>
## [0.8.1](https://github.com/dyrector-io/dyrectorio/compare/0.8.0...0.8.1) (2023-09-07)

### Doc

* update readme ([#802](https://github.com/dyrector-io/dyrectorio/issues/802))

### Feat

* add explicit port routing & go tools bump ([#808](https://github.com/dyrector-io/dyrectorio/issues/808))
* **(crux-ui):** useEffect submitRef update ([#806](https://github.com/dyrector-io/dyrectorio/issues/806))
* service category label for platform containers & hide containers based on category ([#807](https://github.com/dyrector-io/dyrectorio/issues/807))
* oneshot agent install tokens ([#796](https://github.com/dyrector-io/dyrectorio/issues/796))

### Fix

* **(crux):** floating promises ([#814](https://github.com/dyrector-io/dyrectorio/issues/814))
* missing translations in lists ([#811](https://github.com/dyrector-io/dyrectorio/issues/811))
* **(web):** validate container name duplication ([#812](https://github.com/dyrector-io/dyrectorio/issues/812))
* port range exposing and various bugfixes ([#809](https://github.com/dyrector-io/dyrectorio/issues/809))
* **(ci):** fix the trailing whitespace error ([#804](https://github.com/dyrector-io/dyrectorio/issues/804))

### Refactor

* **(web):** optimize ws client routing ([#810](https://github.com/dyrector-io/dyrectorio/issues/810))


<a name="0.8.0"></a>
## [0.8.0](https://github.com/dyrector-io/dyrectorio/compare/0.7.0...0.8.0) (2023-08-30)
## [0.8.0](https://github.com/dyrector-io/dyrectorio/compare/0.7.0...0.8.0) (2023-08-31)

### Chore

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.8.0"
Version = "0.8.1"
// 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.8.0",
"version": "0.8.1",
"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.8.0",
"version": "0.8.1",
"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 @@ -19,7 +19,7 @@ export const CONTAINER_DELETE_TIMEOUT = 1000 // millis
export const DEFAULT_CONTAINER_LOG_TAIL = 40

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

export const API_CREATED_LOCATION_HEADERS = {
Expand Down

0 comments on commit 4b07d7a

Please sign in to comment.