From 0395f447a0da1cc19844872b8c2005c424c38aa3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Nov 2024 04:33:46 +0000 Subject: [PATCH] Bump the k8s group with 2 updates Bumps the k8s group with 2 updates: [json-patch](https://github.com/idubrov/json-patch) and [jsonptr](https://github.com/chanced/jsonptr). Updates `json-patch` from 2.0.0 to 3.0.1 - [Changelog](https://github.com/idubrov/json-patch/blob/main/CHANGELOG.md) - [Commits](https://github.com/idubrov/json-patch/compare/v2.0.0...v3.0.1) Updates `jsonptr` from 0.4.7 to 0.6.3 - [Release notes](https://github.com/chanced/jsonptr/releases) - [Changelog](https://github.com/chanced/jsonptr/blob/main/CHANGELOG.md) - [Commits](https://github.com/chanced/jsonptr/commits) --- updated-dependencies: - dependency-name: json-patch dependency-type: direct:production update-type: version-update:semver-major dependency-group: k8s - dependency-name: jsonptr dependency-type: direct:production update-type: version-update:semver-minor dependency-group: k8s ... Signed-off-by: dependabot[bot] --- Cargo.lock | 30 ++++++++++++++++++++++++++---- Cargo.toml | 4 ++-- 2 files changed, 28 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bf54f7d..13fffa8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1101,7 +1101,19 @@ version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5b1fb8864823fad91877e6caea0baca82e49e8db50f8e5c9f9a453e27d3330fc" dependencies = [ - "jsonptr", + "jsonptr 0.4.7", + "serde", + "serde_json", + "thiserror", +] + +[[package]] +name = "json-patch" +version = "3.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "863726d7afb6bc2590eeff7135d923545e5e964f004c2ccf8716c25e70a86f08" +dependencies = [ + "jsonptr 0.6.3", "serde", "serde_json", "thiserror", @@ -1133,6 +1145,16 @@ dependencies = [ "serde_json", ] +[[package]] +name = "jsonptr" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5dea2b27dd239b2556ed7a25ba842fe47fd602e7fc7433c2a8d6106d4d9edd70" +dependencies = [ + "serde", + "serde_json", +] + [[package]] name = "k8s-openapi" version = "0.23.0" @@ -1206,7 +1228,7 @@ dependencies = [ "chrono", "form_urlencoded", "http 1.1.0", - "json-patch", + "json-patch 2.0.0", "k8s-openapi", "schemars", "serde", @@ -1385,8 +1407,8 @@ dependencies = [ "axum-server", "axum-test", "envtestkit", - "json-patch", - "jsonptr", + "json-patch 3.0.1", + "jsonptr 0.6.3", "k8s-openapi", "kube", "log", diff --git a/Cargo.toml b/Cargo.toml index b3dbe3b..7d48877 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ edition = "2021" anyhow = "1.0.92" axum = { version = "0.7.7", features = ["tracing", "http2", "macros"] } axum-server = { version = "0.7.1", features = ["rustls", "tls-rustls"] } -json-patch = "2.0.0" +json-patch = "3.0.1" k8s-openapi = { version = "0.23.0", default-features = false, features = ["v1_30", "schemars"] } kube = { version = "0.96.0", features = ["rustls-tls", "admission", "jsonpatch", "derive"], default-features = false } log = { version = "0.4.22", features = ["kv_unstable", "serde", "kv_unstable_serde"] } @@ -25,7 +25,7 @@ opentelemetry-otlp = { version = "0.26.0", features = ["opentelemetry-http"] } opentelemetry-semantic-conventions = { version = "0.26.0", features = ["semconv_experimental"] } opentelemetry_sdk = { version = "0.26.0", features = ["rt-tokio"] } schematic = "0.17.6" -jsonptr = "0.4.7" +jsonptr = "0.6.3" rustls = { version = "0.23.16", features = ["ring"] } [dev-dependencies]