Skip to content

Commit a69b700

Browse files
authored
Merge pull request #779 from mjsterckx/changelog006
Prepare v0.0.6 release
2 parents 3229853 + f5b7008 commit a69b700

File tree

15 files changed

+106
-54
lines changed

15 files changed

+106
-54
lines changed

CHANGELOG.md

Lines changed: 53 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,59 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66

77
## [Unreleased]
88

9+
## [0.0.6] - 2023-03-03
10+
11+
### Fixed
12+
13+
- Add category field to allow getting all testsys objects ([#726])
14+
- TestManager: Simplify code for `cargo make test` ([#742])
15+
- TestManager: Block on uninstall for namespace ([#745])
16+
- Added check to make sure that `metadata_url` ends with `/` ([#765])
17+
- TestManager: Ensure no resources for uninstall ([#770])
18+
- Agents: Fix snake case for EksctlConfig ([#744])
19+
20+
### Added
21+
22+
- ECS workload testing agent ([#725])
23+
- Sample test config files ([#740], [#750], [#756], [#760])
24+
- Sample Makefile.toml ([#751], [#761], [#771], [#772])
25+
- Support for `assume_role` in workload agents ([#752])
26+
- Metal k8s resource provider ([#773])
27+
28+
### Changed
29+
30+
- `run-instances` now uses IMDSv2 ([#753])
31+
- Renamed the `model` crate to `testsys-model` ([#755])
32+
33+
### Removed
34+
35+
- `bottlerocket/testsys` ([#754], [#759])
36+
37+
[#726]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/726
38+
[#725]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/725
39+
[#742]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/742
40+
[#740]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/740
41+
[#744]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/744
42+
[#745]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/745
43+
[#750]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/750
44+
[#751]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/751
45+
[#752]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/752
46+
[#753]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/753
47+
[#754]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/754
48+
[#755]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/755
49+
[#756]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/756
50+
[#759]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/759
51+
[#760]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/760
52+
[#761]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/761
53+
[#765]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/765
54+
[#770]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/770
55+
[#771]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/771
56+
[#772]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/772
57+
[#773]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/773
58+
59+
[0.0.6]: https://github.com/bottlerocket-os/bottlerocket-test-system/tree/v0.0.6
60+
[Unreleased]: https://github.com/bottlerocket-os/bottlerocket-test-system/compare/v0.0.6...develop
61+
962
## [0.0.5] - 2022-12-20
1063

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

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

2577
## [0.0.4] - 2022-12-15
2678

Cargo.lock

Lines changed: 13 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

agent/agent-common/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "agent-common"
3-
version = "0.0.5"
3+
version = "0.0.6"
44
edition = "2021"
55
publish = false
66
license = "MIT OR Apache-2.0"
77

88
[dependencies]
9-
testsys-model = { version = "0.0.5", path = "../../model" }
9+
testsys-model = { version = "0.0.6", path = "../../model" }
1010
snafu = "0.7"
1111

1212
[dev-dependencies]

agent/builder-derive/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "builder-derive"
3-
version = "0.0.5"
3+
version = "0.0.6"
44
edition = "2018"
55
publish = false
66
license = "MIT OR Apache-2.0"
@@ -17,5 +17,5 @@ proc-macro = true
1717
[dev-dependencies]
1818
serde = "1"
1919
serde_json= "1"
20-
testsys-model = { version = "0.0.5", path = "../../model" }
21-
configuration-derive = { version = "0.0.5", path = "../configuration-derive" }
20+
testsys-model = { version = "0.0.6", path = "../../model" }
21+
configuration-derive = { version = "0.0.6", path = "../configuration-derive" }

agent/configuration-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "configuration-derive"
3-
version = "0.0.5"
3+
version = "0.0.6"
44
edition = "2018"
55
publish = false
66
license = "MIT OR Apache-2.0"

agent/resource-agent/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[package]
22
name = "resource-agent"
3-
version = "0.0.5"
3+
version = "0.0.6"
44
edition = "2021"
55
publish = false
66
license = "MIT OR Apache-2.0"
77

88
[dependencies]
9-
agent-common = { version = "0.0.5", path = "../agent-common" }
9+
agent-common = { version = "0.0.6", path = "../agent-common" }
1010
async-trait = "0.1"
1111
log = "0.4"
12-
testsys-model = { version = "0.0.5", path = "../../model" }
12+
testsys-model = { version = "0.0.6", path = "../../model" }
1313
serde = { version = "1", features = ["derive"] }
1414
serde_json = "1"
1515
snafu = "0.7"

agent/test-agent-cli/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
[package]
22
name = "test-agent-cli"
3-
version = "0.0.5"
3+
version = "0.0.6"
44
edition = "2021"
55
publish = false
66
license = "MIT OR Apache-2.0"
77

88
[dependencies]
99
argh = "0.1"
10-
agent-common = { version = "0.0.5", path = "../agent-common" }
10+
agent-common = { version = "0.0.6", path = "../agent-common" }
1111
copy_dir = "0.1"
12-
test-agent = { version = "0.0.5", path = "../test-agent" }
12+
test-agent = { version = "0.0.6", path = "../test-agent" }
1313
tokio = { version = "1", features = ["macros", "rt-multi-thread", "fs"] }
1414
tokio-util = "0.7"
1515
log = "0.4"
16-
testsys-model = { version = "0.0.5", path = "../../model" }
16+
testsys-model = { version = "0.0.6", path = "../../model" }
1717
snafu = "0.7"
1818
async-trait = "0.1"
1919
tempfile = "3"
@@ -26,4 +26,4 @@ tar = "0.4"
2626

2727
[dev-dependencies]
2828
assert_cmd = "2"
29-
selftest = { version = "0.0.5", path = "../../selftest" }
29+
selftest = { version = "0.0.6", path = "../../selftest" }

agent/test-agent/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[package]
22
name = "test-agent"
3-
version = "0.0.5"
3+
version = "0.0.6"
44
edition = "2021"
55
publish = false
66
license = "MIT OR Apache-2.0"
77

88
[dependencies]
9-
agent-common = { version = "0.0.5", path = "../agent-common" }
9+
agent-common = { version = "0.0.6", path = "../agent-common" }
1010
async-trait = "0.1"
1111
log = "0.4"
12-
testsys-model = { version = "0.0.5", path = "../../model" }
12+
testsys-model = { version = "0.0.6", path = "../../model" }
1313
serde = { version = "1", features = ["derive"] }
1414
serde_json = "1"
1515
snafu = "0.7"

agent/utils/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "agent-utils"
3-
version = "0.0.5"
3+
version = "0.0.6"
44
edition = "2018"
55
publish = false
66
license = "MIT OR Apache-2.0"
77

88
[dependencies]
9-
agent-common = { version = "0.0.5", path = "../../agent/agent-common" }
9+
agent-common = { version = "0.0.6", path = "../../agent/agent-common" }
1010
aws-config = "0.54"
1111
aws-credential-types = "0.54"
1212
aws-types = "0.54"
@@ -17,9 +17,9 @@ aws-smithy-types = "0.54"
1717
base64 = "0.20"
1818
env_logger = "0.10"
1919
log = "0.4"
20-
testsys-model = { version = "0.0.5", path = "../../model" }
21-
resource-agent = { version = "0.0.5", path = "../../agent/resource-agent" }
20+
testsys-model = { version = "0.0.6", path = "../../model" }
21+
resource-agent = { version = "0.0.6", path = "../../agent/resource-agent" }
2222
serde = { version = "1", features = ["derive"] }
2323
serde_json = "1"
2424
snafu = "0.7"
25-
test-agent = { version = "0.0.5", path = "../../agent/test-agent" }
25+
test-agent = { version = "0.0.6", path = "../../agent/test-agent" }

bottlerocket/agents/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "bottlerocket-agents"
3-
version = "0.0.5"
3+
version = "0.0.6"
44
edition = "2018"
55
publish = false
66
license = "MIT OR Apache-2.0"
77

88
[dependencies]
9-
agent-common = { version = "0.0.5", path = "../../agent/agent-common" }
10-
agent-utils = { version = "0.0.5", path = "../../agent/utils" }
11-
bottlerocket-types = { version = "0.0.5", path = "../types" }
9+
agent-common = { version = "0.0.6", path = "../../agent/agent-common" }
10+
agent-utils = { version = "0.0.6", path = "../../agent/utils" }
11+
bottlerocket-types = { version = "0.0.6", path = "../types" }
1212
async-trait = "0.1"
1313
aws-config = "0.54"
1414
aws-types = "0.54"
@@ -27,16 +27,16 @@ kube = { version = "0.78", default-features = false, features = ["config", "deri
2727
log = "0.4"
2828
maplit = "1"
2929
openssh = { version = "0.9", features = ["native-mux"] }
30-
testsys-model = { version = "0.0.5", path = "../../model" }
30+
testsys-model = { version = "0.0.6", path = "../../model" }
3131
reqwest = { version = "0.11", default-features = false, features = ["rustls-tls", "blocking"] }
32-
resource-agent = { version = "0.0.5", path = "../../agent/resource-agent" }
32+
resource-agent = { version = "0.0.6", path = "../../agent/resource-agent" }
3333
serde = { version = "1", features = ["derive"] }
3434
serde_json = "1"
3535
serde_plain = "1"
3636
serde_yaml = "0.8"
3737
sha2 = "0.10"
3838
snafu = "0.7"
39-
test-agent = { version = "0.0.5", path = "../../agent/test-agent" }
39+
test-agent = { version = "0.0.6", path = "../../agent/test-agent" }
4040
tokio = { version = "1", default-features = false, features = ["macros", "rt-multi-thread", "time"] }
4141
toml = "0.5"
4242
tough = { version = "0.12", features = ["http"] }

0 commit comments

Comments
 (0)