Skip to content

build(deps): bump prost from 0.13.5 to 0.14.3#27

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/prost-0.14.3
Closed

build(deps): bump prost from 0.13.5 to 0.14.3#27
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/prost-0.14.3

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 12, 2026

Bumps prost from 0.13.5 to 0.14.3.

Changelog

Sourced from prost's changelog.

Prost version 0.14.2

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

⚠️ Heads-up

  • Increase MSRV to 1.82 (#1356)

  • Update maintenance status to Passively Maintained (#1359)

    This excerpt is from the readme:

    The current maintainer is not contributing new features and doesn't have the time to review new features. Bug fixes and small improvements are welcome. Feel free to contribute small and easily reviewable PRs.

    Bug fixes are still important, and security fixes will be released as soon as possible. Contact the #prost channel in Tokio discord if you feel a bug or security fix is not getting enough attention.

    The maintainer expects the official protobuf project to release their rust library soon and expects it to be as fully featured as the C++ library. See their source code and crate for more information.

🚀 Features

  • Configure prost path via prost_build::Config or #[(prost(prost_path = "::prost")] (#1274)
  • Support for deprecated enum and oneof fields (#1316)

🐛 Bug Fixes

  • (prost-build) Resolve OneOf type name conflict with embedded message (#1294)
  • (prost-build) Avoid OneOf type collision with enums and keyword names (#1341)

💼 Dependencies

  • Use trait Error from core (#1179)
  • (deps) Update protobuf to v25.8 (#1323)
  • (deps) Update criterion requirement from 0.6 to 0.7 (#1308)
  • (deps) Update petgraph to 0.8 (#1327)
  • (deps) Bump actions/upload-artifact from 4 to 5 (#1351)
  • (deps) Bump actions/checkout from 5 to 6 (#1370)
  • Bump actions/checkout to v5 (#1312)
  • Update clippy to version 1.87 (#1292)
  • Replace once_cell dependency by std lib (#1119)

📚 Documentation

  • Update outdated link is test documentation (#1289)
  • Describe use of encoding module (#1322)
  • Update the readme MSRV to the actual number (#1331)
  • Update URLs after manual review (#1336)
  • Answer why fields are wrapped in option (#1358)

🎨 Styling

  • Add spaces to derive arguments in generated code (#1290)
  • Use variables directly in the format! string (#1293)

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Summary by CodeRabbit

  • Chores
    • Updated core dependencies for improved stability and performance.

Review Change Stack

Bumps [prost](https://github.com/tokio-rs/prost) from 0.13.5 to 0.14.3.
- [Release notes](https://github.com/tokio-rs/prost/releases)
- [Changelog](https://github.com/tokio-rs/prost/blob/master/CHANGELOG.md)
- [Commits](tokio-rs/prost@v0.13.5...v0.14.3)

---
updated-dependencies:
- dependency-name: prost
  dependency-version: 0.14.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels May 12, 2026
@coderabbitai
Copy link
Copy Markdown

coderabbitai Bot commented May 12, 2026

📝 Walkthrough

Walkthrough

The prost crate dependency in Cargo.toml is bumped from version 0.13 to 0.14. This is a straightforward version update to the protobuf code generation and runtime library used by the project. The change applies to the main dependency declaration for gRPC and protocol buffer support.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

🚥 Pre-merge checks | ✅ 4 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Description check ⚠️ Warning The PR description is entirely auto-generated by Dependabot and lacks the required template sections (Summary, Test plan, Related). Add a custom summary explaining the dependency bump, provide a test plan with verification steps, and link any related issues or documentation.
✅ Passed checks (4 passed)
Check name Status Explanation
Title check ✅ Passed The title accurately summarizes the main change: bumping the prost dependency from 0.13.5 to 0.14.3.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
📝 Generate docstrings
  • Create stacked PR
  • Commit on current branch
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch dependabot/cargo/prost-0.14.3

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link
Copy Markdown

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@Cargo.toml`:
- Line 27: The Cargo.toml currently mixes prost = "0.14" with tonic = "0.12" and
prost-build = "0.13", causing dual prost versions and prost::Message trait
incompatibility; update the dependent crates so they all target the same prost
0.14 ecosystem by changing tonic → 0.14, prost-build → 0.14, and tonic-build →
0.14 (and keep prost = "0.14"), then run cargo update to refresh Cargo.lock and
ensure only prost 0.14 is resolved so generated types and tonic codecs share the
same prost::Message trait.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro Plus

Run ID: 0ee2e219-d13f-4360-9e9b-a888465e40bd

📥 Commits

Reviewing files that changed from the base of the PR and between d00e4b6 and 0af8669.

⛔ Files ignored due to path filters (1)
  • Cargo.lock is excluded by !**/*.lock, !**/*.lock
📒 Files selected for processing (1)
  • Cargo.toml

Comment thread Cargo.toml
tonic = { version = "0.12", default-features = false, features = ["prost", "codegen"] }
tonic-web-wasm-client = "0.6"
prost = "0.13"
prost = "0.14"
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major | 🏗️ Heavy lift

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
set -euo pipefail

echo "== Locate Cargo.lock =="
fd -HI '^Cargo.lock$' .

echo
echo "== prost/tonic versions resolved in Cargo.lock =="
rg -n 'name = "(prost|prost-build|tonic|tonic-build)"|^version = ' Cargo.lock -A1

echo
echo "== Cargo.toml pinned versions =="
rg -n '^\s*(prost|prost-build|tonic|tonic-build)\s*=' Cargo.toml

Repository: Sentriscloud/sentrix-explorer-v2

Length of output: 28077


Align prost with tonic/prost-build to avoid protobuf trait/version skew

Line 27 upgrades prost to 0.14 alone, but this file still pins tonic = "0.12" (Line 25) and prost-build = "0.13" (Line 63). Cargo.lock shows both prost 0.13.5 and 0.14.3 are resolved—tonic 0.12 depends on prost ≤0.13, forcing a dual-version graph. This breaks prost::Message trait compatibility between generated types and tonic codecs.

Update all related dependencies to the same ecosystem version:

  • tonic from 0.12 → 0.14
  • prost-build from 0.13 → 0.14
  • tonic-build from 0.12 → 0.14
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@Cargo.toml` at line 27, The Cargo.toml currently mixes prost = "0.14" with
tonic = "0.12" and prost-build = "0.13", causing dual prost versions and
prost::Message trait incompatibility; update the dependent crates so they all
target the same prost 0.14 ecosystem by changing tonic → 0.14, prost-build →
0.14, and tonic-build → 0.14 (and keep prost = "0.14"), then run cargo update to
refresh Cargo.lock and ensure only prost 0.14 is resolved so generated types and
tonic codecs share the same prost::Message trait.

@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github May 12, 2026

Looks like prost is up-to-date now, so this is no longer needed.

@dependabot dependabot Bot closed this May 12, 2026
@dependabot dependabot Bot deleted the dependabot/cargo/prost-0.14.3 branch May 12, 2026 05:15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file rust Pull requests that update rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants