diff --git a/CHANGELOG.md b/CHANGELOG.md index a8d1efeee..12ae8711b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,29 @@ +# [v0.8.3](https://github.com/hyperium/tonic/compare/v0.8.2...v0.8.3) (2022-11-28) + +Included in this release is also the sub-crate major version bumps: + +* `tonic-health` has been bumped to `0.8.0` +* `tonic-reflection` has been bumped to `0.6.0` +* `tonic-web` has been bumped to `0.5.0` + + +### Bug Fixes + +* do not panic while encoding oversized bodies ([#1142](https://github.com/hyperium/tonic/issues/1142)) ([33e22bb](https://github.com/hyperium/tonic/commit/33e22bbc5ef1b74de82394c3ebfea27382419620)), closes [#1141](https://github.com/hyperium/tonic/issues/1141) +* **reflection, health:** Remove transport feature ([#1112](https://github.com/hyperium/tonic/issues/1112)) ([7153289](https://github.com/hyperium/tonic/commit/7153289b51f7770cdd00cefeceddacc4cf36df97)) + + +### Features + +* **build:** Add `build_transport` builder option ([#1130](https://github.com/hyperium/tonic/issues/1130)) ([1f5bc9b](https://github.com/hyperium/tonic/commit/1f5bc9b9d55f814d1cb83de6f43239e275122265)) +* **build:** Add `CodeGenBuilder` ([#1154](https://github.com/hyperium/tonic/issues/1154)) ([c4525ba](https://github.com/hyperium/tonic/commit/c4525ba6ad21cf9db8d1857931f430cbe924aeb5)) +* **build:** Add disable_comments option ([#1127](https://github.com/hyperium/tonic/issues/1127)) ([e188521](https://github.com/hyperium/tonic/commit/e1885211495e63d962bc1d00f9be6eeaab2bb901)) +* Expose `Request#into_parts` and `Request#from_parts` ([#1118](https://github.com/hyperium/tonic/issues/1118)) ([b409ddd](https://github.com/hyperium/tonic/commit/b409ddd478959e239aeef3cb8715cd3ace470a8f)) +* **transport:** add `from_listener` for `TcpIncoming` ([#1093](https://github.com/hyperium/tonic/issues/1093)) ([0b03b30](https://github.com/hyperium/tonic/commit/0b03b30cccc67d517b05587614405d63d942b1bb)) +* **web:** Implement tower::Layer for tonic_web::Config ([#1119](https://github.com/hyperium/tonic/issues/1119)) ([40536dc](https://github.com/hyperium/tonic/commit/40536dc13428f6338610d74f7b45a5f9c87d9335)) +* **web:** Removed Cors impl and replaced with tower-http's CorsLayer ([#1123](https://github.com/hyperium/tonic/issues/1123)) ([a98d719](https://github.com/hyperium/tonic/commit/a98d719fb4b0a88127504a1ab3eb472e842c6b71)), closes [#1122](https://github.com/hyperium/tonic/issues/1122) + + # [0.8.2](https://github.com/hyperium/tonic/compare/v0.8.1...v0.8.2) (2022-09-28) diff --git a/tonic-build/src/lib.rs b/tonic-build/src/lib.rs index 81d4151c2..788ce1a25 100644 --- a/tonic-build/src/lib.rs +++ b/tonic-build/src/lib.rs @@ -70,7 +70,7 @@ html_logo_url = "https://raw.githubusercontent.com/tokio-rs/website/master/public/img/icons/tonic.svg" )] #![deny(rustdoc::broken_intra_doc_links)] -#![doc(html_root_url = "https://docs.rs/tonic-build/0.8.2")] +#![doc(html_root_url = "https://docs.rs/tonic-build/0.8.3")] #![doc(issue_tracker_base_url = "https://github.com/hyperium/tonic/issues/")] #![doc(test(no_crate_inject, attr(deny(rust_2018_idioms))))] #![cfg_attr(docsrs, feature(doc_cfg))] diff --git a/tonic-health/Cargo.toml b/tonic-health/Cargo.toml index 049c29676..b1e0337e5 100644 --- a/tonic-health/Cargo.toml +++ b/tonic-health/Cargo.toml @@ -12,7 +12,7 @@ license = "MIT" name = "tonic-health" readme = "README.md" repository = "https://github.com/hyperium/tonic" -version = "0.7.1" +version = "0.8.0" [features] default = ["transport"] diff --git a/tonic-health/src/lib.rs b/tonic-health/src/lib.rs index 9a51b50a1..920f9bfd1 100644 --- a/tonic-health/src/lib.rs +++ b/tonic-health/src/lib.rs @@ -16,7 +16,7 @@ html_logo_url = "https://raw.githubusercontent.com/tokio-rs/website/master/public/img/icons/tonic.svg" )] #![deny(rustdoc::broken_intra_doc_links)] -#![doc(html_root_url = "https://docs.rs/tonic-health/0.7.1")] +#![doc(html_root_url = "https://docs.rs/tonic-health/0.8.0")] #![doc(issue_tracker_base_url = "https://github.com/hyperium/tonic/issues/")] #![doc(test(no_crate_inject, attr(deny(rust_2018_idioms))))] #![cfg_attr(docsrs, feature(doc_cfg))] diff --git a/tonic-reflection/Cargo.toml b/tonic-reflection/Cargo.toml index a94bd88d7..e94e48187 100644 --- a/tonic-reflection/Cargo.toml +++ b/tonic-reflection/Cargo.toml @@ -15,7 +15,7 @@ license = "MIT" name = "tonic-reflection" readme = "README.md" repository = "https://github.com/hyperium/tonic" -version = "0.5.0" +version = "0.6.0" [dependencies] bytes = "1.0" diff --git a/tonic-reflection/src/lib.rs b/tonic-reflection/src/lib.rs index 1b0b22e12..d32656d79 100644 --- a/tonic-reflection/src/lib.rs +++ b/tonic-reflection/src/lib.rs @@ -10,7 +10,7 @@ html_logo_url = "https://github.com/hyperium/tonic/raw/master/.github/assets/tonic-docs.png" )] #![deny(rustdoc::broken_intra_doc_links)] -#![doc(html_root_url = "https://docs.rs/tonic-reflection/0.4.0")] +#![doc(html_root_url = "https://docs.rs/tonic-reflection/0.6.0")] #![doc(issue_tracker_base_url = "https://github.com/hyperium/tonic/issues/")] #![doc(test(no_crate_inject, attr(deny(rust_2018_idioms))))] #![cfg_attr(docsrs, feature(doc_cfg))] diff --git a/tonic-types/Cargo.toml b/tonic-types/Cargo.toml index a66c20fe4..a95896635 100644 --- a/tonic-types/Cargo.toml +++ b/tonic-types/Cargo.toml @@ -12,7 +12,7 @@ license = "MIT" name = "tonic-types" readme = "../README.md" repository = "https://github.com/hyperium/tonic" -version = "0.6.0" +version = "0.6.1" [dependencies] prost = "0.11" @@ -20,4 +20,4 @@ prost-types = "0.11" tonic = {version = "0.8", path = "../tonic"} [dev-dependencies] -tonic-build = {version = "0.8", path = "../tonic-build", features = ["prost"]} \ No newline at end of file +tonic-build = {version = "0.8", path = "../tonic-build", features = ["prost"]} diff --git a/tonic-types/src/lib.rs b/tonic-types/src/lib.rs index fef58631b..94abb3a4d 100644 --- a/tonic-types/src/lib.rs +++ b/tonic-types/src/lib.rs @@ -18,7 +18,7 @@ html_logo_url = "https://raw.githubusercontent.com/tokio-rs/website/master/public/img/icons/tonic.svg" )] #![deny(rustdoc::broken_intra_doc_links)] -#![doc(html_root_url = "https://docs.rs/tonic-types/0.6.0")] +#![doc(html_root_url = "https://docs.rs/tonic-types/0.6.1")] #![doc(issue_tracker_base_url = "https://github.com/hyperium/tonic/issues/")] use prost::{DecodeError, Message}; diff --git a/tonic-web/Cargo.toml b/tonic-web/Cargo.toml index f4285bc01..5958909a0 100644 --- a/tonic-web/Cargo.toml +++ b/tonic-web/Cargo.toml @@ -12,7 +12,7 @@ license = "MIT" name = "tonic-web" readme = "README.md" repository = "https://github.com/hyperium/tonic" -version = "0.4.0" +version = "0.5.0" [dependencies] base64 = "0.13" diff --git a/tonic-web/src/lib.rs b/tonic-web/src/lib.rs index 56790c82d..4adeedd52 100644 --- a/tonic-web/src/lib.rs +++ b/tonic-web/src/lib.rs @@ -84,7 +84,7 @@ rust_2018_idioms, unreachable_pub )] -#![doc(html_root_url = "https://docs.rs/tonic-web/0.4.0")] +#![doc(html_root_url = "https://docs.rs/tonic-web/0.5.0")] #![doc(issue_tracker_base_url = "https://github.com/hyperium/tonic/issues/")] pub use layer::GrpcWebLayer; diff --git a/tonic/Cargo.toml b/tonic/Cargo.toml index 7e7744380..a5d090fa6 100644 --- a/tonic/Cargo.toml +++ b/tonic/Cargo.toml @@ -20,7 +20,7 @@ keywords = ["rpc", "grpc", "async", "futures", "protobuf"] license = "MIT" readme = "../README.md" repository = "https://github.com/hyperium/tonic" -version = "0.8.2" +version = "0.8.3" [features] codegen = ["async-trait"] diff --git a/tonic/src/lib.rs b/tonic/src/lib.rs index 256574b3e..60fe447cd 100644 --- a/tonic/src/lib.rs +++ b/tonic/src/lib.rs @@ -81,7 +81,7 @@ #![doc( html_logo_url = "https://raw.githubusercontent.com/tokio-rs/website/master/public/img/icons/tonic.svg" )] -#![doc(html_root_url = "https://docs.rs/tonic/0.8.2")] +#![doc(html_root_url = "https://docs.rs/tonic/0.8.3")] #![doc(issue_tracker_base_url = "https://github.com/hyperium/tonic/issues/")] #![doc(test(no_crate_inject, attr(deny(rust_2018_idioms))))] #![cfg_attr(docsrs, feature(doc_cfg))]