From 14343758049658f9b9600b0ceb513fe2bb1293ce Mon Sep 17 00:00:00 2001 From: katelyn martin Date: Wed, 22 May 2024 10:40:28 -0400 Subject: [PATCH] =?UTF-8?q?proto:=20=F0=9F=A7=AA=20upgrade=20to=20tonic=20?= =?UTF-8?q?0.11=20(#1422)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * proto: ๐Ÿงช upgrade to tonic 0.11 * changelog: ๐Ÿ“œ add entry noting tonic upgrade --- CHANGELOG.md | 7 +++++++ proto/Cargo.toml | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8fa2bb8ea..857db9716 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # CHANGELOG +## v0.37.0 + +### IMPROVEMENTS + +- `[tendermint-proto]` upgrades its tonic dependency to tonic@0.11. + ([\#1422](https://github.com/informalsystems/tendermint-rs/pull/1422)) + ## v0.36.0 This release brings substantial performance improvements to the voting power computation within the light client, improves the handling of misformed blocks (eg. with empty `last_commit` on non-first block) when decoding them from Protobuf or RPC responses, and adds missing `serde` derives on some Protobuf definitions. diff --git a/proto/Cargo.toml b/proto/Cargo.toml index b5e0685a3..b47febeec 100644 --- a/proto/Cargo.toml +++ b/proto/Cargo.toml @@ -30,7 +30,7 @@ serde_bytes = { version = "0.11", default-features = false, features = ["alloc"] subtle-encoding = { version = "0.5", default-features = false, features = ["hex", "base64", "alloc"] } time = { version = "0.3", default-features = false, features = ["macros", "parsing"] } flex-error = { version = "0.4.4", default-features = false } -tonic = { version = "0.10", optional = true } +tonic = { version = "0.11", optional = true } [dev-dependencies] serde_json = { version = "1.0", default-features = false, features = ["alloc"] }