Skip to content

Commit 82a856f

Browse files
djctottoto
andauthored
chore: prepare 0.12.2 release (#1881)
Co-authored-by: tottoto <[email protected]>
1 parent 4befdce commit 82a856f

File tree

13 files changed

+41
-18
lines changed

13 files changed

+41
-18
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
# [0.12.2](https://github.com/hyperium/tonic/compare/v0.12.1...v0.12.2) (2024-08-23)
2+
3+
### Features
4+
5+
* Move TimeoutExpired out of transport (#1826)
6+
* Move ConnectError type from transport (#1828)
7+
* **channel:** allow setting max_header_list_size (#1835)
8+
* **router:** Add RoutesBuilder constructor (#1855)
9+
* **tls:** Rename tls-roots feature with tls-native-roots (#1860)
10+
* **router:** Rename Routes::into_router with into_axum_router (#1862)
11+
* **router:** Implement from axum::Router for Routes (#1863)
12+
* **channel:** Re-enable TLS based on Cargo features in generated clients (#1866)
13+
* **server:** allow setting max_header_list_size (#1870)
14+
* **build:** Expose formatted service name (#1684)
15+
* **reflection:** add back support for v1alpha reflection protocol (#1888)
16+
17+
### Bug Fixes
18+
19+
* **router:** Add missing unimplemented fallback to RoutesBuilder (#1864)
20+
* **server:** Prevent server from exiting on ECONNABORTED (#1874)
21+
* **web:** fix panic in trailer parsing on multiple trailers (#1880)
22+
* **web:** fix empty trailer parsing causing infinite parser loop (#1883)
23+
124
# [0.12.1](https://github.com/hyperium/tonic/compare/v0.12.0...v0.12.1) (2024-07-17)
225

326
### Bug Fixes

tonic-build/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ categories = ["network-programming", "asynchronous"]
44
description = """
55
Codegen module of `tonic` gRPC implementation.
66
"""
7-
documentation = "https://docs.rs/tonic-build/0.12.1"
7+
documentation = "https://docs.rs/tonic-build/0.12.2"
88
edition = "2021"
99
homepage = "https://github.com/hyperium/tonic"
1010
keywords = ["rpc", "grpc", "async", "codegen", "protobuf"]
1111
license = "MIT"
1212
name = "tonic-build"
1313
readme = "README.md"
1414
repository = "https://github.com/hyperium/tonic"
15-
version = "0.12.1"
15+
version = "0.12.2"
1616

1717
[dependencies]
1818
prettyplease = { version = "0.2" }

tonic-build/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/website/master/public/img/icons/tonic.svg"
7171
)]
7272
#![deny(rustdoc::broken_intra_doc_links)]
73-
#![doc(html_root_url = "https://docs.rs/tonic-build/0.12.1")]
73+
#![doc(html_root_url = "https://docs.rs/tonic-build/0.12.2")]
7474
#![doc(issue_tracker_base_url = "https://github.com/hyperium/tonic/issues/")]
7575
#![doc(test(no_crate_inject, attr(deny(rust_2018_idioms))))]
7676
#![cfg_attr(docsrs, feature(doc_auto_cfg))]

tonic-health/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ categories = ["network-programming", "asynchronous"]
44
description = """
55
Health Checking module of `tonic` gRPC implementation.
66
"""
7-
documentation = "https://docs.rs/tonic-health/0.12.1"
7+
documentation = "https://docs.rs/tonic-health/0.12.2"
88
edition = "2021"
99
homepage = "https://github.com/hyperium/tonic"
1010
keywords = ["rpc", "grpc", "async", "healthcheck"]
1111
license = "MIT"
1212
name = "tonic-health"
1313
readme = "README.md"
1414
repository = "https://github.com/hyperium/tonic"
15-
version = "0.12.1"
15+
version = "0.12.2"
1616

1717
[features]
1818
default = ["transport"]

tonic-health/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/website/master/public/img/icons/tonic.svg"
1717
)]
1818
#![deny(rustdoc::broken_intra_doc_links)]
19-
#![doc(html_root_url = "https://docs.rs/tonic-health/0.12.1")]
19+
#![doc(html_root_url = "https://docs.rs/tonic-health/0.12.2")]
2020
#![doc(issue_tracker_base_url = "https://github.com/hyperium/tonic/issues/")]
2121
#![doc(test(no_crate_inject, attr(deny(rust_2018_idioms))))]
2222
#![cfg_attr(docsrs, feature(doc_auto_cfg))]

tonic-reflection/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ Server Reflection module of `tonic` gRPC implementation.
99
"""
1010
edition = "2021"
1111
homepage = "https://github.com/hyperium/tonic"
12-
documentation = "https://docs.rs/tonic-reflection/0.12.1"
12+
documentation = "https://docs.rs/tonic-reflection/0.12.2"
1313
keywords = ["rpc", "grpc", "async", "reflection"]
1414
license = "MIT"
1515
name = "tonic-reflection"
1616
readme = "README.md"
1717
repository = "https://github.com/hyperium/tonic"
18-
version = "0.12.1"
18+
version = "0.12.2"
1919

2020
[package.metadata.docs.rs]
2121
all-features = true

tonic-reflection/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
html_logo_url = "https://github.com/hyperium/tonic/raw/master/.github/assets/tonic-docs.png"
1111
)]
1212
#![deny(rustdoc::broken_intra_doc_links)]
13-
#![doc(html_root_url = "https://docs.rs/tonic-reflection/0.12.1")]
13+
#![doc(html_root_url = "https://docs.rs/tonic-reflection/0.12.2")]
1414
#![doc(issue_tracker_base_url = "https://github.com/hyperium/tonic/issues/")]
1515
#![doc(test(no_crate_inject, attr(deny(rust_2018_idioms))))]
1616
#![cfg_attr(docsrs, feature(doc_auto_cfg))]

tonic-types/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ categories = ["web-programming", "network-programming", "asynchronous"]
77
description = """
88
A collection of useful protobuf types that can be used with `tonic`.
99
"""
10-
documentation = "https://docs.rs/tonic-types/0.12.1"
10+
documentation = "https://docs.rs/tonic-types/0.12.2"
1111
edition = "2021"
1212
homepage = "https://github.com/hyperium/tonic"
1313
keywords = ["rpc", "grpc", "protobuf"]
1414
license = "MIT"
1515
name = "tonic-types"
1616
readme = "README.md"
1717
repository = "https://github.com/hyperium/tonic"
18-
version = "0.12.1"
18+
version = "0.12.2"
1919

2020
[dependencies]
2121
prost = "0.13"

tonic-types/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@
150150
html_logo_url = "https://raw.githubusercontent.com/tokio-rs/website/master/public/img/icons/tonic.svg"
151151
)]
152152
#![deny(rustdoc::broken_intra_doc_links)]
153-
#![doc(html_root_url = "https://docs.rs/tonic-types/0.12.1")]
153+
#![doc(html_root_url = "https://docs.rs/tonic-types/0.12.2")]
154154
#![doc(issue_tracker_base_url = "https://github.com/hyperium/tonic/issues/")]
155155

156156
mod generated {

tonic-web/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ categories = ["network-programming", "asynchronous"]
44
description = """
55
grpc-web protocol translation for tonic services.
66
"""
7-
documentation = "https://docs.rs/tonic-web/0.12.1"
7+
documentation = "https://docs.rs/tonic-web/0.12.2"
88
edition = "2021"
99
homepage = "https://github.com/hyperium/tonic"
1010
keywords = ["rpc", "grpc", "grpc-web"]
1111
license = "MIT"
1212
name = "tonic-web"
1313
readme = "README.md"
1414
repository = "https://github.com/hyperium/tonic"
15-
version = "0.12.1"
15+
version = "0.12.2"
1616

1717
[dependencies]
1818
base64 = "0.22"

0 commit comments

Comments
 (0)