-
-
Notifications
You must be signed in to change notification settings - Fork 325
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
72 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "kube-client" | ||
version = "0.84.0" | ||
version = "0.85.0" | ||
description = "Kubernetes client" | ||
authors = [ | ||
"clux <[email protected]>", | ||
|
@@ -32,7 +32,7 @@ config = ["__non_core", "pem", "home"] | |
__non_core = ["tracing", "serde_yaml", "base64"] | ||
|
||
[package.metadata.docs.rs] | ||
features = ["client", "rustls-tls", "openssl-tls", "ws", "oauth", "oidc", "jsonpatch", "admission", "k8s-openapi/v1_26"] | ||
features = ["client", "rustls-tls", "openssl-tls", "ws", "oauth", "oidc", "jsonpatch", "admission", "k8s-openapi/v1_27"] | ||
# Define the configuration attribute `docsrs`. Used to enable `doc_cfg` feature. | ||
rustdoc-args = ["--cfg", "docsrs"] | ||
|
||
|
@@ -48,13 +48,13 @@ http-body = { version = "0.4.2", optional = true } | |
either = { version = "1.6.1", optional = true } | ||
thiserror = "1.0.29" | ||
futures = { version = "0.3.17", optional = true } | ||
pem = { version = "1.1.0", optional = true } | ||
pem = { version = "3.0.1", optional = true } | ||
openssl = { version = "0.10.36", optional = true } | ||
rustls = { version = "0.21.0", features = ["dangerous_configuration"], optional = true } | ||
rustls-pemfile = { version = "1.0.0", optional = true } | ||
bytes = { version = "1.1.0", optional = true } | ||
tokio = { version = "1.14.0", features = ["time", "signal", "sync"], optional = true } | ||
kube-core = { path = "../kube-core", version = "=0.84.0" } | ||
kube-core = { path = "../kube-core", version = "=0.85.0" } | ||
jsonpath_lib = { version = "0.3.0", optional = true } | ||
tokio-util = { version = "0.7.0", optional = true, features = ["io", "codec"] } | ||
hyper = { version = "0.14.13", optional = true, features = ["client", "http1", "stream", "tcp"] } | ||
|
@@ -72,7 +72,7 @@ hyper-openssl = { version = "0.9.2", optional = true } | |
form_urlencoded = { version = "1.2.0", optional = true } | ||
|
||
[dependencies.k8s-openapi] | ||
version = "0.18.0" | ||
version = "0.19.0" | ||
default-features = false | ||
features = [] | ||
|
||
|
@@ -85,6 +85,6 @@ tokio-test = "0.4.0" | |
tower-test = "0.4.0" | ||
|
||
[dev-dependencies.k8s-openapi] | ||
version = "0.18.0" | ||
version = "0.19.0" | ||
default-features = false | ||
features = ["v1_26"] | ||
features = ["v1_27"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "kube-core" | ||
description = "Kube shared types, traits and client-less behavior" | ||
version = "0.84.0" | ||
version = "0.85.0" | ||
authors = [ | ||
"clux <[email protected]>", | ||
"kazk <[email protected]>", | ||
|
@@ -15,7 +15,7 @@ repository = "https://github.com/kube-rs/kube" | |
readme = "../README.md" | ||
|
||
[package.metadata.docs.rs] | ||
features = ["ws", "admission", "jsonpatch", "k8s-openapi/v1_26"] | ||
features = ["ws", "admission", "jsonpatch", "k8s-openapi/v1_27"] | ||
rustdoc-args = ["--cfg", "docsrs"] | ||
|
||
[features] | ||
|
@@ -36,14 +36,14 @@ chrono = { version = "0.4.19", default-features = false, features = ["clock"] } | |
schemars = { version = "0.8.6", optional = true } | ||
|
||
[dependencies.k8s-openapi] | ||
version = "0.18.0" | ||
version = "0.19.0" | ||
default-features = false | ||
features = [] | ||
|
||
[dev-dependencies.k8s-openapi] | ||
version = "0.18.0" | ||
version = "0.19.0" | ||
default-features = false | ||
features = ["v1_26"] | ||
features = ["v1_27"] | ||
|
||
[dev-dependencies] | ||
assert-json-diff = "2.0.1" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "kube-derive" | ||
description = "Custom derives for the kube kubernetes crates" | ||
version = "0.84.0" | ||
version = "0.85.0" | ||
authors = [ | ||
"clux <[email protected]>", | ||
"kazk <[email protected]>", | ||
|
@@ -29,7 +29,7 @@ proc-macro = true | |
serde = { version = "1.0.130", features = ["derive"] } | ||
serde_yaml = "0.9.19" | ||
kube = { path = "../kube", version = "<1.0.0, >=0.61.0", features = ["derive", "client"] } | ||
k8s-openapi = { version = "0.18.0", default-features = false, features = ["v1_26"] } | ||
k8s-openapi = { version = "0.19.0", default-features = false, features = ["v1_27"] } | ||
schemars = { version = "0.8.6", features = ["chrono"] } | ||
chrono = { version = "0.4.19", default-features = false } | ||
trybuild = "1.0.48" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "kube-runtime" | ||
version = "0.84.0" | ||
version = "0.85.0" | ||
description = "Kubernetes futures controller runtime" | ||
authors = [ | ||
"Natalie Klestrup Röijezon <[email protected]>", | ||
|
@@ -22,13 +22,13 @@ unstable-runtime-stream-control = [] | |
unstable-runtime-reconcile-on = [] | ||
|
||
[package.metadata.docs.rs] | ||
features = ["k8s-openapi/v1_26", "unstable-runtime"] | ||
features = ["k8s-openapi/v1_27", "unstable-runtime"] | ||
# Define the configuration attribute `docsrs`. Used to enable `doc_cfg` feature. | ||
rustdoc-args = ["--cfg", "docsrs"] | ||
|
||
[dependencies] | ||
futures = "0.3.17" | ||
kube-client = { path = "../kube-client", version = "=0.84.0", default-features = false, features = ["jsonpatch", "client"] } | ||
kube-client = { path = "../kube-client", version = "=0.85.0", default-features = false, features = ["jsonpatch", "client"] } | ||
derivative = "2.1.1" | ||
serde = "1.0.130" | ||
smallvec = "1.7.0" | ||
|
@@ -46,7 +46,7 @@ async-trait = "0.1.64" | |
hashbrown = "0.14.0" | ||
|
||
[dependencies.k8s-openapi] | ||
version = "0.18.0" | ||
version = "0.19.0" | ||
default-features = false | ||
|
||
[dev-dependencies] | ||
|
@@ -58,6 +58,6 @@ schemars = "0.8.6" | |
tracing-subscriber = "0.3.17" | ||
|
||
[dev-dependencies.k8s-openapi] | ||
version = "0.18.0" | ||
version = "0.19.0" | ||
default-features = false | ||
features = ["v1_26"] | ||
features = ["v1_27"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "kube" | ||
version = "0.84.0" | ||
version = "0.85.0" | ||
description = "Kubernetes client and async controller runtime" | ||
authors = [ | ||
"clux <[email protected]>", | ||
|
@@ -32,20 +32,20 @@ runtime = ["kube-runtime"] | |
unstable-runtime = ["kube-runtime/unstable-runtime"] | ||
|
||
[package.metadata.docs.rs] | ||
features = ["client", "rustls-tls", "openssl-tls", "derive", "ws", "oauth", "jsonpatch", "admission", "runtime", "k8s-openapi/v1_26", "unstable-runtime"] | ||
features = ["client", "rustls-tls", "openssl-tls", "derive", "ws", "oauth", "jsonpatch", "admission", "runtime", "k8s-openapi/v1_27", "unstable-runtime"] | ||
# Define the configuration attribute `docsrs`. Used to enable `doc_cfg` feature. | ||
rustdoc-args = ["--cfg", "docsrs"] | ||
|
||
[dependencies] | ||
kube-derive = { path = "../kube-derive", version = "=0.84.0", optional = true } | ||
kube-core = { path = "../kube-core", version = "=0.84.0" } | ||
kube-client = { path = "../kube-client", version = "=0.84.0", default-features = false, optional = true } | ||
kube-runtime = { path = "../kube-runtime", version = "=0.84.0", optional = true} | ||
kube-derive = { path = "../kube-derive", version = "=0.85.0", optional = true } | ||
kube-core = { path = "../kube-core", version = "=0.85.0" } | ||
kube-client = { path = "../kube-client", version = "=0.85.0", default-features = false, optional = true } | ||
kube-runtime = { path = "../kube-runtime", version = "=0.85.0", optional = true} | ||
|
||
# Not used directly, but required by resolver 2.0 to ensure that the k8s-openapi dependency | ||
# is considered part of the "deps" graph rather than just the "dev-deps" graph | ||
[dependencies.k8s-openapi] | ||
version = "0.18.0" | ||
version = "0.19.0" | ||
default-features = false | ||
|
||
[dev-dependencies] | ||
|
@@ -60,6 +60,6 @@ tower-test = "0.4.0" | |
anyhow = "1.0.71" | ||
|
||
[dev-dependencies.k8s-openapi] | ||
version = "0.18.0" | ||
version = "0.19.0" | ||
default-features = false | ||
features = ["v1_26"] | ||
features = ["v1_27"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters