Skip to content

Commit e4c568e

Browse files
Merge pull request #30 from MaterializeInc/bump_kube
bump kube to 0.98.0, k8s-openapi to 0.24.0 feature v1_30
2 parents 6e3297f + a339ad5 commit e4c568e

File tree

3 files changed

+7
-13
lines changed

3 files changed

+7
-13
lines changed

.github/workflows/pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ on:
33
pull_request:
44

55
env:
6-
DOCKER_BUILDKIT: 1
7-
K8S_OPENAPI_ENABLED_VERSION: 1.29
6+
DOCKER_BUILDKIT: "1"
7+
K8S_OPENAPI_ENABLED_VERSION: "1.30"
88

99
jobs:
1010
lint:

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "k8s-controller"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
edition = "2021"
55
rust-version = "1.83.0"
66

@@ -13,12 +13,12 @@ include = ["src/**/*", "LICENSE", "README.md", "CHANGELOG.md"]
1313
[dependencies]
1414
async-trait = "0.1"
1515
futures = "0.3"
16-
kube = { version = "0.92.1", default-features = false, features = ["client"] }
17-
kube-runtime = "0.92.1"
16+
kube = { version = "0.98.0", default-features = false, features = ["client"] }
17+
kube-runtime = "0.98.0"
1818
rand = "0.8"
1919
serde = "1"
2020
tracing = "0.1"
2121

2222
[dev-dependencies]
23-
k8s-openapi = { version = "0.22", default-features = false, features = ["v1_29"] }
23+
k8s-openapi = { version = "0.24", default-features = false, features = ["v1_30"] }
2424
tokio = "1"

deny.toml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,6 @@ targets = [
99
[advisories]
1010
version = 2
1111
ignore = [
12-
# Dependency of kube < 0.96.0, so temporarily whitelisting it until we upgrade.
13-
# This is just saying the "derivative" crate is unmaintained, but nothing is
14-
# actively dangerous yet.
15-
"RUSTSEC-2024-0388",
1612
# Dependency of kube, and has no known version without it.
1713
# This is just saying the "instant" crate is unmaintained, but nothing is
1814
# actively dangerous yet.
@@ -22,9 +18,6 @@ ignore = [
2218
[bans]
2319
multiple-versions = "deny"
2420
skip = [
25-
{ name = "base64", version = "0.21.2" },
26-
{ name = "hashbrown", version = "0.14.5" },
27-
{ name = "syn", version = "1.0.109" },
2821
{ name = "thiserror", version = "1.0.69" },
2922
{ name = "thiserror-impl", version = "1.0.69" },
3023
]
@@ -45,6 +38,7 @@ allow = [
4538
"BSD-3-Clause",
4639
"MIT",
4740
"Unicode-3.0",
41+
"Zlib",
4842
]
4943

5044
[sources]

0 commit comments

Comments
 (0)