chore(deps): update tokio-prost monorepo to 0.13 #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.12 -> 0.13
prost-build build-dependencies minor 0.12 -> 0.13
prost-build workspace.dependencies minor 0.12 -> 0.13
prost-types workspace.dependencies minor 0.12 -> 0.13

⚠️ Warning

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


Release Notes

tokio-rs/prost (prost)

v0.13.2

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-build: Add protoc executable path to Config (#​1126)
  • prost-build: Extract file descriptor loading from compile_protos() (#​1067)

Bug Fixes

  • prost-types: Fix date-time parsing (#​1096)
  • prost-types: '+' is not a numeric digit (#​1104)
  • prost-types: Converting DateTime to Timestamp is fallible (#​1095)
  • prost-types: Parse timestamp with long second fraction (#​1106)
  • prost-types: Format negative fractional duration (#​1110)
  • prost-types: Allow unknown local time offset (#​1109)

Styling

  • Remove use of legacy numeric constants (#​1089)
  • Move encoding functions into separate modules (#​1111)
  • Remove needless borrow (#​1122)

Testing

  • Add tests for public interface of DecodeError (#​1120)
  • Add parse_date fuzzing target (#​1127)
  • Fix build without std (#​1134)
  • Change some proptest to kani proofs (#​1133)
  • Add parse_duration fuzzing target (#​1129)
  • fuzz: Fix building of fuzzing targets (#​1107)
  • fuzz: Add fuzz targets to workspace (#​1117)

Miscellaneous Tasks

  • Move old protobuf benchmark into prost (#​1100)
  • Remove allow clippy::derive_partial_eq_without_eq (#​1115)
  • Run cargo test without all-targets (#​1118)
  • dependabot: Add github actions (#​1121)
  • Update to cargo clippy version 1.80 (#​1128)

Build

  • Use proc-macro in Cargo.toml (#​1102)
  • Ignore missing features in tests crates (#​1101)
  • Use separated build directory for protobuf (#​1103)
  • protobuf: Don't install unused test proto (#​1116)
  • protobuf: Use crate cmake (#​1137)
  • deps: Update devcontainer to Debian Bookworm release (#​1114)
  • deps: Bump actions/upload-artifact from 3 to 4 (#​1123)
  • deps: Bump baptiste0928/cargo-install from 2 to 3 (#​1124)
  • deps: bump model-checking/kani-github-action from 0.32 to 1.1 (#​1125)

v0.13.1

Compare Source

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

Bug fixes

  • Enum variant named Error causes ambiguous item (#​1098)

v0.13.0

Compare Source

note: this version was yanked in favor of 0.13.1

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

This major update brings new features and fixes:

Breaking changes

  • derive Copy trait for messages where possible (#​950)

    prost-build will automatically derive trait Copy for some messages. If you manually implement Copy you should remove your implementation.

  • Change generated functions signatures to remove type parameters (#​1045)

    The function signature of trait Message is changed to use impl Buf instead of a named generic type. If you implement trait Message, you should change the function signature.

  • Lightweight error value in TryFrom for enums (#​1010)

    When a impl TryFrom<i32> is generated by prost derive macros, it will now return the error type UnknownEnumValue instead of DecodeError. The new error can be used to retreive the integer value that failed to convert.

Features

  • fix: Only touch include file if contents is changed (#​1058)

    Most generated files are untouched when the contents doesn't change. Use the same mechanism for include file as well.

Dependencies

  • update env_logger requirement from 0.10 to 0.11 (#​1074)
  • update criterion requirement from 0.4 to 0.5 (#​1071)
  • Remove unused libz-sys (#​1077)
  • build(deps): update itertools requirement from >=0.10, <=0.12 to >=0.10, <=0.13 (#​1070)

Documentation

  • better checking of tag duplicates, avoid discarding invalid variant errs (#​951)
  • docs: Fix broken link warnings (#​1056)
  • Add missing LICENSE symlink (#​1086)

Internal

  • workspace package metadata (#​1036)
  • fix: Build error due to merge conflict (#​1068)
  • build: Fix release scripts (#​1055)
  • chore: Add ci to check MSRV (#​1057)
  • ci: Add all tests pass job (#​1069)
  • ci: Add Dependabot (#​957)
  • ci: Ensure both README are the same and prost version is correct (#​1078)
  • ci: Set rust version of clippy job to a fixed version (#​1090)

v0.12.6

Compare Source

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

This patch update fixes a regression:

  • fix(prost-build): re-export error_message_protoc_not_found, protoc_from_env & protoc_include_from_env (#​1063)

v0.12.5

Compare Source

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

This patch update brings new fixes:

  • fix: include_file should handle proto without package (#​1002)
  • Place Config::format behind the format feature flag
  • Handle keyword Self after stripping enum type prefix (#​998)
Documentation
  • fix(readme): fix the link and badge for CI (#​1049)
Internal
  • style(codegen): Syntax to a separate file (#​1029)
  • chore(codegen): extract c string escaping to a separate file (#​1028)
  • style(prost-build): CodeGenerator::boxed method (#​1019)
  • style(prost-build): Consolidate field data into struct (#​1017)
  • style(prost-build): BytesType and MapType into a collections module. (#​1030)
  • style(prost-build): Split Config and Module into a separate module and files (#​1020)
  • style(prost-build): prost_path helper (#​1018)
  • style: Fix toml indent (#​1048)
  • style: Fix clippy warnings and enable clippy in CI (#​1008)
  • build: Use git submodule to download protobuf sources (#​1014)
  • ci: Add TOML validation with taplo (#​1034)
  • tests: Create a separate tempdir for each test (#​1044)
  • tests: Remove GoogleMessage3 and GoogleMessage4 benchmarks (#​1037)
  • chore: Update internal crates to Rust edition 2021 (#​1039)
  • chore: Update crate descriptions (#​1038)
  • chore: Fix clippy checks in CI (#​1032)
  • chore: Add Casper Meijn as author (#​1025)

v0.12.4

Compare Source

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

This patch update brings new features and fixes:

  • Bump MSRV to 1.70 (minimum supported Rust version)
  • Rename cargo feature prost-derive to derive (#​992)
  • Add @​generated comment on top of generated files (#​935)
  • Optimize implementation of prost::Name when generated by prost-build (#​956)
Dependencies
  • build(deps): Allow itertools 0.12 (#​948)
  • build(deps): Allow heck 0.5 (#​1012)
  • build(deps): Allow multimap 0.10 (#​1013)
Documentation
Internal
  • chore: Fix minimal versions (#​920)
  • fix: fq_message_name should begin with one dot (#​981)
  • improve encode_varint performance by bounding its loop (#​940)
  • style: Remove duplicate function call (#​989)
  • test: Improve test decode_varint_slow (#​977)
  • chore: Add dep: prefix to feature dependencies (#​919)
  • Minor clippy lint fixes. (#​1006)
  • chore: Use taiki-e/install-action to setup cargo-machete (#​909)
  • chore: Remove which dependency. (#​962)
  • chore: Update to actions/checkout@v4 (#​910)

v0.12.3

Compare Source

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

This patch updates brings a few new fixes:

v0.12.2

Compare Source

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

This patch updates brings a few new features and fixes:


Configuration

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

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, 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.12` -> `0.13` | | [prost-build](https://github.com/tokio-rs/prost) | build-dependencies | minor | `0.12` -> `0.13` | | [prost-build](https://github.com/tokio-rs/prost) | workspace.dependencies | minor | `0.12` -> `0.13` | | [prost-types](https://github.com/tokio-rs/prost) | workspace.dependencies | minor | `0.12` -> `0.13` | --- > ⚠️ **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.13.2`](https://github.com/tokio-rs/prost/blob/HEAD/CHANGELOG.md#Prost-version-0132) [Compare Source](https://github.com/tokio-rs/prost/compare/v0.13.1...v0.13.2) *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-build: Add protoc executable path to Config ([#&#8203;1126](https://github.com/tokio-rs/prost/issues/1126)) - prost-build: Extract file descriptor loading from compile_protos() ([#&#8203;1067](https://github.com/tokio-rs/prost/issues/1067)) #### Bug Fixes - prost-types: Fix date-time parsing ([#&#8203;1096](https://github.com/tokio-rs/prost/issues/1096)) - prost-types: '+' is not a numeric digit ([#&#8203;1104](https://github.com/tokio-rs/prost/issues/1104)) - prost-types: Converting DateTime to Timestamp is fallible ([#&#8203;1095](https://github.com/tokio-rs/prost/issues/1095)) - prost-types: Parse timestamp with long second fraction ([#&#8203;1106](https://github.com/tokio-rs/prost/issues/1106)) - prost-types: Format negative fractional duration ([#&#8203;1110](https://github.com/tokio-rs/prost/issues/1110)) - prost-types: Allow unknown local time offset ([#&#8203;1109](https://github.com/tokio-rs/prost/issues/1109)) #### Styling - Remove use of legacy numeric constants ([#&#8203;1089](https://github.com/tokio-rs/prost/issues/1089)) - Move encoding functions into separate modules ([#&#8203;1111](https://github.com/tokio-rs/prost/issues/1111)) - Remove needless borrow ([#&#8203;1122](https://github.com/tokio-rs/prost/issues/1122)) #### Testing - Add tests for public interface of DecodeError ([#&#8203;1120](https://github.com/tokio-rs/prost/issues/1120)) - Add `parse_date` fuzzing target ([#&#8203;1127](https://github.com/tokio-rs/prost/issues/1127)) - Fix build without std ([#&#8203;1134](https://github.com/tokio-rs/prost/issues/1134)) - Change some proptest to kani proofs ([#&#8203;1133](https://github.com/tokio-rs/prost/issues/1133)) - Add `parse_duration` fuzzing target ([#&#8203;1129](https://github.com/tokio-rs/prost/issues/1129)) - fuzz: Fix building of fuzzing targets ([#&#8203;1107](https://github.com/tokio-rs/prost/issues/1107)) - fuzz: Add fuzz targets to workspace ([#&#8203;1117](https://github.com/tokio-rs/prost/issues/1117)) #### Miscellaneous Tasks - Move old protobuf benchmark into prost ([#&#8203;1100](https://github.com/tokio-rs/prost/issues/1100)) - Remove allow clippy::derive_partial_eq_without_eq ([#&#8203;1115](https://github.com/tokio-rs/prost/issues/1115)) - Run `cargo test` without `all-targets` ([#&#8203;1118](https://github.com/tokio-rs/prost/issues/1118)) - dependabot: Add github actions ([#&#8203;1121](https://github.com/tokio-rs/prost/issues/1121)) - Update to cargo clippy version 1.80 ([#&#8203;1128](https://github.com/tokio-rs/prost/issues/1128)) #### Build - Use `proc-macro` in Cargo.toml ([#&#8203;1102](https://github.com/tokio-rs/prost/issues/1102)) - Ignore missing features in `tests` crates ([#&#8203;1101](https://github.com/tokio-rs/prost/issues/1101)) - Use separated build directory for protobuf ([#&#8203;1103](https://github.com/tokio-rs/prost/issues/1103)) - protobuf: Don't install unused test proto ([#&#8203;1116](https://github.com/tokio-rs/prost/issues/1116)) - protobuf: Use crate `cmake` ([#&#8203;1137](https://github.com/tokio-rs/prost/issues/1137)) - deps: Update devcontainer to Debian Bookworm release ([#&#8203;1114](https://github.com/tokio-rs/prost/issues/1114)) - deps: Bump actions/upload-artifact from 3 to 4 ([#&#8203;1123](https://github.com/tokio-rs/prost/issues/1123)) - deps: Bump baptiste0928/cargo-install from 2 to 3 ([#&#8203;1124](https://github.com/tokio-rs/prost/issues/1124)) - deps: bump model-checking/kani-github-action from 0.32 to 1.1 ([#&#8203;1125](https://github.com/tokio-rs/prost/issues/1125)) ### [`v0.13.1`](https://github.com/tokio-rs/prost/blob/HEAD/CHANGELOG.md#Prost-version-0131) [Compare Source](https://github.com/tokio-rs/prost/compare/v0.13.0...v0.13.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. #### Bug fixes - Enum variant named Error causes ambiguous item ([#&#8203;1098](https://github.com/tokio-rs/prost/issues/1098)) ### [`v0.13.0`](https://github.com/tokio-rs/prost/blob/HEAD/CHANGELOG.md#PROST-version-0130) [Compare Source](https://github.com/tokio-rs/prost/compare/v0.12.6...v0.13.0) **note**: this version was yanked in favor of 0.13.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. This major update brings new features and fixes: #### Breaking changes - derive Copy trait for messages where possible ([#&#8203;950](https://github.com/tokio-rs/prost/issues/950)) `prost-build` will automatically derive `trait Copy` for some messages. If you manually implement `Copy` you should remove your implementation. - Change generated functions signatures to remove type parameters ([#&#8203;1045](https://github.com/tokio-rs/prost/issues/1045)) The function signature of `trait Message` is changed to use `impl Buf` instead of a named generic type. If you implement `trait Message`, you should change the function signature. - Lightweight error value in TryFrom<i32> for enums ([#&#8203;1010](https://github.com/tokio-rs/prost/issues/1010)) When a `impl TryFrom<i32>` is generated by `prost` derive macros, it will now return the error type `UnknownEnumValue` instead of `DecodeError`. The new error can be used to retreive the integer value that failed to convert. #### Features - fix: Only touch include file if contents is changed ([#&#8203;1058](https://github.com/tokio-rs/prost/issues/1058)) Most generated files are untouched when the contents doesn't change. Use the same mechanism for include file as well. #### Dependencies - update env_logger requirement from 0.10 to 0.11 ([#&#8203;1074](https://github.com/tokio-rs/prost/issues/1074)) - update criterion requirement from 0.4 to 0.5 ([#&#8203;1071](https://github.com/tokio-rs/prost/issues/1071)) - Remove unused libz-sys ([#&#8203;1077](https://github.com/tokio-rs/prost/issues/1077)) - build(deps): update itertools requirement from >=0.10, <=0.12 to >=0.10, <=0.13 ([#&#8203;1070](https://github.com/tokio-rs/prost/issues/1070)) #### Documentation - better checking of tag duplicates, avoid discarding invalid variant errs ([#&#8203;951](https://github.com/tokio-rs/prost/issues/951)) - docs: Fix broken link warnings ([#&#8203;1056](https://github.com/tokio-rs/prost/issues/1056)) - Add missing LICENSE symlink ([#&#8203;1086](https://github.com/tokio-rs/prost/issues/1086)) #### Internal - workspace package metadata ([#&#8203;1036](https://github.com/tokio-rs/prost/issues/1036)) - fix: Build error due to merge conflict ([#&#8203;1068](https://github.com/tokio-rs/prost/issues/1068)) - build: Fix release scripts ([#&#8203;1055](https://github.com/tokio-rs/prost/issues/1055)) - chore: Add ci to check MSRV ([#&#8203;1057](https://github.com/tokio-rs/prost/issues/1057)) - ci: Add all tests pass job ([#&#8203;1069](https://github.com/tokio-rs/prost/issues/1069)) - ci: Add Dependabot ([#&#8203;957](https://github.com/tokio-rs/prost/issues/957)) - ci: Ensure both README are the same and prost version is correct ([#&#8203;1078](https://github.com/tokio-rs/prost/issues/1078)) - ci: Set rust version of clippy job to a fixed version ([#&#8203;1090](https://github.com/tokio-rs/prost/issues/1090)) ### [`v0.12.6`](https://github.com/tokio-rs/prost/releases/tag/v0.12.6) [Compare Source](https://github.com/tokio-rs/prost/compare/v0.12.5...v0.12.6) *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. This patch update fixes a regression: - fix(prost-build): re-export `error_message_protoc_not_found`, `protoc_from_env` & `protoc_include_from_env` ([#&#8203;1063](https://github.com/tokio-rs/prost/issues/1063)) ### [`v0.12.5`](https://github.com/tokio-rs/prost/releases/tag/v0.12.5) [Compare Source](https://github.com/tokio-rs/prost/compare/v0.12.4...v0.12.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. This patch update brings new fixes: - fix: include_file should handle proto without package ([#&#8203;1002](https://github.com/tokio-rs/prost/issues/1002)) - Place Config::format behind the format feature flag - Handle keyword `Self` after stripping enum type prefix ([#&#8203;998](https://github.com/tokio-rs/prost/issues/998)) ##### Documentation - fix(readme): fix the link and badge for CI ([#&#8203;1049](https://github.com/tokio-rs/prost/issues/1049)) ##### Internal - style(codegen): `Syntax` to a separate file ([#&#8203;1029](https://github.com/tokio-rs/prost/issues/1029)) - chore(codegen): extract c string escaping to a separate file ([#&#8203;1028](https://github.com/tokio-rs/prost/issues/1028)) - style(prost-build): `CodeGenerator::boxed` method ([#&#8203;1019](https://github.com/tokio-rs/prost/issues/1019)) - style(prost-build): Consolidate field data into struct ([#&#8203;1017](https://github.com/tokio-rs/prost/issues/1017)) - style(prost-build): `BytesType and MapType` into a `collections` module. ([#&#8203;1030](https://github.com/tokio-rs/prost/issues/1030)) - style(prost-build): Split `Config` and `Module` into a separate module and files ([#&#8203;1020](https://github.com/tokio-rs/prost/issues/1020)) - style(prost-build): prost_path helper ([#&#8203;1018](https://github.com/tokio-rs/prost/issues/1018)) - style: Fix toml indent ([#&#8203;1048](https://github.com/tokio-rs/prost/issues/1048)) - style: Fix clippy warnings and enable clippy in CI ([#&#8203;1008](https://github.com/tokio-rs/prost/issues/1008)) - build: Use git submodule to download protobuf sources ([#&#8203;1014](https://github.com/tokio-rs/prost/issues/1014)) - ci: Add TOML validation with `taplo` ([#&#8203;1034](https://github.com/tokio-rs/prost/issues/1034)) - tests: Create a separate tempdir for each test ([#&#8203;1044](https://github.com/tokio-rs/prost/issues/1044)) - tests: Remove GoogleMessage3 and GoogleMessage4 benchmarks ([#&#8203;1037](https://github.com/tokio-rs/prost/issues/1037)) - chore: Update internal crates to Rust edition 2021 ([#&#8203;1039](https://github.com/tokio-rs/prost/issues/1039)) - chore: Update crate descriptions ([#&#8203;1038](https://github.com/tokio-rs/prost/issues/1038)) - chore: Fix clippy checks in CI ([#&#8203;1032](https://github.com/tokio-rs/prost/issues/1032)) - chore: Add Casper Meijn as author ([#&#8203;1025](https://github.com/tokio-rs/prost/issues/1025)) ### [`v0.12.4`](https://github.com/tokio-rs/prost/releases/tag/v0.12.4) [Compare Source](https://github.com/tokio-rs/prost/compare/v0.12.3...v0.12.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. This patch update brings new features and fixes: - Bump MSRV to 1.70 (minimum supported Rust version) - Rename cargo feature `prost-derive` to `derive` ([#&#8203;992](https://github.com/tokio-rs/prost/issues/992)) - Add [@&#8203;generated](https://github.com/generated) comment on top of generated files ([#&#8203;935](https://github.com/tokio-rs/prost/issues/935)) - Optimize implementation of prost::Name when generated by prost-build ([#&#8203;956](https://github.com/tokio-rs/prost/issues/956)) ##### Dependencies - build(deps): Allow itertools 0.12 ([#&#8203;948](https://github.com/tokio-rs/prost/issues/948)) - build(deps): Allow heck 0.5 ([#&#8203;1012](https://github.com/tokio-rs/prost/issues/1012)) - build(deps): Allow multimap 0.10 ([#&#8203;1013](https://github.com/tokio-rs/prost/issues/1013)) ##### Documentation - Improve protoc not found error message ([#&#8203;937](https://github.com/tokio-rs/prost/issues/937)) - build: Add development container config ([#&#8203;949](https://github.com/tokio-rs/prost/issues/949)) - docs: Fixed README typos ([#&#8203;952](https://github.com/tokio-rs/prost/issues/952) / [#&#8203;967](https://github.com/tokio-rs/prost/issues/967) / [#&#8203;970](https://github.com/tokio-rs/prost/issues/970)) ##### Internal - chore: Fix minimal versions ([#&#8203;920](https://github.com/tokio-rs/prost/issues/920)) - fix: fq_message_name should begin with one dot ([#&#8203;981](https://github.com/tokio-rs/prost/issues/981)) - improve encode_varint performance by bounding its loop ([#&#8203;940](https://github.com/tokio-rs/prost/issues/940)) - style: Remove duplicate function call ([#&#8203;989](https://github.com/tokio-rs/prost/issues/989)) - test: Improve test decode_varint_slow ([#&#8203;977](https://github.com/tokio-rs/prost/issues/977)) - chore: Add dep: prefix to feature dependencies ([#&#8203;919](https://github.com/tokio-rs/prost/issues/919)) - Minor clippy lint fixes. ([#&#8203;1006](https://github.com/tokio-rs/prost/issues/1006)) - chore: Use taiki-e/install-action to setup cargo-machete ([#&#8203;909](https://github.com/tokio-rs/prost/issues/909)) - chore: Remove which dependency. ([#&#8203;962](https://github.com/tokio-rs/prost/issues/962)) - chore: Update to actions/checkout@v4 ([#&#8203;910](https://github.com/tokio-rs/prost/issues/910)) ### [`v0.12.3`](https://github.com/tokio-rs/prost/releases/tag/v0.12.3) [Compare Source](https://github.com/tokio-rs/prost/compare/v0.12.2...v0.12.3) *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. This patch updates brings a few new fixes: - [Fix code generation for Name trait (](https://github.com/tokio-rs/prost/commit/acc1df83f73cda03c10722fbb739c7920b6b9048)https://github.com/tokio-rs/prost/pull/944[)](https://github.com/tokio-rs/prost/commit/acc1df83f73cda03c10722fbb739c7920b6b9048) ### [`v0.12.2`](https://github.com/tokio-rs/prost/releases/tag/v0.12.2) [Compare Source](https://github.com/tokio-rs/prost/compare/v0.12.1...v0.12.2) *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. This patch updates brings a few new features and fixes: - feat: Generate implementation for Name trait (https://github.com/tokio-rs/prost/pull/931) - fix: generate Name::full_name properly (https://github.com/tokio-rs/prost/pull/923) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4zNzUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjQyNC4zIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
kjuulh added 1 commit 2024-05-23 22:01:16 +02:00
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
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
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: kjuulh/crunch#7
No description provided.