-
Notifications
You must be signed in to change notification settings - Fork 2.1k
chore(deps): bump the tonic group across 1 directory with 4 updates #25091
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -199,10 +199,10 @@ tokio-stream = { version = "0.1.18", default-features = false } | |
| tokio-test = "0.4.5" | ||
| tokio-tungstenite = { version = "0.20.1", default-features = false } | ||
| toml = { version = "0.9.8", default-features = false, features = ["serde", "display", "parse"] } | ||
| tonic = { version = "0.11", default-features = false, features = ["transport", "codegen", "prost", "tls", "tls-roots", "gzip"] } | ||
| tonic-build = { version = "0.11", default-features = false, features = ["transport", "prost"] } | ||
| tonic-health = { version = "0.11", default-features = false } | ||
| tonic-reflection = { version = "0.11", default-features = false, features = ["server"] } | ||
| tonic = { version = "0.12", default-features = false, features = ["transport", "codegen", "prost", "tls", "tls-roots", "gzip"] } | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Bumping Useful? React with 👍 / 👎. |
||
| tonic-build = { version = "0.13", default-features = false, features = ["transport", "prost"] } | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Upgrading Useful? React with 👍 / 👎. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
The workspace build scripts still use Useful? React with 👍 / 👎. |
||
| tonic-health = { version = "0.13", default-features = false } | ||
| tonic-reflection = { version = "0.13", default-features = false, features = ["server"] } | ||
|
Comment on lines
+203
to
+205
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Useful? React with 👍 / 👎.
Comment on lines
+204
to
+205
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
This bump leaves the workspace with mixed tonic majors ( Useful? React with 👍 / 👎. |
||
| tracing = { version = "0.1.44", default-features = false } | ||
| tracing-subscriber = { version = "0.3.22", default-features = false, features = ["fmt"] } | ||
| url = { version = "2.5.4", default-features = false, features = ["serde"] } | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updating
tonicto0.12here introduces a prost major-version split that will break gRPC codegen consumers at compile time:tonic 0.12.3pullsprost 0.13.5(seeCargo.lock), while workspace crates likevector-api-clientandopentelemetry-protostill depend onprost 0.12.6/prost-build 0.12.6. For crates that generate stubs and then usetonic::codec::ProstCodec, request/response types derived fromprost 0.12do not satisfy theprost::Messagebounds expected by tonic’sprost 0.13, so the build fails untilprost,prost-build, andprost-typesare upgraded in lockstep (or tonic is kept at 0.11).Useful? React with 👍 / 👎.