Skip to content

Commit b5ef413

Browse files
Merge pull request #995 from zongzhidanielhu/0.0.17
testsys: Update to 0.0.17
2 parents 9260872 + e71b16d commit b5ef413

File tree

16 files changed

+75
-55
lines changed

16 files changed

+75
-55
lines changed

CHANGELOG.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,27 @@ 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.16...develop
9+
[Unreleased]: https://github.com/bottlerocket-os/bottlerocket-test-system/compare/v0.0.17...develop
10+
11+
## [0.0.17] - 2025-06-05
12+
13+
### Added
14+
15+
- github: lock actions by commit ([#985])
16+
- Add kubernetes 1.33 support ([#994])
17+
18+
### Changed
19+
20+
- Update tough ([#987])
21+
- update bottlerocket sample to use latest k8s version ([#990])
22+
- Update tough, aws-sdk*, and aws-config ([#993])
23+
24+
[#985]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/985
25+
[#987]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/987
26+
[#990]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/990
27+
[#993]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/993
28+
[#994]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/994
29+
[0.0.17]: https://github.com/bottlerocket-os/bottlerocket-test-system/tree/v0.0.17
1030

1131
## [0.0.16] - 2025-03-12
1232

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

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

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

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.16"
3+
version = "0.0.17"
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.16", path = "../agent-common" }
10+
agent-common = { version = "0.0.17", path = "../agent-common" }
1111
copy_dir = "0.1"
12-
test-agent = { version = "0.0.16", path = "../test-agent" }
12+
test-agent = { version = "0.0.17", path = "../test-agent" }
1313
tokio = { version = "1", features = ["macros", "rt-multi-thread", "fs"] }
1414
log = "0.4"
15-
testsys-model = { version = "0.0.16", path = "../../model" }
15+
testsys-model = { version = "0.0.17", path = "../../model" }
1616
snafu = "0.8"
1717
serde_json = "1"
1818
env_logger = "0.11"
@@ -22,4 +22,4 @@ tar = "0.4"
2222

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

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

agent/utils/Cargo.toml

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

88
[dependencies]
99
aws-lc-rs = { version = "1", features = ["bindgen"] }
10-
agent-common = { version = "0.0.16", path = "../../agent/agent-common" }
10+
agent-common = { version = "0.0.17", path = "../../agent/agent-common" }
1111
aws-config = { version = "1", default-features = false, features = ["rt-tokio", "default-https-client"] }
1212
aws-credential-types = "1"
1313
aws-types = "1"
@@ -18,10 +18,10 @@ aws-smithy-types = "1"
1818
base64 = "0.21"
1919
env_logger = "0.11"
2020
log = "0.4"
21-
testsys-model = { version = "0.0.16", path = "../../model" }
22-
resource-agent = { version = "0.0.16", path = "../../agent/resource-agent" }
21+
testsys-model = { version = "0.0.17", path = "../../model" }
22+
resource-agent = { version = "0.0.17", path = "../../agent/resource-agent" }
2323
serde = { version = "1", features = ["derive"] }
2424
serde_json = "1"
2525
snafu = "0.8"
26-
test-agent = { version = "0.0.16", path = "../../agent/test-agent" }
26+
test-agent = { version = "0.0.17", path = "../../agent/test-agent" }
2727
tokio = { version = "1", default-features = false, features = ["time"] }

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

88
[dependencies]
9-
agent-common = { version = "0.0.16", path = "../../agent/agent-common" }
10-
agent-utils = { version = "0.0.16", path = "../../agent/utils" }
11-
bottlerocket-types = { version = "0.0.16", path = "../types" }
9+
agent-common = { version = "0.0.17", path = "../../agent/agent-common" }
10+
agent-utils = { version = "0.0.17", path = "../../agent/utils" }
11+
bottlerocket-types = { version = "0.0.17", path = "../types" }
1212
aws-lc-rs = { version = "1", features = ["bindgen"] }
1313
async-trait = "0.1"
1414
aws-types = "1"
@@ -29,16 +29,16 @@ kube = { version = "0.88", default-features = false, features = ["config", "deri
2929
log = "0.4"
3030
maplit = "1"
3131
openssh = { version = "0.10", features = ["native-mux"] }
32-
testsys-model = { version = "0.0.16", path = "../../model" }
32+
testsys-model = { version = "0.0.17", path = "../../model" }
3333
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "blocking"] }
34-
resource-agent = { version = "0.0.16", path = "../../agent/resource-agent" }
34+
resource-agent = { version = "0.0.17", path = "../../agent/resource-agent" }
3535
serde = { version = "1", features = ["derive"] }
3636
serde_json = "1"
3737
serde_yaml = "0.9"
3838
sha2 = "0.10"
3939
snafu = "0.8"
4040
tar = "0.4"
41-
test-agent = { version = "0.0.16", path = "../../agent/test-agent" }
41+
test-agent = { version = "0.0.17", path = "../../agent/test-agent" }
4242
tokio = { version = "1", default-features = false, features = ["macros", "rt-multi-thread", "time"] }
4343
toml = "0.5"
4444
tough = { version = "0.21", features = ["http"] }

0 commit comments

Comments
 (0)