Skip to content

Commit 241f73d

Browse files
authored
Merge pull request #815 from ecpullen/testsys-0.0.7
prepare for 0.0.7 release
2 parents 689c1bd + f9e5e38 commit 241f73d

File tree

15 files changed

+78
-54
lines changed

15 files changed

+78
-54
lines changed

CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [0.0.7] - 2023-03-03
10+
11+
### Fixed
12+
13+
- The `get-secrets` command of `test-agent-cli` now works as expected ([#812])
14+
15+
### Added
16+
17+
- Add support for karpenter testing ([#803])
18+
19+
### Changed
20+
21+
- `StatusSnapshot` supports custom columns for tables ([#777])
22+
- Support `--sonobuoy-image` flag in the sonobuoy agent ([#801])
23+
- Openssl dependency has been removed in favor of rustls ([#766])
24+
25+
[#766]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/766
26+
[#777]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/777
27+
[#801]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/801
28+
[#803]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/803
29+
[#812]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/812
30+
31+
[0.0.7]: https://github.com/bottlerocket-os/bottlerocket-test-system/tree/v0.0.7
32+
[Unreleased]: https://github.com/bottlerocket-os/bottlerocket-test-system/compare/v0.0.7...develop
33+
934
## [0.0.6] - 2023-03-03
1035

1136
### Fixed
@@ -57,7 +82,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
5782
[#773]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/773
5883

5984
[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
6185

6286
## [0.0.5] - 2022-12-20
6387

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.6"
3+
version = "0.0.7"
44
edition = "2021"
55
publish = false
66
license = "MIT OR Apache-2.0"
77

88
[dependencies]
9-
testsys-model = { version = "0.0.6", path = "../../model" }
9+
testsys-model = { version = "0.0.7", 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.6"
3+
version = "0.0.7"
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.6", path = "../../model" }
21-
configuration-derive = { version = "0.0.6", path = "../configuration-derive" }
20+
testsys-model = { version = "0.0.7", path = "../../model" }
21+
configuration-derive = { version = "0.0.7", 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.6"
3+
version = "0.0.7"
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.6"
3+
version = "0.0.7"
44
edition = "2021"
55
publish = false
66
license = "MIT OR Apache-2.0"
77

88
[dependencies]
9-
agent-common = { version = "0.0.6", path = "../agent-common" }
9+
agent-common = { version = "0.0.7", path = "../agent-common" }
1010
async-trait = "0.1"
1111
log = "0.4"
12-
testsys-model = { version = "0.0.6", path = "../../model" }
12+
testsys-model = { version = "0.0.7", 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.6"
3+
version = "0.0.7"
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.6", path = "../agent-common" }
10+
agent-common = { version = "0.0.7", path = "../agent-common" }
1111
copy_dir = "0.1"
12-
test-agent = { version = "0.0.6", path = "../test-agent" }
12+
test-agent = { version = "0.0.7", 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.6", path = "../../model" }
16+
testsys-model = { version = "0.0.7", 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.6", path = "../../selftest" }
29+
selftest = { version = "0.0.7", 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.6"
3+
version = "0.0.7"
44
edition = "2021"
55
publish = false
66
license = "MIT OR Apache-2.0"
77

88
[dependencies]
9-
agent-common = { version = "0.0.6", path = "../agent-common" }
9+
agent-common = { version = "0.0.7", path = "../agent-common" }
1010
async-trait = "0.1"
1111
log = "0.4"
12-
testsys-model = { version = "0.0.6", path = "../../model" }
12+
testsys-model = { version = "0.0.7", 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.6"
3+
version = "0.0.7"
44
edition = "2018"
55
publish = false
66
license = "MIT OR Apache-2.0"
77

88
[dependencies]
9-
agent-common = { version = "0.0.6", path = "../../agent/agent-common" }
9+
agent-common = { version = "0.0.7", 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.6", path = "../../model" }
21-
resource-agent = { version = "0.0.6", path = "../../agent/resource-agent" }
20+
testsys-model = { version = "0.0.7", path = "../../model" }
21+
resource-agent = { version = "0.0.7", path = "../../agent/resource-agent" }
2222
serde = { version = "1", features = ["derive"] }
2323
serde_json = "1"
2424
snafu = "0.7"
25-
test-agent = { version = "0.0.6", path = "../../agent/test-agent" }
25+
test-agent = { version = "0.0.7", 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.6"
3+
version = "0.0.7"
44
edition = "2018"
55
publish = false
66
license = "MIT OR Apache-2.0"
77

88
[dependencies]
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" }
9+
agent-common = { version = "0.0.7", path = "../../agent/agent-common" }
10+
agent-utils = { version = "0.0.7", path = "../../agent/utils" }
11+
bottlerocket-types = { version = "0.0.7", path = "../types" }
1212
async-trait = "0.1"
1313
aws-config = "0.54"
1414
aws-types = "0.54"
@@ -27,17 +27,17 @@ kube = { version = "0.82", 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.6", path = "../../model" }
30+
testsys-model = { version = "0.0.7", path = "../../model" }
3131
reqwest = { version = "0.11", default-features = false, features = ["rustls-tls", "blocking"] }
32-
resource-agent = { version = "0.0.6", path = "../../agent/resource-agent" }
32+
resource-agent = { version = "0.0.7", 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"
3939
tempfile = "3"
40-
test-agent = { version = "0.0.6", path = "../../agent/test-agent" }
40+
test-agent = { version = "0.0.7", path = "../../agent/test-agent" }
4141
tokio = { version = "1", default-features = false, features = ["macros", "rt-multi-thread", "time"] }
4242
toml = "0.5"
4343
tough = { version = "0.12", features = ["http"] }

0 commit comments

Comments
 (0)