Skip to content

Commit

Permalink
Bumped project to 0.5.0
Browse files Browse the repository at this point in the history
Former-commit-id: a5d84fb
  • Loading branch information
Lut99 committed Feb 10, 2022
1 parent e3ff11d commit 854cd4c
Show file tree
Hide file tree
Showing 18 changed files with 57 additions and 33 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,29 @@

All notable changes to the Brane framework will be documented in this file.

## [0.5.0] - 2022-02-10
### Added
- '/health' path in brane-api to follow tutorial more closely
- Names for Brane service containers to allow more easy interaction
- A lot of additional error catching and reporting across the entire project (but still a lot to do)
- VM now properly returning internal errors to the user (when running either locally or remotely)

### Changed
- The project is now being worked on by a new owner (Tim, pleased to meet you)
- Version can now be omitted when pushing, defaulting to the latest version instead
- Version can now be specified more intuitively when removing a package
- Streamlined naming of 'ecu' packages; all naming of them as 'code' has been changed to 'ecu'
- Compiling Brane for development purposes. It's now possible to cross-compile locally on a shared Docker partition (saving a lot of time on macOS), meaning that it doesn't have to rebuild from scratch every time the containers are launched

### Fixed
- Clamp not compiling anymore; using StructOpt in most cases instead
- Branelet not being able to run OpenAPI package properly due to incorrectly replacing URL values (expected '{' and '}', but actually got '%7B' and '%7D')
- Containers not being able to reach each other due to incorrect IPs (most assumed '127.0.0.1', but this only worked for thing outside of Docker)
- Brane-job causing the Docker engine to connect to '127.0.0.1:5000/127.0.0.1:5000'; removed one of the two hostnames (specifically, the one in brane-job itself)
- Network 'kind' not being found; changed it to 'brane' in the default infra.yml, as this is also the network name used in the Docker Compose files
- The type of an Array not being resolved properly, causing to error down the line due to incompatible types (while they in fact are)
- VM crashing whenever the job returned no output

## [0.4.1] - 2021-08-16
### Fixed
- Disable debug logging from within WaitUntil future.
Expand Down
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,4 @@ members = [
"brane-shr",
"specifications",
]
version = "0.5.0"
4 changes: 2 additions & 2 deletions brane-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "brane-api"
version = "0.4.1"
authors = ["Onno Valkering"]
version = "0.5.0"
authors = ["Onno Valkering", "Tim Müller"]
edition = "2018"

[dependencies]
Expand Down
4 changes: 2 additions & 2 deletions brane-bvm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "brane-bvm"
version = "0.4.1"
authors = ["Onno Valkering"]
version = "0.5.0"
authors = ["Onno Valkering", "Tim Müller"]
edition = "2018"

[dependencies]
Expand Down
4 changes: 2 additions & 2 deletions brane-cfg/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "brane-cfg"
version = "0.4.1"
authors = ["Onno Valkering"]
version = "0.5.0"
authors = ["Onno Valkering", "Tim Müller"]
edition = "2018"

[dependencies]
Expand Down
4 changes: 2 additions & 2 deletions brane-clb/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "brane-clb"
version = "0.4.1"
authors = ["Onno Valkering"]
version = "0.5.0"
authors = ["Onno Valkering", "Tim Müller"]
edition = "2018"

[dependencies]
Expand Down
4 changes: 2 additions & 2 deletions brane-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "brane-cli"
version = "0.4.1"
authors = ["Onno Valkering"]
version = "0.5.0"
authors = ["Onno Valkering", "Tim Müller"]
edition = "2018"

[[bin]]
Expand Down
4 changes: 2 additions & 2 deletions brane-drv/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "brane-drv"
version = "0.4.1"
authors = ["Onno Valkering"]
version = "0.5.0"
authors = ["Onno Valkering", "Tim Müller"]
edition = "2018"

[dependencies]
Expand Down
4 changes: 2 additions & 2 deletions brane-dsl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "brane-dsl"
version = "0.4.1"
authors = ["Onno Valkering"]
version = "0.5.0"
authors = ["Onno Valkering", "Tim Müller"]
edition = "2018"

[dependencies]
Expand Down
4 changes: 2 additions & 2 deletions brane-job/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "brane-job"
version = "0.4.1"
authors = ["Onno Valkering"]
version = "0.5.0"
authors = ["Onno Valkering", "Tim Müller"]
edition = "2018"

[dependencies]
Expand Down
4 changes: 2 additions & 2 deletions brane-let/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "brane-let"
version = "0.4.1"
authors = ["Onno Valkering"]
version = "0.5.0"
authors = ["Onno Valkering", "Tim Müller"]
edition = "2018"

[[bin]]
Expand Down
4 changes: 2 additions & 2 deletions brane-log/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "brane-log"
version = "0.4.1"
authors = ["Onno Valkering"]
version = "0.5.0"
authors = ["Onno Valkering", "Tim Müller"]
edition = "2018"

[dependencies]
Expand Down
4 changes: 2 additions & 2 deletions brane-net/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "brane-net"
version = "0.4.1"
authors = ["Onno Valkering"]
version = "0.5.0"
authors = ["Onno Valkering", "Tim Müller"]
edition = "2018"

[dependencies]
Expand Down
4 changes: 2 additions & 2 deletions brane-oas/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "brane-oas"
version = "0.4.1"
authors = ["Onno Valkering"]
version = "0.5.0"
authors = ["Onno Valkering", "Tim Müller"]
edition = "2018"

[dependencies]
Expand Down
4 changes: 2 additions & 2 deletions brane-plr/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "brane-plr"
version = "0.4.1"
authors = ["Onno Valkering"]
version = "0.5.0"
authors = ["Onno Valkering", "Tim Müller"]
edition = "2018"

[dependencies]
Expand Down
4 changes: 2 additions & 2 deletions brane-shr/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "brane-shr"
version = "0.4.1"
authors = ["Onno Valkering"]
version = "0.5.0"
authors = ["Onno Valkering", "Tim Müller"]
edition = "2018"

[dependencies]
Expand Down
6 changes: 3 additions & 3 deletions infra_brane2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ locations:
hpc:
kind: vm
address: brane02.lab.uvalight.net:22
registry: "127.0.0.1:5000"
callback_to: "http://brane-clb:50052"
mount_dfs: "redis://redis"
registry: "brane01.lab.uvalight.net:5000"
callback_to: "http://brane01.lab.uvalight.net:50052"
mount_dfs: "redis://brane01.lab.uvalight.net"
runtime: docker
credentials:
mechanism: ssh-certificate
Expand Down
4 changes: 2 additions & 2 deletions specifications/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "specifications"
version = "0.4.1"
authors = ["Onno Valkering"]
version = "0.5.0"
authors = ["Onno Valkering", "Tim Müller"]
edition = "2018"

[dependencies]
Expand Down

0 comments on commit 854cd4c

Please sign in to comment.