Skip to content

Commit

Permalink
Merge pull request #779 from mjsterckx/changelog006
Browse files Browse the repository at this point in the history
Prepare v0.0.6 release
  • Loading branch information
mjsterckx authored Mar 7, 2023
2 parents 3229853 + f5b7008 commit a69b700
Show file tree
Hide file tree
Showing 15 changed files with 106 additions and 54 deletions.
54 changes: 53 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,59 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [Unreleased]

## [0.0.6] - 2023-03-03

### Fixed

- Add category field to allow getting all testsys objects ([#726])
- TestManager: Simplify code for `cargo make test` ([#742])
- TestManager: Block on uninstall for namespace ([#745])
- Added check to make sure that `metadata_url` ends with `/` ([#765])
- TestManager: Ensure no resources for uninstall ([#770])
- Agents: Fix snake case for EksctlConfig ([#744])

### Added

- ECS workload testing agent ([#725])
- Sample test config files ([#740], [#750], [#756], [#760])
- Sample Makefile.toml ([#751], [#761], [#771], [#772])
- Support for `assume_role` in workload agents ([#752])
- Metal k8s resource provider ([#773])

### Changed

- `run-instances` now uses IMDSv2 ([#753])
- Renamed the `model` crate to `testsys-model` ([#755])

### Removed

- `bottlerocket/testsys` ([#754], [#759])

[#726]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/726
[#725]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/725
[#742]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/742
[#740]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/740
[#744]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/744
[#745]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/745
[#750]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/750
[#751]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/751
[#752]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/752
[#753]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/753
[#754]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/754
[#755]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/755
[#756]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/756
[#759]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/759
[#760]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/760
[#761]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/761
[#765]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/765
[#770]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/770
[#771]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/771
[#772]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/772
[#773]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/773

[0.0.6]: https://github.com/bottlerocket-os/bottlerocket-test-system/tree/v0.0.6
[Unreleased]: https://github.com/bottlerocket-os/bottlerocket-test-system/compare/v0.0.6...develop

## [0.0.5] - 2022-12-20

### Fixed
Expand All @@ -20,7 +73,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
[#720]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/720

[0.0.5]: https://github.com/bottlerocket-os/bottlerocket-test-system/tree/v0.0.5
[Unreleased]: https://github.com/bottlerocket-os/bottlerocket-test-system/compare/v0.0.5...develop

## [0.0.4] - 2022-12-15

Expand Down
26 changes: 13 additions & 13 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions agent/agent-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "agent-common"
version = "0.0.5"
version = "0.0.6"
edition = "2021"
publish = false
license = "MIT OR Apache-2.0"

[dependencies]
testsys-model = { version = "0.0.5", path = "../../model" }
testsys-model = { version = "0.0.6", path = "../../model" }
snafu = "0.7"

[dev-dependencies]
Expand Down
6 changes: 3 additions & 3 deletions agent/builder-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "builder-derive"
version = "0.0.5"
version = "0.0.6"
edition = "2018"
publish = false
license = "MIT OR Apache-2.0"
Expand All @@ -17,5 +17,5 @@ proc-macro = true
[dev-dependencies]
serde = "1"
serde_json= "1"
testsys-model = { version = "0.0.5", path = "../../model" }
configuration-derive = { version = "0.0.5", path = "../configuration-derive" }
testsys-model = { version = "0.0.6", path = "../../model" }
configuration-derive = { version = "0.0.6", path = "../configuration-derive" }
2 changes: 1 addition & 1 deletion agent/configuration-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "configuration-derive"
version = "0.0.5"
version = "0.0.6"
edition = "2018"
publish = false
license = "MIT OR Apache-2.0"
Expand Down
6 changes: 3 additions & 3 deletions agent/resource-agent/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "resource-agent"
version = "0.0.5"
version = "0.0.6"
edition = "2021"
publish = false
license = "MIT OR Apache-2.0"

[dependencies]
agent-common = { version = "0.0.5", path = "../agent-common" }
agent-common = { version = "0.0.6", path = "../agent-common" }
async-trait = "0.1"
log = "0.4"
testsys-model = { version = "0.0.5", path = "../../model" }
testsys-model = { version = "0.0.6", path = "../../model" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
snafu = "0.7"
Expand Down
10 changes: 5 additions & 5 deletions agent/test-agent-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
[package]
name = "test-agent-cli"
version = "0.0.5"
version = "0.0.6"
edition = "2021"
publish = false
license = "MIT OR Apache-2.0"

[dependencies]
argh = "0.1"
agent-common = { version = "0.0.5", path = "../agent-common" }
agent-common = { version = "0.0.6", path = "../agent-common" }
copy_dir = "0.1"
test-agent = { version = "0.0.5", path = "../test-agent" }
test-agent = { version = "0.0.6", path = "../test-agent" }
tokio = { version = "1", features = ["macros", "rt-multi-thread", "fs"] }
tokio-util = "0.7"
log = "0.4"
testsys-model = { version = "0.0.5", path = "../../model" }
testsys-model = { version = "0.0.6", path = "../../model" }
snafu = "0.7"
async-trait = "0.1"
tempfile = "3"
Expand All @@ -26,4 +26,4 @@ tar = "0.4"

[dev-dependencies]
assert_cmd = "2"
selftest = { version = "0.0.5", path = "../../selftest" }
selftest = { version = "0.0.6", path = "../../selftest" }
6 changes: 3 additions & 3 deletions agent/test-agent/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "test-agent"
version = "0.0.5"
version = "0.0.6"
edition = "2021"
publish = false
license = "MIT OR Apache-2.0"

[dependencies]
agent-common = { version = "0.0.5", path = "../agent-common" }
agent-common = { version = "0.0.6", path = "../agent-common" }
async-trait = "0.1"
log = "0.4"
testsys-model = { version = "0.0.5", path = "../../model" }
testsys-model = { version = "0.0.6", path = "../../model" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
snafu = "0.7"
Expand Down
10 changes: 5 additions & 5 deletions agent/utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "agent-utils"
version = "0.0.5"
version = "0.0.6"
edition = "2018"
publish = false
license = "MIT OR Apache-2.0"

[dependencies]
agent-common = { version = "0.0.5", path = "../../agent/agent-common" }
agent-common = { version = "0.0.6", path = "../../agent/agent-common" }
aws-config = "0.54"
aws-credential-types = "0.54"
aws-types = "0.54"
Expand All @@ -17,9 +17,9 @@ aws-smithy-types = "0.54"
base64 = "0.20"
env_logger = "0.10"
log = "0.4"
testsys-model = { version = "0.0.5", path = "../../model" }
resource-agent = { version = "0.0.5", path = "../../agent/resource-agent" }
testsys-model = { version = "0.0.6", path = "../../model" }
resource-agent = { version = "0.0.6", path = "../../agent/resource-agent" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
snafu = "0.7"
test-agent = { version = "0.0.5", path = "../../agent/test-agent" }
test-agent = { version = "0.0.6", path = "../../agent/test-agent" }
14 changes: 7 additions & 7 deletions bottlerocket/agents/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "bottlerocket-agents"
version = "0.0.5"
version = "0.0.6"
edition = "2018"
publish = false
license = "MIT OR Apache-2.0"

[dependencies]
agent-common = { version = "0.0.5", path = "../../agent/agent-common" }
agent-utils = { version = "0.0.5", path = "../../agent/utils" }
bottlerocket-types = { version = "0.0.5", path = "../types" }
agent-common = { version = "0.0.6", path = "../../agent/agent-common" }
agent-utils = { version = "0.0.6", path = "../../agent/utils" }
bottlerocket-types = { version = "0.0.6", path = "../types" }
async-trait = "0.1"
aws-config = "0.54"
aws-types = "0.54"
Expand All @@ -27,16 +27,16 @@ kube = { version = "0.78", default-features = false, features = ["config", "deri
log = "0.4"
maplit = "1"
openssh = { version = "0.9", features = ["native-mux"] }
testsys-model = { version = "0.0.5", path = "../../model" }
testsys-model = { version = "0.0.6", path = "../../model" }
reqwest = { version = "0.11", default-features = false, features = ["rustls-tls", "blocking"] }
resource-agent = { version = "0.0.5", path = "../../agent/resource-agent" }
resource-agent = { version = "0.0.6", path = "../../agent/resource-agent" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_plain = "1"
serde_yaml = "0.8"
sha2 = "0.10"
snafu = "0.7"
test-agent = { version = "0.0.5", path = "../../agent/test-agent" }
test-agent = { version = "0.0.6", path = "../../agent/test-agent" }
tokio = { version = "1", default-features = false, features = ["macros", "rt-multi-thread", "time"] }
toml = "0.5"
tough = { version = "0.12", features = ["http"] }
Expand Down
8 changes: 4 additions & 4 deletions bottlerocket/types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "bottlerocket-types"
version = "0.0.5"
version = "0.0.6"
edition = "2018"
publish = false
license = "MIT OR Apache-2.0"

[dependencies]
configuration-derive = { version = "0.0.5", path = "../../agent/configuration-derive" }
builder-derive = { version = "0.0.5", path = "../../agent/builder-derive" }
testsys-model = { version = "0.0.5", path = "../../model" }
configuration-derive = { version = "0.0.6", path = "../../agent/configuration-derive" }
builder-derive = { version = "0.0.6", path = "../../agent/builder-derive" }
testsys-model = { version = "0.0.6", path = "../../model" }
serde = "1"
serde_plain = "1"
serde_yaml = "0.8"
Expand Down
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cli"
version = "0.0.5"
version = "0.0.6"
edition = "2021"
publish = false
license = "MIT OR Apache-2.0"
Expand Down
Loading

0 comments on commit a69b700

Please sign in to comment.