Skip to content

Commit 2491a2a

Browse files
authored
Merge pull request #872 from etungsten/009-rel
Prepare testsys v0.0.9, tools v0.7.0 release
2 parents 369adf6 + 500b115 commit 2491a2a

File tree

17 files changed

+99
-55
lines changed

17 files changed

+99
-55
lines changed

CHANGELOG.md

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,41 @@ 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.8...develop
9+
[Unreleased]: https://github.com/bottlerocket-os/bottlerocket-test-system/compare/v0.0.9...develop
10+
11+
## [0.0.9] - 2023-09-13
12+
13+
### Fixed
14+
15+
- Increase sonobuoy status check timeout to 15 mins and fix image used in retries ([#868])
16+
17+
### Added
18+
19+
- Add EKS service endpoint override in the EKS resource agent ([#860])
20+
- Set necessary environment variables to enable new K8s version cluster creation in metal and vsphere agents ([#866])
21+
- Add option for EKS-A release manifest url and fetch EKS-A binary at runtime in metal and vsphere agents ([#867])
22+
23+
### Changed
24+
25+
- Remove `eksctl` build workaround ([#844])
26+
- Remove `--force-cleanup` flag from eks-a invocation in metal and vsphere agents ([#851])
27+
- Restrict IMDS on nodes launched by testsys-launcher ([#852])
28+
- Build fixes and enhancements in the tools image ([#858])
29+
- Rust crate dependency updates ([#862])
30+
- Bump Bottlerocket SDK version to 0.34.1 ([#871])
31+
32+
[#844]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/844
33+
[#851]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/851
34+
[#852]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/852
35+
[#858]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/858
36+
[#860]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/860
37+
[#862]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/862
38+
[#866]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/866
39+
[#867]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/867
40+
[#868]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/868
41+
[#871]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/871
42+
43+
[0.0.9]: https://github.com/bottlerocket-os/bottlerocket-test-system/tree/v0.0.9
1044

1145
## [0.0.8] - 2023-06-12
1246

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.

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ TOP := $(dir $(firstword $(MAKEFILE_LIST)))
77
# Variables we update as newer versions are released
88
BOTTLEROCKET_SDK_VERSION = v0.34.1
99
BOTTLEROCKET_SDK_ARCH = $(TESTSYS_BUILD_HOST_UNAME_ARCH)
10-
BOTTLEROCKET_TOOLS_VERSION ?= v0.6.0
10+
BOTTLEROCKET_TOOLS_VERSION ?= v0.7.0
1111

1212
BUILDER_IMAGE = public.ecr.aws/bottlerocket/bottlerocket-sdk-$(BOTTLEROCKET_SDK_ARCH):$(BOTTLEROCKET_SDK_VERSION)
1313
TOOLS_IMAGE ?= public.ecr.aws/bottlerocket-test-system/bottlerocket-test-tools:$(BOTTLEROCKET_TOOLS_VERSION)

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

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

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

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

88
[dependencies]
9-
agent-common = { version = "0.0.8", path = "../../agent/agent-common" }
9+
agent-common = { version = "0.0.9", 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.8", path = "../../model" }
21-
resource-agent = { version = "0.0.8", path = "../../agent/resource-agent" }
20+
testsys-model = { version = "0.0.9", path = "../../model" }
21+
resource-agent = { version = "0.0.9", path = "../../agent/resource-agent" }
2222
serde = { version = "1", features = ["derive"] }
2323
serde_json = "1"
2424
snafu = "0.7"
25-
test-agent = { version = "0.0.8", path = "../../agent/test-agent" }
25+
test-agent = { version = "0.0.9", path = "../../agent/test-agent" }

0 commit comments

Comments
 (0)