Skip to content

Commit 7f6b52b

Browse files
authored
Merge pull request #932 from cbgbt/tabled-bugfix
fix bug from updating tabled
2 parents 1b91057 + bda120b commit 7f6b52b

File tree

18 files changed

+126
-62
lines changed

18 files changed

+126
-62
lines changed

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,17 @@ 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.13...develop
9+
[Unreleased]: https://github.com/bottlerocket-os/bottlerocket-test-system/compare/v0.0.14...develop
10+
11+
## [0.0.14] - 2024-07-31
12+
13+
### Fixed
14+
15+
- fixed a bug preventing test names from being printed by `cli status` ([#932])
16+
17+
[#932]: https://github.com/bottlerocket-os/bottlerocket-test-system/pull/932
18+
19+
[0.0.14]: https://github.com/bottlerocket-os/bottlerocket-test-system/tree/v0.0.14
1020

1121
## [0.0.13] - 2024-07-31
1222

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

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

88
[dependencies]
9-
agent-common = { version = "0.0.13", path = "../agent-common" }
9+
agent-common = { version = "0.0.14", path = "../agent-common" }
1010
async-trait = "0.1"
1111
log = "0.4"
12-
testsys-model = { version = "0.0.13", path = "../../model" }
12+
testsys-model = { version = "0.0.14", 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.13"
3+
version = "0.0.14"
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.13", path = "../agent-common" }
10+
agent-common = { version = "0.0.14", path = "../agent-common" }
1111
copy_dir = "0.1"
12-
test-agent = { version = "0.0.13", path = "../test-agent" }
12+
test-agent = { version = "0.0.14", path = "../test-agent" }
1313
tokio = { version = "1", features = ["macros", "rt-multi-thread", "fs"] }
1414
log = "0.4"
15-
testsys-model = { version = "0.0.13", path = "../../model" }
15+
testsys-model = { version = "0.0.14", path = "../../model" }
1616
snafu = "0.8"
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.13", path = "../../selftest" }
25+
selftest = { version = "0.0.14", 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.13"
3+
version = "0.0.14"
44
edition = "2021"
55
publish = false
66
license = "MIT OR Apache-2.0"
77

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

agent/test-agent/src/k8s_client.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,10 +72,7 @@ impl Client for DefaultClient {
7272
{
7373
let test_data = self.client.get(&self.name).await.context(K8sSnafu)?;
7474

75-
let raw_config = match test_data.spec.agent.configuration {
76-
Some(serde_map) => serde_map,
77-
None => Default::default(),
78-
};
75+
let raw_config = test_data.spec.agent.configuration.unwrap_or_default();
7976

8077
let resource_client = ResourceClient::new()
8178
.await

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

88
[dependencies]
9-
agent-common = { version = "0.0.13", path = "../../agent/agent-common" }
9+
agent-common = { version = "0.0.14", path = "../../agent/agent-common" }
1010
aws-config = "1"
1111
aws-credential-types = "1"
1212
aws-types = "1"
@@ -17,10 +17,10 @@ aws-smithy-types = "1"
1717
base64 = "0.21"
1818
env_logger = "0.10"
1919
log = "0.4"
20-
testsys-model = { version = "0.0.13", path = "../../model" }
21-
resource-agent = { version = "0.0.13", path = "../../agent/resource-agent" }
20+
testsys-model = { version = "0.0.14", path = "../../model" }
21+
resource-agent = { version = "0.0.14", path = "../../agent/resource-agent" }
2222
serde = { version = "1", features = ["derive"] }
2323
serde_json = "1"
2424
snafu = "0.8"
25-
test-agent = { version = "0.0.13", path = "../../agent/test-agent" }
25+
test-agent = { version = "0.0.14", path = "../../agent/test-agent" }
2626
tokio = { version = "1", default-features = false, features = ["time"] }

0 commit comments

Comments
 (0)