Skip to content

Commit 5e2992a

Browse files
build(deps): bump prost-build from 0.13.5 to 0.14.1 (#452)
Bumps [prost-build](https://github.com/tokio-rs/prost) from 0.13.5 to 0.14.1. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/tokio-rs/prost/blob/master/CHANGELOG.md">prost-build's changelog</a>.</em></p> <blockquote> <h1>Prost version 0.14.1</h1> <p><em>PROST!</em> is a <a href="https://protobuf.dev/">Protocol Buffers</a> implementation for the <a href="https://www.rust-lang.org/">Rust Language</a>. <code>prost</code> generates simple, idiomatic Rust code from <code>proto2</code> and <code>proto3</code> files.</p> <h2>⚠️ Revert emission of <code>rerun</code> commands</h2> <p>Version 0.14.1 reverts the emission of <code>rerun</code> commands. Other than this change, it is identical to 0.14.0.</p> <p>In version 0.14.0, <code>prost-build</code> began emitting <code>rerun</code> commands. While intended to improve build correctness, this change caused regressions for some users—for example, those generating <code>protos</code> from an <code>includes</code> directory. These edge cases are difficult to address reliably, so the change has been rolled back in 0.14.1.</p> <p>For more details, see [issue <a href="https://redirect.github.com/tokio-rs/prost/issues/1296">#1296</a>](<a href="https://redirect.github.com/tokio-rs/prost/issues/1296">tokio-rs/prost#1296</a>).</p> <h2>Breaking changes</h2> <ul> <li> <p>prost: Relax Message Debug trait bound (<a href="https://redirect.github.com/tokio-rs/prost/issues/1147">#1147</a>)</p> <p>BREAKING CHANGE: <code>trait Debug</code> was a supertrait of <code>trait Message</code>. This is no longer required by <code>prost</code>. If your code relies on <code>trait Debug</code> being implemented for every <code>impl Message</code>, you must now explicitly state that you require both Debug and Message. For example: <code>where M: Debug + Message</code></p> </li> <li> <p>prost: Remove prost-derive feature (<a href="https://redirect.github.com/tokio-rs/prost/issues/1247">#1247</a>)</p> <p>BREAKING CHANGE: Feature flag <code>prost-derive</code> is renamed to <code>derive</code>. Please rename any usage of <code>prost-derive</code> feature in your <code>Cargo.toml</code>.</p> </li> <li> <p>prost-build: Prevent repeated fields to be boxed (<a href="https://redirect.github.com/tokio-rs/prost/issues/1237">#1237</a>)</p> <p>BREAKING CHANGE: A repeated field that is manually marked as boxed was typed as <code>Vec&lt;Box&lt;T&gt;&gt;</code>. Those fields are now simply typed as <code>Vec&lt;T&gt;</code> to prevent double indirection. The <code>boxed</code> configuration is effectively ignored for repeated fields.</p> </li> <li> <p>prost-build: Make <code>type_name_domain</code> cumulative (<a href="https://redirect.github.com/tokio-rs/prost/issues/1228">#1228</a>)</p> <p>BREAKING CHANGE: The configuration for domain names of messages is now cumulative. All calls to <code>prost_build::Config::type_name_domain</code> 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.</p> </li> <li> <p>prost-build: Derive Eq and Hash trait for messages where possible (<a href="https://redirect.github.com/tokio-rs/prost/issues/1175">#1175</a>)</p> <p>BREAKING CHANGE: <code>prost-build</code> will automatically derive <code>trait Eq</code> and <code>trait Hash</code> for types where all field support those as well. If you manually <code>impl Eq</code> and/or <code>impl Hash</code> for generated types, then you need to remove the manual implementation. If you use <code>type_attribute</code> to <code>derive(Eq)</code> and/or <code>derive(Hash)</code>, then you need to remove those.</p> </li> </ul> <h2>Features</h2> <ul> <li>prost-types: Implement conversion <code>Duration</code> to/from <code>chrono::TimeDelta</code> (<a href="https://redirect.github.com/tokio-rs/prost/issues/1236">#1236</a>)</li> <li>prost-build: Prepare for 2024 keyword <code>gen</code> (<a href="https://redirect.github.com/tokio-rs/prost/issues/1257">#1257</a>)</li> </ul> <h2>Dependencies</h2> <ul> <li><em>(deps)</em> Update pulldown-cmark to 0.13 (<a href="https://redirect.github.com/tokio-rs/prost/issues/1259">#1259</a>)</li> <li><em>(deps)</em> update criterion requirement from 0.5 to 0.6 (<a href="https://redirect.github.com/tokio-rs/prost/issues/1280">#1280</a>)</li> </ul> <h2>Documentation</h2> <ul> <li>Update dead link LICENSE in <code>prost-types/README.md</code> (<a href="https://redirect.github.com/tokio-rs/prost/issues/1262">#1262</a>)</li> </ul> <h2>Styling</h2> <ul> <li>Use DoubleEndedIterator::next_back (<a href="https://redirect.github.com/tokio-rs/prost/issues/1255">#1255</a>)</li> <li>Fix typo (<a href="https://redirect.github.com/tokio-rs/prost/issues/1260">#1260</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/tokio-rs/prost/commit/9965a988a7f95d55c106b933a82a3e657dce02c2"><code>9965a98</code></a> chore: Release version 0.14.1 (<a href="https://redirect.github.com/tokio-rs/prost/issues/1299">#1299</a>)</li> <li><a href="https://github.com/tokio-rs/prost/commit/0caca2977d5a377c74de839b0d0a1a479e060335"><code>0caca29</code></a> Revert &quot;feat(prost-build): emit <code>rerun</code> commands (<a href="https://redirect.github.com/tokio-rs/prost/issues/1140">#1140</a>)&quot; (<a href="https://redirect.github.com/tokio-rs/prost/issues/1297">#1297</a>)</li> <li><a href="https://github.com/tokio-rs/prost/commit/3543eb8001d85565bcbc864a37ecd771afdaec49"><code>3543eb8</code></a> chore: Release version 0.14.0 (<a href="https://redirect.github.com/tokio-rs/prost/issues/1276">#1276</a>)</li> <li><a href="https://github.com/tokio-rs/prost/commit/1e93f5612d70a292d6d3919bfc6af22bf82e481a"><code>1e93f56</code></a> build(deps): update criterion requirement from 0.5 to 0.6 (<a href="https://redirect.github.com/tokio-rs/prost/issues/1280">#1280</a>)</li> <li><a href="https://github.com/tokio-rs/prost/commit/bdd03fcb8dbe514a3bc2ecfbc7cb8f335d21436c"><code>bdd03fc</code></a> Update config.rs (<a href="https://redirect.github.com/tokio-rs/prost/issues/1270">#1270</a>)</li> <li><a href="https://github.com/tokio-rs/prost/commit/fcf610edf53826eacd7010a667b7026d5560060f"><code>fcf610e</code></a> ci: Run clippy with edition 2024 enabled (<a href="https://redirect.github.com/tokio-rs/prost/issues/1256">#1256</a>)</li> <li><a href="https://github.com/tokio-rs/prost/commit/8a3d42e5a30d110e54784dd57384d46dbcbacc5c"><code>8a3d42e</code></a> docs: update dead link LICENSE in <code>prost-types/README.md</code> (<a href="https://redirect.github.com/tokio-rs/prost/issues/1262">#1262</a>)</li> <li><a href="https://github.com/tokio-rs/prost/commit/97d5841c3bd74024bc877a7f8508c7ec1e07dd6d"><code>97d5841</code></a> chore: fix typo (<a href="https://redirect.github.com/tokio-rs/prost/issues/1260">#1260</a>)</li> <li><a href="https://github.com/tokio-rs/prost/commit/5c97cf88e7ff0376413cd51cef5969c3ee091ac2"><code>5c97cf8</code></a> build(deps): Update pulldown-cmark to 0.13 (<a href="https://redirect.github.com/tokio-rs/prost/issues/1259">#1259</a>)</li> <li><a href="https://github.com/tokio-rs/prost/commit/db871b4e719565a384dea329519c8f0d7b21f484"><code>db871b4</code></a> harden <code>ref mut</code> according to edition 2024 (<a href="https://redirect.github.com/tokio-rs/prost/issues/1248">#1248</a>)</li> <li>Additional commits viewable in <a href="https://github.com/tokio-rs/prost/compare/v0.13.5...v0.14.1">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=prost-build&package-manager=cargo&previous-version=0.13.5&new-version=0.14.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@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) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 300673c commit 5e2992a

File tree

2 files changed

+32
-9
lines changed

2 files changed

+32
-9
lines changed

Cargo.lock

Lines changed: 31 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ edition = "2021"
1111
ignored = ["serde_millis"]
1212

1313
[build-dependencies]
14-
prost-build = "0.13"
14+
prost-build = "0.14"
1515

1616
[dependencies]
1717
async-trait = "0.1.88"

0 commit comments

Comments
 (0)