chore(deps): update tokio-prost monorepo to 0.14 #7

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 -> 0.14
prost-build build-dependencies minor 0.12 -> 0.14
prost-build workspace.dependencies minor 0.12 -> 0.14
prost-types workspace.dependencies minor 0.13 -> 0.14

⚠️ 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)

v0.13.5

Compare Source

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

Features

  • prost-types: Derive Arbitrary (#​1188)

Documentation

  • Use intra doc links instead of HTML tags (#​1219)

Dependencies

  • Update pulldown-cmark-to-cmark requirement from >=16, <=19 to >=16, <=20 (#​1206)
  • Update itertools requirement from >=0.10, <=0.13 to >=0.10, <=0.14 (#​1222)
  • Update petgraph requirement to include 0.7 (#​1226)
  • Update rand requirement from 0.8 to 0.9 (#​1233)
  • Bump clippy to 1.83 (#​1220)
  • Update flake.lock (#​1216)

Styling

Testing

  • default_enum_value: Move tests to separate module (#​1198)
  • nesting: Move tests to separate module (#​1218)
  • recursive_oneof: Move tests to separate module (#​1225)
  • boxed_field: Box an oneof field (#​1235)
  • groups: Move tests to separate module (#​1234)
  • default_string_escape: Move tests to separate module (#​1239)
  • Move DecodeError tests closer to the implementation (#​1227)

v0.13.4

Compare Source

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

Features

  • Impl Name for Protobuf well-known wrapper types (#​1174)

Performance

  • NonZeroU64 to optimize encoded_len_varint (#​1192)

Dependencies

  • Remove unused bytes dependency from prost-build (#​1169)
  • Update pulldown-cmark-to-cmark requirement from >=16, <=17 to >=16, <=18 (#​1173)
  • Update pulldown-cmark-to-cmark requirement from >=16, <=18 to >=16, <=19 (#​1195)
  • Update protobuf to v25.3 (#​1165)
  • Update protobuf to v25.4 (#​1176)

Styling

  • Remove explicit lifetimes (#​1180)
  • Remove unnecessary empty line after document (#​1181)

Testing

  • (boxed_field) Confirm Foo::bar is boxed (#​1168)
  • Move build.rs to standard location (#​1167)
  • (custom_debug) Merge skip_debug into custom_debug (#​1178)
  • Rename invalid_doctest to disable_comments (#​1183)
  • (custom_attributes) Move module to separate file (#​1187)

Build

  • Bump clippy version to 1.82 (#​1182)
  • Restrict permissions of GITHUB_TOKEN (#​1189)

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` -> `0.14` | | [prost-build](https://github.com/tokio-rs/prost) | build-dependencies | minor | `0.12` -> `0.14` | | [prost-build](https://github.com/tokio-rs/prost) | workspace.dependencies | minor | `0.12` -> `0.14` | | [prost-types](https://github.com/tokio-rs/prost) | workspace.dependencies | minor | `0.13` -> `0.14` | --- > ⚠️ **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)) ### [`v0.13.5`](https://github.com/tokio-rs/prost/blob/HEAD/CHANGELOG.md#Prost-version-0135) [Compare Source](https://github.com/tokio-rs/prost/compare/v0.13.4...v0.13.5) *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. #### Features - prost-types: Derive Arbitrary ([#&#8203;1188](https://github.com/tokio-rs/prost/issues/1188)) #### Documentation - Use intra doc links instead of HTML tags ([#&#8203;1219](https://github.com/tokio-rs/prost/issues/1219)) #### Dependencies - Update pulldown-cmark-to-cmark requirement from >=16, <=19 to >=16, <=20 ([#&#8203;1206](https://github.com/tokio-rs/prost/issues/1206)) - Update itertools requirement from >=0.10, <=0.13 to >=0.10, <=0.14 ([#&#8203;1222](https://github.com/tokio-rs/prost/issues/1222)) - Update petgraph requirement to include 0.7 ([#&#8203;1226](https://github.com/tokio-rs/prost/issues/1226)) - Update rand requirement from 0.8 to 0.9 ([#&#8203;1233](https://github.com/tokio-rs/prost/issues/1233)) - Bump clippy to 1.83 ([#&#8203;1220](https://github.com/tokio-rs/prost/issues/1220)) - Update flake.lock ([#&#8203;1216](https://github.com/tokio-rs/prost/issues/1216)) #### Styling - Replace unnecessary `map_or` ([#&#8203;1221](https://github.com/tokio-rs/prost/issues/1221)) - prost-build: Use enum getter ([#&#8203;1238](https://github.com/tokio-rs/prost/issues/1238)) #### Testing - default_enum_value: Move tests to separate module ([#&#8203;1198](https://github.com/tokio-rs/prost/issues/1198)) - nesting: Move tests to separate module ([#&#8203;1218](https://github.com/tokio-rs/prost/issues/1218)) - recursive_oneof: Move tests to separate module ([#&#8203;1225](https://github.com/tokio-rs/prost/issues/1225)) - boxed_field: Box an oneof field ([#&#8203;1235](https://github.com/tokio-rs/prost/issues/1235)) - groups: Move tests to separate module ([#&#8203;1234](https://github.com/tokio-rs/prost/issues/1234)) - default_string_escape: Move tests to separate module ([#&#8203;1239](https://github.com/tokio-rs/prost/issues/1239)) - Move DecodeError tests closer to the implementation ([#&#8203;1227](https://github.com/tokio-rs/prost/issues/1227)) ### [`v0.13.4`](https://github.com/tokio-rs/prost/blob/HEAD/CHANGELOG.md#Prost-version-0134) [Compare Source](https://github.com/tokio-rs/prost/compare/v0.13.3...v0.13.4) *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. #### Features - Impl Name for Protobuf well-known wrapper types ([#&#8203;1174](https://github.com/tokio-rs/prost/issues/1174)) #### Performance - NonZeroU64 to optimize encoded_len_varint ([#&#8203;1192](https://github.com/tokio-rs/prost/issues/1192)) #### Dependencies - Remove unused `bytes` dependency from `prost-build` ([#&#8203;1169](https://github.com/tokio-rs/prost/issues/1169)) - Update pulldown-cmark-to-cmark requirement from >=16, <=17 to >=16, <=18 ([#&#8203;1173](https://github.com/tokio-rs/prost/issues/1173)) - Update pulldown-cmark-to-cmark requirement from >=16, <=18 to >=16, <=19 ([#&#8203;1195](https://github.com/tokio-rs/prost/issues/1195)) - Update protobuf to v25.3 ([#&#8203;1165](https://github.com/tokio-rs/prost/issues/1165)) - Update protobuf to v25.4 ([#&#8203;1176](https://github.com/tokio-rs/prost/issues/1176)) #### Styling - Remove explicit lifetimes ([#&#8203;1180](https://github.com/tokio-rs/prost/issues/1180)) - Remove unnecessary empty line after document ([#&#8203;1181](https://github.com/tokio-rs/prost/issues/1181)) #### Testing - *(boxed_field)* Confirm `Foo::bar` is boxed ([#&#8203;1168](https://github.com/tokio-rs/prost/issues/1168)) - Move build.rs to standard location ([#&#8203;1167](https://github.com/tokio-rs/prost/issues/1167)) - *(custom_debug)* Merge `skip_debug` into `custom_debug` ([#&#8203;1178](https://github.com/tokio-rs/prost/issues/1178)) - Rename `invalid_doctest` to `disable_comments` ([#&#8203;1183](https://github.com/tokio-rs/prost/issues/1183)) - *(custom_attributes)* Move module to separate file ([#&#8203;1187](https://github.com/tokio-rs/prost/issues/1187)) #### Build - Bump clippy version to 1.82 ([#&#8203;1182](https://github.com/tokio-rs/prost/issues/1182)) - Restrict permissions of `GITHUB_TOKEN` ([#&#8203;1189](https://github.com/tokio-rs/prost/issues/1189)) </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:eyJjcmVhdGVkSW5WZXIiOiIzNy4zNzUuMSIsInVwZGF0ZWRJblZlciI6IjM5LjI2NC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
kjuulh force-pushed renovate/tokio-prost-monorepo from 0f198ad106 to 6478d0434b 2024-08-22 00:21:16 +02:00 Compare
kjuulh changed title from chore(deps): update tokio-prost monorepo to v0.12.6 to chore(deps): update tokio-prost monorepo to 0.13 2024-08-22 00:21:18 +02:00
kjuulh force-pushed renovate/tokio-prost-monorepo from 6478d0434b to 61fa8f7563 2024-11-18 02:19:53 +01:00 Compare
kjuulh changed title from chore(deps): update tokio-prost monorepo to 0.13 to chore(deps): update rust crate prost-build to 0.13 2024-11-18 02:19:54 +01:00
kjuulh force-pushed renovate/tokio-prost-monorepo from 61fa8f7563 to 0220d8cfec 2024-12-07 02:28:44 +01:00 Compare
kjuulh changed title from chore(deps): update rust crate prost-build to 0.13 to chore(deps): update tokio-prost monorepo to v0.13.4 2024-12-07 02:28:44 +01:00
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.3 --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 `crunch-nodata v0.1.0 (/tmp/renovate/repos/gitea/kjuulh/crunch/crates/crunch-nodata)`
    ... which satisfies path dependency `crunch-nodata` (locked to 0.1.0) of package `crunch v0.1.0 (/tmp/renovate/repos/gitea/kjuulh/crunch/crates/crunch)`

### ⚠️ 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.3 --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 `crunch-nodata v0.1.0 (/tmp/renovate/repos/gitea/kjuulh/crunch/crates/crunch-nodata)` ... which satisfies path dependency `crunch-nodata` (locked to 0.1.0) of package `crunch v0.1.0 (/tmp/renovate/repos/gitea/kjuulh/crunch/crates/crunch)` ```
kjuulh force-pushed renovate/tokio-prost-monorepo from 0220d8cfec to 9ad9bd73f7 2024-12-07 06:23:48 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 9ad9bd73f7 to da7834efbf 2024-12-08 02:23:00 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from da7834efbf to 5ff28645d4 2024-12-08 06:25:31 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 5ff28645d4 to 2326817665 2024-12-09 02:24:06 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 2326817665 to 5922d41fba 2024-12-09 06:35:11 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 5922d41fba to 2e2889a0be 2024-12-10 02:24:26 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 2e2889a0be to 5678ba56ce 2024-12-10 06:24:25 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 5678ba56ce to 3814016a40 2024-12-11 02:32:17 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 3814016a40 to 4c3bea6ca1 2024-12-11 06:22:33 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 4c3bea6ca1 to b8d12e4706 2024-12-12 02:24:55 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from b8d12e4706 to 5871f2d664 2024-12-12 06:21:53 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 5871f2d664 to f4417e51a2 2024-12-13 02:23:16 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from f4417e51a2 to 52268c588f 2024-12-13 06:22:06 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 52268c588f to 3c23f868e2 2024-12-14 02:22:23 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 3c23f868e2 to ccd65251b5 2024-12-14 06:22:09 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from ccd65251b5 to 8dddecb05f 2024-12-15 02:21:25 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 8dddecb05f to 2caf7869bb 2024-12-15 06:21:03 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 2caf7869bb to 196f563979 2024-12-16 02:25:56 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 196f563979 to d0c46fff51 2024-12-16 06:23:52 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from d0c46fff51 to ba9f35c21c 2024-12-17 02:23:27 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from ba9f35c21c to cd73a5651d 2024-12-17 06:24:54 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from cd73a5651d to 8559217c5c 2024-12-18 02:25:10 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 8559217c5c to 0b1cd4c992 2024-12-18 06:21:31 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 0b1cd4c992 to b1411d0d9c 2024-12-19 02:25:24 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from b1411d0d9c to b3c72dea5e 2024-12-19 06:21:36 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from b3c72dea5e to 059f399b1e 2024-12-20 02:23:03 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 059f399b1e to d7aa87ff2f 2024-12-20 06:23:28 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from d7aa87ff2f to 59245e1070 2024-12-21 02:25:19 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 59245e1070 to 68a414cf2f 2024-12-21 06:21:35 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 68a414cf2f to 9cd1b524d6 2024-12-22 02:23:07 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 9cd1b524d6 to 5f3b344c19 2024-12-22 06:21:36 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 5f3b344c19 to 29d18a21a5 2024-12-23 02:26:52 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 29d18a21a5 to ca3fdff97b 2024-12-23 06:28:29 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from ca3fdff97b to fa01c30e64 2024-12-24 02:29:44 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from fa01c30e64 to 21dd914005 2024-12-24 06:21:43 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 21dd914005 to ee8e25fec8 2024-12-25 02:26:28 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from ee8e25fec8 to b322ed5746 2024-12-25 06:22:52 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from b322ed5746 to 7d1c92263d 2024-12-26 02:24:20 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 7d1c92263d to fa3c70402e 2024-12-26 06:23:03 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from fa3c70402e to e4b8873e74 2024-12-27 02:22:35 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from e4b8873e74 to 212661d58c 2024-12-27 06:20:40 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 212661d58c to acbde415c4 2024-12-28 02:26:29 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from acbde415c4 to 45bbaeed62 2024-12-28 06:22:18 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 45bbaeed62 to 0c1bc3255c 2024-12-29 02:28:25 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 0c1bc3255c to c2f012c19d 2024-12-29 06:21:27 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from c2f012c19d to f4df5d66f1 2024-12-30 02:22:42 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from f4df5d66f1 to 8359711b8c 2024-12-30 06:21:50 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 8359711b8c to 63bb94dc6c 2024-12-31 02:24:02 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 63bb94dc6c to 16cf461808 2024-12-31 06:23:46 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 16cf461808 to 58346ccb45 2025-01-01 02:25:21 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 58346ccb45 to d8bc67e860 2025-01-01 06:23:02 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from d8bc67e860 to c8005cf5fc 2025-01-02 02:23:18 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from c8005cf5fc to f12f2d173a 2025-01-02 06:21:30 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from f12f2d173a to 0993b51ef5 2025-01-03 02:20:37 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 0993b51ef5 to 2c28cec80c 2025-01-03 06:21:56 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 2c28cec80c to 94ecd1308e 2025-01-04 02:23:19 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 94ecd1308e to c4dec76c9c 2025-01-04 06:22:14 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from c4dec76c9c to 8cc551735d 2025-01-05 02:24:48 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 8cc551735d to 72100a1adc 2025-01-05 06:21:43 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 72100a1adc to 796b074038 2025-01-06 02:20:47 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 796b074038 to e459be2263 2025-01-06 06:20:56 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from e459be2263 to 935b4c3888 2025-01-07 02:24:16 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 935b4c3888 to 71df1fcae6 2025-01-07 06:21:43 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 71df1fcae6 to 5e23c51ba5 2025-01-08 02:21:55 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 5e23c51ba5 to e8db18f86d 2025-01-08 06:23:05 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from e8db18f86d to 39869e9747 2025-01-09 02:24:31 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 39869e9747 to c381313ccc 2025-01-09 06:21:37 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from c381313ccc to 249db3e042 2025-01-10 02:22:47 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 249db3e042 to ea4ce1b209 2025-01-10 06:22:53 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from ea4ce1b209 to d770365372 2025-01-11 02:22:47 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from d770365372 to 924be30965 2025-01-11 06:23:51 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 924be30965 to 4882d4463c 2025-01-12 02:25:27 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 4882d4463c to 5fe804ba20 2025-01-12 06:23:57 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 5fe804ba20 to 87c503f6ff 2025-01-13 02:26:55 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 87c503f6ff to 36e8885d7b 2025-01-13 06:25:04 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 36e8885d7b to 8e938f7aac 2025-01-14 02:24:29 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 8e938f7aac to 4d0b4055fb 2025-01-14 06:24:27 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 4d0b4055fb to 94350d5be1 2025-01-15 02:31:05 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 94350d5be1 to 5ef5b37e27 2025-01-15 06:28:23 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 5ef5b37e27 to 9b7b47689d 2025-01-16 02:27:28 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 9b7b47689d to 53daa986d7 2025-01-16 06:24:54 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 53daa986d7 to 6a60f8282b 2025-01-17 02:26:31 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 6a60f8282b to 7f15b55347 2025-01-17 06:24:52 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 7f15b55347 to 659a259793 2025-01-18 02:28:23 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 659a259793 to e476f41e3e 2025-01-18 06:25:41 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from e476f41e3e to 0e3ea2ab3e 2025-01-19 02:28:00 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 0e3ea2ab3e to 0a1ed90e41 2025-01-19 06:25:50 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 0a1ed90e41 to 2639e3cfe3 2025-01-20 02:26:27 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 2639e3cfe3 to 02b4a78d72 2025-01-20 06:26:03 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 02b4a78d72 to 5832b0ee7d 2025-01-21 02:25:58 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 5832b0ee7d to 7e772259d4 2025-01-21 06:27:58 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 7e772259d4 to 44b59f78a3 2025-01-22 02:27:07 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 44b59f78a3 to 4b63017a62 2025-01-22 06:26:22 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 4b63017a62 to 7680afebfd 2025-01-23 02:27:02 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 7680afebfd to 1f92db5c63 2025-01-23 06:26:17 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 1f92db5c63 to a0a6a3a749 2025-01-24 02:30:34 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from a0a6a3a749 to 0ddb21157c 2025-01-24 06:29:16 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 0ddb21157c to abbec25dfc 2025-01-25 02:28:34 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from abbec25dfc to 8e0da4e22e 2025-01-25 06:27:59 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 8e0da4e22e to 4e09bb3075 2025-01-26 02:28:49 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 4e09bb3075 to b6d408c89f 2025-01-26 06:27:35 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from b6d408c89f to d2988b9048 2025-01-27 02:30:13 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from d2988b9048 to 8fb5626a96 2025-01-27 06:28:12 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 8fb5626a96 to 15c265c80d 2025-01-28 02:27:13 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 15c265c80d to ac4da8b558 2025-01-28 06:27:53 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from ac4da8b558 to 58106a6a51 2025-01-29 02:29:19 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 58106a6a51 to 005ad70a1c 2025-01-29 06:29:36 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 005ad70a1c to 5ba7ce9d36 2025-01-30 02:31:53 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 5ba7ce9d36 to 030b3f3b1e 2025-01-30 06:32:32 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 030b3f3b1e to a2ea1f0478 2025-01-31 02:29:07 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from a2ea1f0478 to 0b61909cba 2025-01-31 06:27:56 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 0b61909cba to f9bac8e719 2025-02-01 02:27:14 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from f9bac8e719 to 411235b326 2025-02-01 06:27:49 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 411235b326 to 6985dfeed5 2025-02-02 02:27:24 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 6985dfeed5 to 220d53e7e1 2025-02-02 06:25:46 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 220d53e7e1 to 835e35194d 2025-02-03 02:26:29 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 835e35194d to bb256e5659 2025-02-03 06:26:18 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from bb256e5659 to a03ab0cb69 2025-02-04 02:27:41 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from a03ab0cb69 to 79ff267b78 2025-02-04 06:27:11 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 79ff267b78 to 5f37323db3 2025-02-05 02:27:51 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 5f37323db3 to 5bfef028ae 2025-02-05 06:29:58 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 5bfef028ae to 0d0b72f828 2025-02-06 02:28:09 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 0d0b72f828 to 866a4a4d4e 2025-02-06 06:26:43 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 866a4a4d4e to cc4c19269c 2025-02-07 02:27:12 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from cc4c19269c to 0b273c7125 2025-02-07 06:26:01 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 0b273c7125 to c7b617ed70 2025-02-08 02:28:41 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from c7b617ed70 to ff1e574bda 2025-02-08 06:26:25 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from ff1e574bda to 0f940fafec 2025-02-09 02:28:04 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 0f940fafec to fa144cc85e 2025-02-09 06:26:42 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from fa144cc85e to e9b14716fe 2025-02-10 02:27:25 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from e9b14716fe to 6bc2ea27bd 2025-02-10 06:26:47 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 6bc2ea27bd to 06b81bacad 2025-02-11 02:28:41 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 06b81bacad to c237aa26cf 2025-02-11 06:26:53 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from c237aa26cf to d80e4cc0b5 2025-02-12 02:29:32 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from d80e4cc0b5 to bc62dc1729 2025-02-12 06:27:24 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from bc62dc1729 to 1a30069d2e 2025-02-13 02:27:30 +01:00 Compare
kjuulh changed title from chore(deps): update tokio-prost monorepo to v0.13.4 to chore(deps): update tokio-prost monorepo to v0.13.5 2025-02-13 02:27:30 +01:00
kjuulh force-pushed renovate/tokio-prost-monorepo from 1a30069d2e to 8152b48957 2025-02-13 06:26:26 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 8152b48957 to c5cb8bc257 2025-02-14 02:26:52 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from c5cb8bc257 to afa383d0b2 2025-02-14 06:24:45 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from afa383d0b2 to 8dedae55e9 2025-02-15 02:26:34 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 8dedae55e9 to 9e920ca5e9 2025-02-15 06:24:49 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 9e920ca5e9 to bf7862c210 2025-02-16 02:26:18 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from bf7862c210 to 1fa4829c4a 2025-02-16 06:24:38 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 1fa4829c4a to 8e919f5374 2025-02-17 02:27:14 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 8e919f5374 to e0ede30b75 2025-02-17 06:25:22 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from e0ede30b75 to 57d231653d 2025-02-18 02:28:37 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 57d231653d to 5285c77168 2025-02-18 06:26:19 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 5285c77168 to 0cce83407d 2025-02-19 02:27:50 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 0cce83407d to a0d8df136d 2025-02-19 06:26:24 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from a0d8df136d to 0a22aa342b 2025-02-20 02:31:52 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 0a22aa342b to 995d6b1a0e 2025-02-20 06:27:13 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 995d6b1a0e to ff1291a68e 2025-02-21 02:29:13 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from ff1291a68e to 8fa740dc24 2025-02-21 06:25:33 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 8fa740dc24 to 9261824041 2025-02-22 02:26:29 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 9261824041 to 55b73db5a1 2025-02-22 06:28:34 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 55b73db5a1 to 102b02dc7f 2025-02-23 02:26:49 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 102b02dc7f to 59274f22a2 2025-02-23 06:28:27 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 59274f22a2 to 97ba85e8e9 2025-02-24 02:28:14 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 97ba85e8e9 to 717ddbca4c 2025-02-24 06:26:32 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 717ddbca4c to 3ccfe9c040 2025-02-25 02:28:08 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 3ccfe9c040 to e47e2253b5 2025-02-25 06:27:02 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from e47e2253b5 to 15ae998a7a 2025-02-26 02:28:06 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 15ae998a7a to 6a34369019 2025-02-26 06:28:00 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 6a34369019 to 1e91c98f5b 2025-02-27 02:30:58 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 1e91c98f5b to 534ff4d2fd 2025-02-27 06:27:48 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 534ff4d2fd to 6eaba55a6e 2025-02-28 02:30:05 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 6eaba55a6e to 9146250849 2025-02-28 06:28:45 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 9146250849 to c7aa775f52 2025-03-01 02:29:19 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from c7aa775f52 to 8b9f53a769 2025-03-01 06:27:25 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 8b9f53a769 to 791a696943 2025-03-02 02:28:11 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 791a696943 to 2209d0e89f 2025-03-02 06:38:07 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 2209d0e89f to 0535ae00e4 2025-03-03 02:26:45 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 0535ae00e4 to ca4b86a87f 2025-03-03 06:28:12 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from ca4b86a87f to 103f064fb0 2025-03-04 02:29:49 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 103f064fb0 to c4bf0998a0 2025-03-04 06:28:44 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from c4bf0998a0 to ee401d23a3 2025-03-05 02:29:32 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from ee401d23a3 to 65e0573558 2025-03-05 06:28:06 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 65e0573558 to 219d470815 2025-03-06 02:29:59 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 219d470815 to 7e4083dcb1 2025-03-06 06:28:45 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 7e4083dcb1 to e941c83c9b 2025-03-25 23:46:00 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from e941c83c9b to 492f8e8dfb 2025-03-26 00:38:59 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 492f8e8dfb to 60c78ce2a1 2025-03-26 01:04:56 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 60c78ce2a1 to 57d67b0a1a 2025-03-26 01:41:44 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 57d67b0a1a to df9f1ed400 2025-03-26 02:10:28 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from df9f1ed400 to edc2511e29 2025-03-26 02:40:42 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from edc2511e29 to d6e6d69960 2025-03-26 03:10:23 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from d6e6d69960 to aa42205c22 2025-03-26 03:40:07 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from aa42205c22 to afcc72ec2d 2025-03-26 04:09:19 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from afcc72ec2d to 47bd4d305d 2025-03-26 04:38:18 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 47bd4d305d to fb8af9ba0c 2025-03-26 05:08:10 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from fb8af9ba0c to ddaf627568 2025-03-26 05:37:48 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from ddaf627568 to 4a671440e0 2025-03-26 06:07:30 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 4a671440e0 to 287c7a708d 2025-03-26 06:37:34 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 287c7a708d to 6b6c351a80 2025-03-26 07:06:46 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 6b6c351a80 to e49b514219 2025-03-26 07:36:29 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from e49b514219 to 3ce78b08d6 2025-03-26 08:04:09 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 3ce78b08d6 to 38d3ae5ac5 2025-03-26 08:33:04 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 38d3ae5ac5 to c02ee1b399 2025-03-26 09:01:34 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from c02ee1b399 to 4c5f6082cf 2025-03-26 09:30:14 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 4c5f6082cf to 8460708445 2025-03-26 09:58:16 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 8460708445 to 9fe13c684a 2025-03-26 10:27:21 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 9fe13c684a to 1f3e44339c 2025-03-26 11:01:57 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 1f3e44339c to f1926f8b81 2025-03-26 11:37:26 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from f1926f8b81 to 0b7a5c9aa7 2025-03-26 12:07:13 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 0b7a5c9aa7 to 2ad7f45a26 2025-03-26 12:36:45 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 2ad7f45a26 to d75516543b 2025-03-26 13:04:11 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from d75516543b to ae303100da 2025-03-26 13:33:33 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from ae303100da to 10bb06bc42 2025-03-26 14:01:06 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 10bb06bc42 to 10ae283d7c 2025-03-26 14:30:50 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 10ae283d7c to 024d89c250 2025-03-26 14:59:01 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 024d89c250 to 3215ec07f3 2025-03-26 15:28:45 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 3215ec07f3 to 1b92f2d7c4 2025-03-26 16:02:00 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 1b92f2d7c4 to 0b9991c9d3 2025-03-26 16:37:59 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 0b9991c9d3 to 72c628da01 2025-03-26 17:06:46 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 72c628da01 to 66c5a78c5f 2025-03-26 17:35:58 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 66c5a78c5f to b9efcdda95 2025-03-26 18:05:38 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from b9efcdda95 to 59d096f0a9 2025-03-26 18:34:56 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 59d096f0a9 to aeb6430e6f 2025-03-26 19:02:38 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from aeb6430e6f to 8362579cd2 2025-03-26 19:21:13 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 8362579cd2 to a26555b73f 2025-03-26 19:57:38 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from a26555b73f to 719ca5dffd 2025-03-26 20:27:20 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 719ca5dffd to 7959d4babc 2025-03-26 20:58:08 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 7959d4babc to 69fecad69e 2025-03-26 21:31:32 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 69fecad69e to c3418c86e0 2025-03-26 22:03:12 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from c3418c86e0 to 5fbb7faaf9 2025-03-26 22:32:36 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 5fbb7faaf9 to 3a02855b25 2025-03-26 23:02:27 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 3a02855b25 to 3115b9fb13 2025-03-26 23:33:20 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 3115b9fb13 to 3ff5bd444b 2025-03-27 00:04:23 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 3ff5bd444b to c7940b0bd5 2025-03-27 00:34:51 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from c7940b0bd5 to 443b595abc 2025-03-27 01:04:14 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 443b595abc to eb7f1c3508 2025-03-27 01:31:38 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from eb7f1c3508 to dcccc622aa 2025-03-27 02:00:37 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from dcccc622aa to 1302c77a00 2025-03-27 02:28:58 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 1302c77a00 to 9fa1ee3cee 2025-03-27 02:58:40 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 9fa1ee3cee to 94f7834e9c 2025-03-27 03:31:33 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 94f7834e9c to 28fd1b556f 2025-03-27 04:03:54 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 28fd1b556f to 46130041d5 2025-03-27 04:33:40 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 46130041d5 to 3ba04f2eec 2025-03-27 05:06:22 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 3ba04f2eec to 4518f01f43 2025-03-27 05:37:35 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 4518f01f43 to 58d072a213 2025-03-27 06:08:03 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 58d072a213 to 5f14493dd6 2025-03-27 06:36:26 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 5f14493dd6 to 5f2f28ef42 2025-03-27 07:05:55 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 5f2f28ef42 to f2e9d6f534 2025-03-27 07:34:43 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from f2e9d6f534 to 4b4ee0d355 2025-03-27 08:03:30 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 4b4ee0d355 to 52155625d9 2025-03-27 08:32:28 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 52155625d9 to 5119261827 2025-03-27 09:01:00 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 5119261827 to fb756e1718 2025-03-27 09:29:17 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from fb756e1718 to dc5a1ef2f5 2025-03-27 09:58:43 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from dc5a1ef2f5 to 86e1e099e1 2025-03-27 10:21:36 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 86e1e099e1 to ee258263f5 2025-03-27 10:58:23 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from ee258263f5 to 13209f9c6e 2025-03-27 11:27:11 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 13209f9c6e to 8b24c3c4f5 2025-03-27 11:56:14 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 8b24c3c4f5 to 64a656216c 2025-03-27 12:25:21 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 64a656216c to 4ddc835aca 2025-03-27 12:54:53 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 4ddc835aca to 686160be03 2025-03-27 13:41:55 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 686160be03 to 763f614de5 2025-03-27 14:20:04 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 763f614de5 to 2b0920bad3 2025-03-27 14:50:17 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 2b0920bad3 to 7faa099eda 2025-03-27 15:22:04 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 7faa099eda to 476d70a4b6 2025-03-27 15:59:20 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 476d70a4b6 to a3f9c48d51 2025-03-27 16:28:04 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from a3f9c48d51 to a07b4e7122 2025-03-27 16:57:43 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from a07b4e7122 to da60c2f842 2025-03-27 17:28:22 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from da60c2f842 to fc3b12c428 2025-03-27 17:59:33 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from fc3b12c428 to 1ce237eeff 2025-03-27 18:30:34 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 1ce237eeff to 19fb195c97 2025-03-27 19:00:50 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 19fb195c97 to d2b671badc 2025-03-27 19:28:58 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from d2b671badc to 19c0fc8b3a 2025-03-27 19:58:25 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 19c0fc8b3a to d4053c3ccd 2025-03-27 20:26:47 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from d4053c3ccd to 251ac17db2 2025-03-27 20:56:32 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 251ac17db2 to 49314331a6 2025-03-27 21:25:03 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 49314331a6 to 1629c74801 2025-03-27 21:55:42 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 1629c74801 to 4cadb49834 2025-03-28 23:21:54 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 4cadb49834 to a985f5d360 2025-03-29 02:16:56 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from a985f5d360 to cb64729436 2025-03-29 05:17:34 +01:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from cb64729436 to f92559d87b 2025-03-30 05:18:12 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from f92559d87b to 9cbb59cb42 2025-03-31 02:16:37 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 9cbb59cb42 to 5aa4d75434 2025-03-31 05:17:04 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 5aa4d75434 to 9698012a99 2025-04-01 02:17:23 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 9698012a99 to db70757f23 2025-04-01 05:17:30 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from db70757f23 to 1b2905f7eb 2025-04-02 02:19:14 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 1b2905f7eb to db4214f1f6 2025-04-02 05:17:22 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from db4214f1f6 to 05c66b7c76 2025-04-03 02:19:10 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 05c66b7c76 to e02c4caf19 2025-04-03 05:17:02 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from e02c4caf19 to 8aab51446f 2025-04-04 02:17:30 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 8aab51446f to ac9058aaff 2025-04-04 05:16:44 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from ac9058aaff to 83269548cf 2025-04-05 02:17:15 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 83269548cf to 313e4d2145 2025-04-05 05:17:54 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 313e4d2145 to 19efefdf2d 2025-04-06 02:17:20 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 19efefdf2d to 71f2621ef7 2025-04-06 05:18:10 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 71f2621ef7 to a9828f8759 2025-04-07 02:18:01 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from a9828f8759 to f38285b238 2025-04-07 05:17:08 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from f38285b238 to ab12cb41bf 2025-04-08 02:17:52 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from ab12cb41bf to 9cb67ec874 2025-04-08 05:17:56 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 9cb67ec874 to 0d62c6fb74 2025-04-09 02:18:07 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 0d62c6fb74 to aa30fe5385 2025-04-09 05:17:27 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from aa30fe5385 to db5a7336ce 2025-04-10 02:18:11 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from db5a7336ce to 22c3371436 2025-04-10 05:17:29 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 22c3371436 to a2d12bed4d 2025-04-11 02:18:05 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from a2d12bed4d to ae33e094b6 2025-04-11 05:17:54 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from ae33e094b6 to 8ede1e2253 2025-04-12 02:19:41 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 8ede1e2253 to 3480ce1096 2025-04-12 05:18:13 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 3480ce1096 to 296b71fbac 2025-04-13 02:19:14 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 296b71fbac to 856659de19 2025-04-13 05:17:54 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 856659de19 to 13b8edefb5 2025-04-14 02:17:30 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 13b8edefb5 to 30d19c2a78 2025-04-14 05:18:12 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 30d19c2a78 to 8bb0adc80a 2025-04-15 02:20:06 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 8bb0adc80a to c2db1fbb7f 2025-04-15 05:17:49 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from c2db1fbb7f to 7a080b4d86 2025-04-16 02:18:34 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 7a080b4d86 to d2b3f197f1 2025-04-16 05:17:45 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from d2b3f197f1 to de865140e7 2025-04-17 02:16:53 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from de865140e7 to 049cf9bfcd 2025-04-17 05:17:44 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 049cf9bfcd to 4eb257c2b8 2025-04-18 02:18:29 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 4eb257c2b8 to cd71229f6a 2025-04-18 05:17:10 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from cd71229f6a to 2206756b51 2025-04-19 02:18:03 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 2206756b51 to 5e4fd73f11 2025-04-19 05:18:16 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 5e4fd73f11 to da66801513 2025-04-20 02:17:46 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from da66801513 to 400ee1a581 2025-04-20 05:17:29 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 400ee1a581 to 2d8ba3a823 2025-04-21 02:18:09 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 2d8ba3a823 to 7e4054b0f6 2025-04-21 05:17:05 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 7e4054b0f6 to 789fa8f7fd 2025-04-22 02:19:49 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 789fa8f7fd to 7443df7f12 2025-04-22 05:17:59 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 7443df7f12 to c1928feb5c 2025-04-23 02:19:03 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from c1928feb5c to eaa703b0d2 2025-04-23 05:18:35 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from eaa703b0d2 to 4b44af3eca 2025-04-24 02:17:35 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 4b44af3eca to 3e45eaf8bb 2025-04-24 05:17:46 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 3e45eaf8bb to 03a9af0b40 2025-04-25 02:18:46 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 03a9af0b40 to 51ca938703 2025-04-25 05:17:50 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 51ca938703 to 79bb5078e4 2025-04-26 02:19:19 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 79bb5078e4 to 2cd713dd70 2025-04-26 05:18:23 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 2cd713dd70 to c6eab7e098 2025-04-27 02:17:24 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from c6eab7e098 to ec20144a9e 2025-04-27 05:17:40 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from ec20144a9e to ab6ddf2f40 2025-04-28 02:18:40 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from ab6ddf2f40 to 15cb292129 2025-04-28 05:18:31 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 15cb292129 to 6aa21a6c86 2025-04-29 02:18:59 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 6aa21a6c86 to fc4a3c61ec 2025-04-29 05:19:08 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from fc4a3c61ec to 927ac16d83 2025-04-30 02:19:19 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 927ac16d83 to 405a4af7e7 2025-04-30 05:17:57 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 405a4af7e7 to da98d966d0 2025-05-01 02:17:51 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from da98d966d0 to e136b4b0db 2025-05-01 05:17:32 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from e136b4b0db to 332fb7e769 2025-05-02 02:17:47 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 332fb7e769 to ea38a69ea5 2025-05-02 05:17:56 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from ea38a69ea5 to c89a23ff99 2025-05-03 02:19:49 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from c89a23ff99 to ebdb0b1bfa 2025-05-03 05:18:31 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from ebdb0b1bfa to 91a4430a3e 2025-05-04 02:18:02 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 91a4430a3e to f7262631ea 2025-05-04 05:17:19 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from f7262631ea to 5a31566e1d 2025-05-05 02:17:46 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 5a31566e1d to baf885ae59 2025-05-05 05:17:30 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from baf885ae59 to 92a868f965 2025-05-06 02:17:38 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 92a868f965 to 753b376550 2025-05-06 05:18:13 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 753b376550 to e1abb29853 2025-05-07 02:18:43 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from e1abb29853 to cd036bc4fa 2025-05-07 05:18:17 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from cd036bc4fa to c62390bb6f 2025-05-08 02:18:09 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from c62390bb6f to 4f65e3898a 2025-05-08 05:17:27 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 4f65e3898a to 1e42133323 2025-05-09 02:18:14 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 1e42133323 to b2f43ee2da 2025-05-09 05:17:23 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from b2f43ee2da to d651c7a00f 2025-05-10 02:18:12 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from d651c7a00f to dc31eb78cb 2025-05-10 05:17:23 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from dc31eb78cb to ff89be7ea8 2025-05-11 02:17:54 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from ff89be7ea8 to 730240495a 2025-05-11 05:17:57 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 730240495a to 08853e4b39 2025-05-12 02:18:30 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 08853e4b39 to 04c2bd740f 2025-05-12 05:17:22 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 04c2bd740f to 8b52d44805 2025-05-13 02:18:55 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 8b52d44805 to 4de33bc54c 2025-05-13 05:17:38 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 4de33bc54c to 9b8c9654eb 2025-05-14 02:17:32 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 9b8c9654eb to 6e10a06e56 2025-05-14 05:17:56 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 6e10a06e56 to ed9b3f84cc 2025-05-15 02:17:21 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from ed9b3f84cc to 6b06f0e400 2025-05-15 05:16:41 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 6b06f0e400 to f66e098314 2025-05-17 02:17:18 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from f66e098314 to 4e6016d43d 2025-05-17 05:17:14 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 4e6016d43d to cdeb08c2c0 2025-05-18 02:17:08 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from cdeb08c2c0 to 7c1bb1ed0e 2025-05-18 05:17:25 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 7c1bb1ed0e to 397cdd9894 2025-05-19 02:17:59 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 397cdd9894 to 5f25f204a2 2025-05-19 05:18:48 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 5f25f204a2 to ad8c772ae6 2025-05-20 02:17:17 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from ad8c772ae6 to b2d44c90b6 2025-05-20 05:17:20 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from b2d44c90b6 to 04d006a263 2025-05-21 02:17:59 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 04d006a263 to 19ecf9369f 2025-05-21 05:16:33 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 19ecf9369f to c8482ba346 2025-05-22 02:18:58 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from c8482ba346 to 3e0e7a940d 2025-05-22 05:17:13 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 3e0e7a940d to c6744910b5 2025-05-23 02:17:21 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from c6744910b5 to 2c08cf9235 2025-05-23 05:17:56 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 2c08cf9235 to c5c3e5604e 2025-05-24 02:18:29 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from c5c3e5604e to 8a5163e0c8 2025-05-24 05:17:48 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 8a5163e0c8 to eb5f674d45 2025-05-25 02:17:42 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from eb5f674d45 to a4e0941737 2025-05-25 05:17:48 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from a4e0941737 to 4056c0c3aa 2025-05-26 02:17:54 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 4056c0c3aa to 7885e44c19 2025-05-26 05:17:56 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 7885e44c19 to 045097824f 2025-05-27 02:17:16 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 045097824f to 627860e9e9 2025-05-27 05:17:17 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 627860e9e9 to 10b65a3be9 2025-05-28 02:19:37 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 10b65a3be9 to 6814b265a8 2025-05-28 05:16:50 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 6814b265a8 to 82af1c3b34 2025-05-29 02:17:59 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 82af1c3b34 to 00743a0818 2025-05-29 05:17:00 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 00743a0818 to e70d447bfe 2025-05-30 02:18:39 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from e70d447bfe to 0925612b9c 2025-05-30 05:17:29 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 0925612b9c to 70ae93a0cd 2025-05-31 02:17:56 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 70ae93a0cd to c4fa75b864 2025-05-31 05:17:25 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from c4fa75b864 to c356904d37 2025-06-01 02:17:58 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from c356904d37 to 83e9ce94a5 2025-06-01 05:17:26 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 83e9ce94a5 to 7b5b5af171 2025-06-02 02:18:05 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 7b5b5af171 to 144eefafab 2025-06-02 05:17:36 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 144eefafab to d5d57ec3fb 2025-06-03 02:17:56 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from d5d57ec3fb to c09ff6e69e 2025-06-03 05:17:35 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from c09ff6e69e to e120a91d44 2025-06-04 02:18:31 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from e120a91d44 to cb508b7010 2025-06-04 05:17:15 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from cb508b7010 to 4b289d490d 2025-06-05 02:18:51 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 4b289d490d to cac11dade8 2025-06-05 05:18:12 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from cac11dade8 to 4a0e534736 2025-06-06 02:18:31 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 4a0e534736 to 88a6490d4c 2025-06-06 05:18:20 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 88a6490d4c to 1d66f213f3 2025-06-07 02:18:18 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 1d66f213f3 to bb2715057c 2025-06-07 05:17:27 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from bb2715057c to 69611f40f3 2025-06-08 02:18:35 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 69611f40f3 to 1d53597b2e 2025-06-08 05:18:11 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 1d53597b2e to c9c83af325 2025-06-09 02:19:05 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from c9c83af325 to 3d95db771c 2025-06-09 05:18:15 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 3d95db771c to 9ea5761e91 2025-06-10 02:20:18 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 9ea5761e91 to fd2d9f8afc 2025-06-10 05:18:24 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from fd2d9f8afc to a05cd16834 2025-06-11 02:18:42 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from a05cd16834 to 9d88d14a43 2025-06-11 05:18:36 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 9d88d14a43 to 93558daf49 2025-06-12 02:20:28 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 93558daf49 to 471e8d2b86 2025-06-12 05:17:55 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 471e8d2b86 to dcd670021b 2025-06-13 02:19:01 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from dcd670021b to 6f7dc73340 2025-06-13 05:18:25 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 6f7dc73340 to 572ecfe3d2 2025-06-18 02:18:12 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from 572ecfe3d2 to f1e7881dd4 2025-06-18 05:17:10 +02:00 Compare
kjuulh force-pushed renovate/tokio-prost-monorepo from f1e7881dd4 to 046a9ba3b0 2025-06-19 02:17:50 +02:00 Compare
kjuulh changed title from chore(deps): update tokio-prost monorepo to v0.13.5 to chore(deps): update tokio-prost monorepo to 0.14 2025-06-19 02:17:50 +02:00
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/crunch#7
No description provided.