From 108fb31a5454a63f197b0f7a28988b2d87e76c13 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Nov 2022 02:08:56 +0000 Subject: [PATCH] Bump kube-runtime from 0.75.0 to 0.76.0 in /cmd/pinniped-proxy Bumps [kube-runtime](https://github.com/kube-rs/kube) from 0.75.0 to 0.76.0. - [Release notes](https://github.com/kube-rs/kube/releases) - [Changelog](https://github.com/kube-rs/kube/blob/main/CHANGELOG.md) - [Commits](https://github.com/kube-rs/kube/compare/0.75.0...0.76.0) --- updated-dependencies: - dependency-name: kube-runtime dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- cmd/pinniped-proxy/Cargo.lock | 61 +++++++++++++++++++++++++++++++---- cmd/pinniped-proxy/Cargo.toml | 2 +- 2 files changed, 56 insertions(+), 7 deletions(-) diff --git a/cmd/pinniped-proxy/Cargo.lock b/cmd/pinniped-proxy/Cargo.lock index c92fe836837..91153fe78ae 100644 --- a/cmd/pinniped-proxy/Cargo.lock +++ b/cmd/pinniped-proxy/Cargo.lock @@ -878,8 +878,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9bb19108692aeafebb108fd0a1c381c06ac4c03859652599420975165e939b8a" dependencies = [ "k8s-openapi", - "kube-client", - "kube-core", + "kube-client 0.75.0", + "kube-core 0.75.0", ] [[package]] @@ -901,7 +901,7 @@ dependencies = [ "hyper-timeout", "jsonpath_lib", "k8s-openapi", - "kube-core", + "kube-core 0.75.0", "openssl", "pem", "pin-project", @@ -917,11 +917,60 @@ dependencies = [ "tracing", ] +[[package]] +name = "kube-client" +version = "0.76.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7e442b4e6d55c4b3d0c0c70d79a8865bf17e2c33725f9404bfcb8a29ee002ffe" +dependencies = [ + "base64", + "bytes", + "chrono", + "dirs-next", + "either", + "futures", + "http", + "http-body", + "hyper", + "hyper-timeout", + "jsonpath_lib", + "k8s-openapi", + "kube-core 0.76.0", + "pem", + "pin-project", + "secrecy", + "serde", + "serde_json", + "serde_yaml", + "thiserror", + "tokio", + "tokio-util", + "tower", + "tower-http", + "tracing", +] + [[package]] name = "kube-core" version = "0.75.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f4d780f2bb048eeef64a4c6b2582d26a0fe19e30b4d3cc9e081616e1779c5d47" +dependencies = [ + "chrono", + "form_urlencoded", + "http", + "k8s-openapi", + "once_cell", + "serde", + "serde_json", + "thiserror", +] + +[[package]] +name = "kube-core" +version = "0.76.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eca2e1b1528287ba61602bbd17d0aa717fbb4d0fb257f4fa3a5fa884116ef778" dependencies = [ "chrono", "form_urlencoded", @@ -949,9 +998,9 @@ dependencies = [ [[package]] name = "kube-runtime" -version = "0.75.0" +version = "0.76.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7769af142ee2e46bfa44bd393cf7f40b9d8b80d2e11f6317399551ed17760beb" +checksum = "0b9b312c38884a3f41d67e2f7580824b6f45d360b98497325b5630664b3a359d" dependencies = [ "ahash", "backoff", @@ -959,7 +1008,7 @@ dependencies = [ "futures", "json-patch", "k8s-openapi", - "kube-client", + "kube-client 0.76.0", "parking_lot", "pin-project", "serde", diff --git a/cmd/pinniped-proxy/Cargo.toml b/cmd/pinniped-proxy/Cargo.toml index f39722a85f4..6d0aa074083 100644 --- a/cmd/pinniped-proxy/Cargo.toml +++ b/cmd/pinniped-proxy/Cargo.toml @@ -19,7 +19,7 @@ hyper = { version = "0.14", features = ["server"] } hyper-tls = "0.5" kube = { version = "0.75.0" } kube-derive = { version = "0.76.0"} -kube-runtime = "0.75.0" +kube-runtime = "0.76.0" k8s-openapi = { version = "0.16.0", default-features = false} log = "0.4" native-tls = "0.2"