Skip to content

Commit fc9e01c

Browse files
authored
Merge pull request #888 from ecpullen/testsys-0.0.11
testsys: Update to 0.0.11
2 parents 08546f1 + f88dbb4 commit fc9e01c

File tree

15 files changed

+68
-54
lines changed

15 files changed

+68
-54
lines changed

CHANGELOG.md

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

77
## [Unreleased]
88

9-
[Unreleased]: https://github.com/bottlerocket-os/bottlerocket-test-system/compare/v0.0.10...develop
9+
[Unreleased]: https://github.com/bottlerocket-os/bottlerocket-test-system/compare/v0.0.11...develop
10+
11+
## [0.0.11] - 2024-01-29
12+
13+
### Added
14+
15+
- vSphere: Delete conflicting vms/templates [#879]
16+
- sonobuoy: Automatically delete namespace [#883]
17+
- controller: Add flag to enable log archiving [#882]
18+
19+
[#879]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/879
20+
[#882]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/882
21+
[#883]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/883
22+
23+
[0.0.11]: https://github.com/bottlerocket-os/bottlerocket-test-system/tree/v0.0.11
1024

1125
## [0.0.10] - 2023-10-03
1226

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

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

88
[dependencies]
9-
agent-common = { version = "0.0.10", path = "../agent-common" }
9+
agent-common = { version = "0.0.11", path = "../agent-common" }
1010
async-trait = "0.1"
1111
log = "0.4"
12-
testsys-model = { version = "0.0.10", path = "../../model" }
12+
testsys-model = { version = "0.0.11", 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,18 +1,18 @@
11
[package]
22
name = "test-agent-cli"
3-
version = "0.0.10"
3+
version = "0.0.11"
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.10", path = "../agent-common" }
10+
agent-common = { version = "0.0.11", path = "../agent-common" }
1111
copy_dir = "0.1"
12-
test-agent = { version = "0.0.10", path = "../test-agent" }
12+
test-agent = { version = "0.0.11", path = "../test-agent" }
1313
tokio = { version = "1", features = ["macros", "rt-multi-thread", "fs"] }
1414
log = "0.4"
15-
testsys-model = { version = "0.0.10", path = "../../model" }
15+
testsys-model = { version = "0.0.11", path = "../../model" }
1616
snafu = "0.7"
1717
serde_json = "1"
1818
env_logger = "0.10"
@@ -22,4 +22,4 @@ tar = "0.4"
2222

2323
[dev-dependencies]
2424
assert_cmd = "2"
25-
selftest = { version = "0.0.10", path = "../../selftest" }
25+
selftest = { version = "0.0.11", 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.10"
3+
version = "0.0.11"
44
edition = "2021"
55
publish = false
66
license = "MIT OR Apache-2.0"
77

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

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

88
[dependencies]
9-
agent-common = { version = "0.0.10", path = "../../agent/agent-common" }
10-
agent-utils = { version = "0.0.10", path = "../../agent/utils" }
11-
bottlerocket-types = { version = "0.0.10", path = "../types" }
9+
agent-common = { version = "0.0.11", path = "../../agent/agent-common" }
10+
agent-utils = { version = "0.0.11", path = "../../agent/utils" }
11+
bottlerocket-types = { version = "0.0.11", path = "../types" }
1212
async-trait = "0.1"
1313
aws-types = "0.54"
1414
aws-sdk-ec2 = "0.24"
@@ -26,16 +26,16 @@ kube = { version = "0.82", default-features = false, features = ["config", "deri
2626
log = "0.4"
2727
maplit = "1"
2828
openssh = { version = "0.9", features = ["native-mux"] }
29-
testsys-model = { version = "0.0.10", path = "../../model" }
29+
testsys-model = { version = "0.0.11", path = "../../model" }
3030
reqwest = { version = "0.11", default-features = false, features = ["rustls-tls", "blocking"] }
31-
resource-agent = { version = "0.0.10", path = "../../agent/resource-agent" }
31+
resource-agent = { version = "0.0.11", path = "../../agent/resource-agent" }
3232
serde = { version = "1", features = ["derive"] }
3333
serde_json = "1"
3434
serde_yaml = "0.8"
3535
sha2 = "0.10"
3636
snafu = "0.7"
3737
tar = "0.4"
38-
test-agent = { version = "0.0.10", path = "../../agent/test-agent" }
38+
test-agent = { version = "0.0.11", path = "../../agent/test-agent" }
3939
tokio = { version = "1", default-features = false, features = ["macros", "rt-multi-thread", "time"] }
4040
toml = "0.5"
4141
tough = { version = "0.12", features = ["http"] }

0 commit comments

Comments
 (0)