Skip to content

Commit cea049d

Browse files
authored
Merge pull request #838 from gthao313/release
Prep for 0.0.8 Release
2 parents 4d4fc0d + 59b2aa9 commit cea049d

File tree

17 files changed

+94
-55
lines changed

17 files changed

+94
-55
lines changed

CHANGELOG.md

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,36 @@ 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
10+
11+
## [0.0.8] - 2023-06-12
12+
13+
### Fixed
14+
15+
- controller: Add retry logic to controller if it's unable to find resources ([#816])
16+
- karpenter: Remove extra { and } from ConfigMap username ([#818])
17+
- Fix various typos and spelling errors ([#835])
18+
19+
### Changed
20+
21+
- doc: Add documentation for minimal iam permissions ([#775])
22+
- Add Testsys-launcher ([#823], [#824], [#826], [#831])
23+
- sonobuoy-test-agent: Add non-blocking-taints for control plane nodes ([#832])
24+
- Add hello-testsys workload test definition ([#834])
25+
26+
[#775]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/775
27+
[#816]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/816
28+
[#818]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/818
29+
[#823]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/823
30+
[#824]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/824
31+
[#826]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/826
32+
[#831]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/831
33+
[#832]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/832
34+
[#834]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/834
35+
[#835]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/835
36+
37+
[0.0.8]: https://github.com/bottlerocket-os/bottlerocket-test-system/tree/v0.0.8
38+
939
## [0.0.7] - 2023-03-03
1040

1141
### Fixed
@@ -29,7 +59,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
2959
[#812]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/812
3060

3161
[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
3362

3463
## [0.0.6] - 2023-03-03
3564

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.30.2
99
BOTTLEROCKET_SDK_ARCH = $(TESTSYS_BUILD_HOST_UNAME_ARCH)
10-
BOTTLEROCKET_TOOLS_VERSION ?= v0.5.0
10+
BOTTLEROCKET_TOOLS_VERSION ?= v0.6.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.7"
3+
version = "0.0.8"
44
edition = "2021"
55
publish = false
66
license = "MIT OR Apache-2.0"
77

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

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

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

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

0 commit comments

Comments
 (0)