chore(deps): update tokio-prost monorepo to 0.14.0 #28

Open
kjuulh wants to merge 1 commits from renovate/tokio-prost-monorepo into main
Owner

This PR contains the following updates:

Package Type Update Change
prost workspace.dependencies minor 0.13.1 -> 0.14.0
prost-types workspace.dependencies minor 0.13.1 -> 0.14.0

⚠️ Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

tokio-rs/prost (prost)

v0.14.1

Compare Source

PROST! is a Protocol Buffers implementation for the Rust Language. prost generates simple, idiomatic Rust code from proto2 and proto3 files.

⚠️ Revert emission of rerun commands

Version 0.14.1 reverts the emission of rerun commands. Other than this change, it is identical to 0.14.0.

In version 0.14.0, prost-build began emitting rerun commands. While intended to improve build correctness, this change caused regressions for some users—for example, those generating protos from an includes directory. These edge cases are difficult to address reliably, so the change has been rolled back in 0.14.1.

For more details, see issue #​1296.

Breaking changes

  • prost: Relax Message Debug trait bound (#​1147)

    BREAKING CHANGE: trait Debug was a supertrait of trait Message. This is no longer required by prost. If your code relies on trait Debug being implemented for every impl Message, you must now explicitly state that you require both Debug and Message. For example: where M: Debug + Message

  • prost: Remove prost-derive feature (#​1247)

    BREAKING CHANGE: Feature flag prost-derive is renamed to derive. Please rename any usage of prost-derive feature in your Cargo.toml.

  • prost-build: Prevent repeated fields to be boxed (#​1237)

    BREAKING CHANGE: A repeated field that is manually marked as boxed was typed as Vec<Box<T>>. Those fields are now simply typed as Vec<T> to prevent double indirection. The boxed configuration is effectively ignored for repeated fields.

  • prost-build: Make type_name_domain cumulative (#​1228)

    BREAKING CHANGE: The configuration for domain names of messages is now cumulative. All calls to prost_build::Config::type_name_domain are now concatenated. The previous behavior was that only the arguments of the last call were used. If you do multiple calls to type_name_domain, you need to remove all but the last call to maintain the same behavior.

  • prost-build: Derive Eq and Hash trait for messages where possible (#​1175)

    BREAKING CHANGE: prost-build will automatically derive trait Eq and trait Hash for types where all field support those as well. If you manually impl Eq and/or impl Hash for generated types, then you need to remove the manual implementation. If you use type_attribute to derive(Eq) and/or derive(Hash), then you need to remove those.

Features

  • prost-types: Implement conversion Duration to/from chrono::TimeDelta (#​1236)
  • prost-build: Prepare for 2024 keyword gen (#​1257)

Dependencies

  • (deps) Update pulldown-cmark to 0.13 (#​1259)
  • (deps) update criterion requirement from 0.5 to 0.6 (#​1280)

Documentation

  • Update dead link LICENSE in prost-types/README.md (#​1262)

Styling

Testing

  • Run tests using edition 2024 (#​1254)
  • Run clippy with edition 2024 enabled (#​1256)

v0.14.0

Compare Source

PROST! is a Protocol Buffers implementation for the Rust Language. prost generates simple, idiomatic Rust code from proto2 and proto3 files.

Breaking changes

  • prost: Relax Message Debug trait bound (#​1147)

    BREAKING CHANGE: trait Debug was a supertrait of trait Message. This is no longer required by prost. If your code relies on trait Debug being implemented for every impl Message, you must now explicitly state that you require both Debug and Message. For example: where M: Debug + Message

  • prost: Remove prost-derive feature (#​1247)

    BREAKING CHANGE: Feature flag prost-derive is renamed to derive. Please rename any usage of prost-derive feature in your Cargo.toml.

  • prost-build: Emit rerun commands (#​1140)

    BREAKING CHANGE: Previously cargo assumed it had to rerun build.rs if any files in the project changed. prost-build will now emit rerun commands, which means only the explicitly marked files cause a rerun. If your build.rs is dependent on any other file paths than those given to prost-build, then your build.rs needs to emit rerun commands as well.

  • prost-build: Prevent repeated fields to be boxed (#​1237)

    BREAKING CHANGE: A repeated field that is manually marked as boxed was typed as Vec<Box<T>>. Those fields are now simply typed as Vec<T> to prevent double indirection. The boxed configuration is effectively ignored for repeated fields.

  • prost-build: Make type_name_domain cumulative (#​1228)

    BREAKING CHANGE: The configuration for domain names of messages is now cumulative. All calls to prost_build::Config::type_name_domain are now concatenated. The previous behavior was that only the arguments of the last call were used. If you do multiple calls to type_name_domain, you need to remove all but the last call to maintain the same behavior.

  • prost-build: Derive Eq and Hash trait for messages where possible (#​1175)

    BREAKING CHANGE: prost-build will automatically derive trait Eq and trait Hash for types where all field support those as well. If you manually impl Eq and/or impl Hash for generated types, then you need to remove the manual implementation. If you use type_attribute to derive(Eq) and/or derive(Hash), then you need to remove those.

Features

  • prost-types: Implement conversion Duration to/from chrono::TimeDelta (#​1236)
  • prost-build: Prepare for 2024 keyword gen (#​1257)

Dependencies

  • (deps) Update pulldown-cmark to 0.13 (#​1259)
  • (deps) update criterion requirement from 0.5 to 0.6 (#​1280)

Documentation

  • Update dead link LICENSE in prost-types/README.md (#​1262)

Styling

Testing

  • Run tests using edition 2024 (#​1254)
  • Run clippy with edition 2024 enabled (#​1256)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [prost](https://github.com/tokio-rs/prost) | workspace.dependencies | minor | `0.13.1` -> `0.14.0` | | [prost-types](https://github.com/tokio-rs/prost) | workspace.dependencies | minor | `0.13.1` -> `0.14.0` | --- > ⚠️ **Warning** > > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>tokio-rs/prost (prost)</summary> ### [`v0.14.1`](https://github.com/tokio-rs/prost/blob/HEAD/CHANGELOG.md#Prost-version-0141) [Compare Source](https://github.com/tokio-rs/prost/compare/v0.14.0...v0.14.1) *PROST!* is a [Protocol Buffers](https://developers.google.com/protocol-buffers/) implementation for the [Rust Language](https://www.rust-lang.org/). `prost` generates simple, idiomatic Rust code from `proto2` and `proto3` files. #### ⚠️ Revert emission of `rerun` commands Version 0.14.1 reverts the emission of `rerun` commands. Other than this change, it is identical to 0.14.0. In version 0.14.0, `prost-build` began emitting `rerun` commands. While intended to improve build correctness, this change caused regressions for some users—for example, those generating `protos` from an `includes` directory. These edge cases are difficult to address reliably, so the change has been rolled back in 0.14.1. For more details, see [issue #&#8203;1296](https://github.com/tokio-rs/prost/issues/1296). #### Breaking changes - prost: Relax Message Debug trait bound ([#&#8203;1147](https://github.com/tokio-rs/prost/issues/1147)) BREAKING CHANGE: `trait Debug` was a supertrait of `trait Message`. This is no longer required by `prost`. If your code relies on `trait Debug` being implemented for every `impl Message`, you must now explicitly state that you require both Debug and Message. For example: `where M: Debug + Message` - prost: Remove prost-derive feature ([#&#8203;1247](https://github.com/tokio-rs/prost/issues/1247)) BREAKING CHANGE: Feature flag `prost-derive` is renamed to `derive`. Please rename any usage of `prost-derive` feature in your `Cargo.toml`. - prost-build: Prevent repeated fields to be boxed ([#&#8203;1237](https://github.com/tokio-rs/prost/issues/1237)) BREAKING CHANGE: A repeated field that is manually marked as boxed was typed as `Vec<Box<T>>`. Those fields are now simply typed as `Vec<T>` to prevent double indirection. The `boxed` configuration is effectively ignored for repeated fields. - prost-build: Make `type_name_domain` cumulative ([#&#8203;1228](https://github.com/tokio-rs/prost/issues/1228)) BREAKING CHANGE: The configuration for domain names of messages is now cumulative. All calls to `prost_build::Config::type_name_domain` are now concatenated. The previous behavior was that only the arguments of the last call were used. If you do multiple calls to type_name_domain, you need to remove all but the last call to maintain the same behavior. - prost-build: Derive Eq and Hash trait for messages where possible ([#&#8203;1175](https://github.com/tokio-rs/prost/issues/1175)) BREAKING CHANGE: `prost-build` will automatically derive `trait Eq` and `trait Hash` for types where all field support those as well. If you manually `impl Eq` and/or `impl Hash` for generated types, then you need to remove the manual implementation. If you use `type_attribute` to `derive(Eq)` and/or `derive(Hash)`, then you need to remove those. #### Features - prost-types: Implement conversion `Duration` to/from `chrono::TimeDelta` ([#&#8203;1236](https://github.com/tokio-rs/prost/issues/1236)) - prost-build: Prepare for 2024 keyword `gen` ([#&#8203;1257](https://github.com/tokio-rs/prost/issues/1257)) #### Dependencies - *(deps)* Update pulldown-cmark to 0.13 ([#&#8203;1259](https://github.com/tokio-rs/prost/issues/1259)) - *(deps)* update criterion requirement from 0.5 to 0.6 ([#&#8203;1280](https://github.com/tokio-rs/prost/issues/1280)) #### Documentation - Update dead link LICENSE in `prost-types/README.md` ([#&#8203;1262](https://github.com/tokio-rs/prost/issues/1262)) #### Styling - Use DoubleEndedIterator::next_back ([#&#8203;1255](https://github.com/tokio-rs/prost/issues/1255)) - Fix typo ([#&#8203;1260](https://github.com/tokio-rs/prost/issues/1260)) #### Testing - Run tests using edition 2024 ([#&#8203;1254](https://github.com/tokio-rs/prost/issues/1254)) - Run clippy with edition 2024 enabled ([#&#8203;1256](https://github.com/tokio-rs/prost/issues/1256)) ### [`v0.14.0`](https://github.com/tokio-rs/prost/blob/HEAD/CHANGELOG.md#Prost-version-0140) [Compare Source](https://github.com/tokio-rs/prost/compare/v0.13.5...v0.14.0) *PROST!* is a [Protocol Buffers](https://developers.google.com/protocol-buffers/) implementation for the [Rust Language](https://www.rust-lang.org/). `prost` generates simple, idiomatic Rust code from `proto2` and `proto3` files. #### Breaking changes - prost: Relax Message Debug trait bound ([#&#8203;1147](https://github.com/tokio-rs/prost/issues/1147)) BREAKING CHANGE: `trait Debug` was a supertrait of `trait Message`. This is no longer required by `prost`. If your code relies on `trait Debug` being implemented for every `impl Message`, you must now explicitly state that you require both Debug and Message. For example: `where M: Debug + Message` - prost: Remove prost-derive feature ([#&#8203;1247](https://github.com/tokio-rs/prost/issues/1247)) BREAKING CHANGE: Feature flag `prost-derive` is renamed to `derive`. Please rename any usage of `prost-derive` feature in your `Cargo.toml`. - prost-build: Emit `rerun` commands ([#&#8203;1140](https://github.com/tokio-rs/prost/issues/1140)) BREAKING CHANGE: Previously `cargo` assumed it had to rerun `build.rs` if any files in the project changed. `prost-build` will now emit `rerun` commands, which means only the explicitly marked files cause a rerun. If your `build.rs` is dependent on any other file paths than those given to `prost-build`, then your `build.rs` needs to emit `rerun` commands as well. - prost-build: Prevent repeated fields to be boxed ([#&#8203;1237](https://github.com/tokio-rs/prost/issues/1237)) BREAKING CHANGE: A repeated field that is manually marked as boxed was typed as `Vec<Box<T>>`. Those fields are now simply typed as `Vec<T>` to prevent double indirection. The `boxed` configuration is effectively ignored for repeated fields. - prost-build: Make `type_name_domain` cumulative ([#&#8203;1228](https://github.com/tokio-rs/prost/issues/1228)) BREAKING CHANGE: The configuration for domain names of messages is now cumulative. All calls to `prost_build::Config::type_name_domain` are now concatenated. The previous behavior was that only the arguments of the last call were used. If you do multiple calls to type_name_domain, you need to remove all but the last call to maintain the same behavior. - prost-build: Derive Eq and Hash trait for messages where possible ([#&#8203;1175](https://github.com/tokio-rs/prost/issues/1175)) BREAKING CHANGE: `prost-build` will automatically derive `trait Eq` and `trait Hash` for types where all field support those as well. If you manually `impl Eq` and/or `impl Hash` for generated types, then you need to remove the manual implementation. If you use `type_attribute` to `derive(Eq)` and/or `derive(Hash)`, then you need to remove those. #### Features - prost-types: Implement conversion `Duration` to/from `chrono::TimeDelta` ([#&#8203;1236](https://github.com/tokio-rs/prost/issues/1236)) - prost-build: Prepare for 2024 keyword `gen` ([#&#8203;1257](https://github.com/tokio-rs/prost/issues/1257)) #### Dependencies - *(deps)* Update pulldown-cmark to 0.13 ([#&#8203;1259](https://github.com/tokio-rs/prost/issues/1259)) - *(deps)* update criterion requirement from 0.5 to 0.6 ([#&#8203;1280](https://github.com/tokio-rs/prost/issues/1280)) #### Documentation - Update dead link LICENSE in `prost-types/README.md` ([#&#8203;1262](https://github.com/tokio-rs/prost/issues/1262)) #### Styling - Use DoubleEndedIterator::next_back ([#&#8203;1255](https://github.com/tokio-rs/prost/issues/1255)) - Fix typo ([#&#8203;1260](https://github.com/tokio-rs/prost/issues/1260)) #### Testing - Run tests using edition 2024 ([#&#8203;1254](https://github.com/tokio-rs/prost/issues/1254)) - Run clippy with edition 2024 enabled ([#&#8203;1256](https://github.com/tokio-rs/prost/issues/1256)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yNjQuMCIsInVwZGF0ZWRJblZlciI6IjM5LjI2NC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
kjuulh added 1 commit 2025-06-19 02:37:37 +02:00
chore(deps): update tokio-prost monorepo to 0.14.0
Some checks failed
renovate/artifacts Artifact file update failure
c92cfc8281
Author
Owner

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path Cargo.toml --package prost@0.13.5 --precise 0.14.1
    Updating crates.io index
error: failed to select a version for the requirement `prost = "^0.13"`
candidate versions found which didn't match: 0.14.1
location searched: crates.io index
required by package `tonic v0.12.3`
    ... which satisfies dependency `tonic = "^0.12.3"` (locked to 0.12.3) of package `nodata v0.1.0 (/tmp/renovate/repos/gitea/kjuulh/nodata/crates/nodata)`

### ⚠️ Artifact update problem Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is. ♻ Renovate will retry this branch, including artifacts, only when one of the following happens: - any of the package files in this branch needs updating, or - the branch becomes conflicted, or - you click the rebase/retry checkbox if found above, or - you rename this PR's title to start with "rebase!" to trigger it manually The artifact failure details are included below: ##### File name: Cargo.lock ``` Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path Cargo.toml --package prost@0.13.5 --precise 0.14.1 Updating crates.io index error: failed to select a version for the requirement `prost = "^0.13"` candidate versions found which didn't match: 0.14.1 location searched: crates.io index required by package `tonic v0.12.3` ... which satisfies dependency `tonic = "^0.12.3"` (locked to 0.12.3) of package `nodata v0.1.0 (/tmp/renovate/repos/gitea/kjuulh/nodata/crates/nodata)` ```
Some checks failed
renovate/artifacts Artifact file update failure
This pull request can be merged automatically.
You are not authorized to merge this pull request.

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/tokio-prost-monorepo:renovate/tokio-prost-monorepo
git checkout renovate/tokio-prost-monorepo
Sign in to join this conversation.
No Reviewers
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: kjuulh/nodata#28
No description provided.