From 4ff5d3288093339fca23936a42dd917caf291fe2 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 5 Dec 2022 07:33:19 +0000 Subject: [PATCH] Update Rust crate tonic-reflection to 0.6.0 (#216) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [tonic-reflection](https://togithub.com/hyperium/tonic) | dependencies | minor | `0.5.0` -> `0.6.0` | --- ### Release Notes
hyperium/tonic ### [`v0.6.0`](https://togithub.com/hyperium/tonic/blob/HEAD/CHANGELOG.md#​060-httpsgithubcomhyperiumtoniccomparev052v060-2021-10-25) [Compare Source](https://togithub.com/hyperium/tonic/compare/v0.5.0...v0.6.0) ##### Breaking changes - **tonic:** Remove `Sync` requirement for streams ([#​804](https://togithub.com/hyperium/tonic/issues/804)) ([23c1392](https://togithub.com/hyperium/tonic/commit/23c1392fb7e0ac50bcdedc35509917061bc858e1)) - **tonic:** change `connect_lazy` to be infallible ([#​712](https://togithub.com/hyperium/tonic/issues/712)) ([2e47154](https://togithub.com/hyperium/tonic/commit/2e471548d89be98d26b2332d059a24a3fc15ec23)) - **build:** split path types in compile ([#​721](https://togithub.com/hyperium/tonic/issues/721)) ([53ecc1f](https://togithub.com/hyperium/tonic/commit/53ecc1f85e7f7eeb0dce4ab23432d6c36d8a46b0)) - Update `prost` and friends to 0.9 ([#​791](https://togithub.com/hyperium/tonic/issues/791)) ([09805ec](https://togithub.com/hyperium/tonic/commit/09805ece453047bf609b1a69c72931eae6e1144a)) ##### Bug Fixes - **build:** Correctly convert `Empty` to `()` ([#​734](https://togithub.com/hyperium/tonic/issues/734)) ([ff6a690](https://togithub.com/hyperium/tonic/commit/ff6a690cec9daca33984cabea66f9d370ac63462)) - **tonic:** fix extensions disappearing during streaming requests ([5c1bb90](https://togithub.com/hyperium/tonic/commit/5c1bb90ce82ecf90843a7c959edd7ef8fc280f62)), closes [#​770](https://togithub.com/hyperium/tonic/issues/770) - **tonic:** Status code to set correct source on unknown error ([#​799](https://togithub.com/hyperium/tonic/issues/799)) ([4054d61](https://togithub.com/hyperium/tonic/commit/4054d61e14b9794a72b48de1a051c26129ec36b1)) - **transport:** AddOrigin panic on invalid uri ([#​801](https://togithub.com/hyperium/tonic/issues/801)) ([3ab00f3](https://togithub.com/hyperium/tonic/commit/3ab00f304dd204fccf00d1995e635fa6b2f8503b)) - **transport:** Correctly map hyper errors ([#​629](https://togithub.com/hyperium/tonic/issues/629)) ([4947b07](https://togithub.com/hyperium/tonic/commit/4947b076f5b0b5149ee7f6144515535b85f65db5)) - **tonic:** compression: handle compression flag but no header ([#​763](https://togithub.com/hyperium/tonic/issues/763)) ##### Features - **build:** Support prost's include_file option ([#​774](https://togithub.com/hyperium/tonic/issues/774)) ([3f9ab80](https://togithub.com/hyperium/tonic/commit/3f9ab801f7ee50ec04ab0f73cd457898dc687e61)) - **health, reflection:** make rustfmt dependency optional ([#​785](https://togithub.com/hyperium/tonic/issues/785))
--- ### Configuration 📅 **Schedule**: Branch creation - "after 5:00 and before 6:00 every weekday" in timezone Europe/Berlin, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/stackabletech/secret-operator). --- Cargo.lock | 5 ++--- rust/operator-binary/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 21b9775f..89ca23ef 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2250,9 +2250,9 @@ dependencies = [ [[package]] name = "tonic-reflection" -version = "0.5.0" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0455f730d540a1484bffc3c55c94100b18a662597b982c2e9073f2c55c602616" +checksum = "67494bad4dda4c9bffae901dfe14e2b2c0f760adb4706dc10beeb81799f7f7b2" dependencies = [ "bytes", "prost", @@ -2260,7 +2260,6 @@ dependencies = [ "tokio", "tokio-stream", "tonic", - "tonic-build", ] [[package]] diff --git a/rust/operator-binary/Cargo.toml b/rust/operator-binary/Cargo.toml index 2acce603..96c84f2b 100644 --- a/rust/operator-binary/Cargo.toml +++ b/rust/operator-binary/Cargo.toml @@ -28,7 +28,7 @@ time = "0.3.14" tokio = { version = "1.22.0", features = ["full"] } tokio-stream = { version = "0.1.9", features = ["net"] } tonic = "0.8" -tonic-reflection = "0.5.0" +tonic-reflection = "0.6.0" tracing = "0.1.36" h2 = "=0.3.7" # Need to keep this in sync with our patched h2 build