dependabot[bot] opened a new pull request, #1153: URL: https://github.com/apache/datafusion-python/pull/1153
Bumps [prost](https://github.com/tokio-rs/prost) from 0.13.5 to 0.14.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/tokio-rs/prost/blob/master/CHANGELOG.md">prost's changelog</a>.</em></p> <blockquote> <h1>Prost version 0.14.0</h1> <p><em>PROST!</em> is a <a href="https://developers.google.com/protocol-buffers/">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>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: Emit <code>rerun</code> commands (<a href="https://redirect.github.com/tokio-rs/prost/issues/1140">#1140</a>)</p> <p>BREAKING CHANGE: Previously <code>cargo</code> assumed it had to rerun <code>build.rs</code> if any files in the project changed. <code>prost-build</code> will now emit <code>rerun</code> commands, which means only the explicitly marked files cause a rerun. If your <code>build.rs</code> is dependent on any other file paths than those given to <code>prost-build</code>, then your <code>build.rs</code> needs to emit <code>rerun</code> commands as well.</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<Box<T>></code>. Those fields are now simply typed as <code>Vec<T></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> <h2>Testing</h2> <ul> <li>Run tests using edition 2024 (<a href="https://redirect.github.com/tokio-rs/prost/issues/1254">#1254</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/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><a href="https://github.com/tokio-rs/prost/commit/85ca01c861c5045d76f07db9566199b73601be48"><code>85ca01c</code></a> style: Prepare for 2024 keyword <code>gen</code> (<a href="https://redirect.github.com/tokio-rs/prost/issues/1257">#1257</a>)</li> <li><a href="https://github.com/tokio-rs/prost/commit/d636350cc028349823bb151ffe18f4c6082687e0"><code>d636350</code></a> Update config.rs. Fix spell mistake. (<a href="https://redirect.github.com/tokio-rs/prost/issues/1258">#1258</a>)</li> <li>Additional commits viewable in <a href="https://github.com/tokio-rs/prost/compare/v0.13.5...v0.14.0">compare view</a></li> </ul> </details> <br /> [](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> -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For additional commands, e-mail: github-h...@datafusion.apache.org