dependabot[bot] opened a new pull request, #2664:
URL: https://github.com/apache/iggy/pull/2664

   Bumps [darling](https://github.com/TedDriggs/darling) from 0.20.11 to 0.23.0.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/TedDriggs/darling/releases";>darling's 
releases</a>.</em></p>
   <blockquote>
   <h2>v0.23.0</h2>
   <ul>
   <li>Bump MSRV to 1.88.0; there have been no code changes that caused this, 
but due to dependency issues CI no longer works on 1.56.0 <a 
href="https://redirect.github.com/TedDriggs/darling/issues/357";>#357</a></li>
   <li>Revert dependency version pins which caused problems <a 
href="https://redirect.github.com/TedDriggs/darling/issues/385";>#385</a></li>
   </ul>
   <h2>v0.22.0</h2>
   <p><strong>YANKED</strong> Pinned dependencies made this version cause 
conflicts with other crates.</p>
   <ul>
   <li><strong>BREAKING:</strong> Remove <code>fnv</code> dependency, as 
runtime performance gain does not justify additional dependency. This was 
exposed to users of <code>darling::usage</code>, so it may be breaking for them 
<a href="https://redirect.github.com/TedDriggs/darling/pull/373";>#373</a></li>
   <li>Add <code>#[darling(default = || expr(val))]</code> support, allowing a 
closure where a path was previously required <a 
href="https://redirect.github.com/TedDriggs/darling/pull/380";>#380</a></li>
   <li>Preserve span information for paths given to 
<code>darling::util::Callable</code> as literal strings</li>
   <li>Fix some documentation typos</li>
   </ul>
   <h2>v0.21.3</h2>
   <ul>
   <li>Fix: Forward <code>Override::&lt;T&gt;::from_expr</code> to 
<code>T::from_expr</code> <a 
href="https://redirect.github.com/TedDriggs/darling/issues/371";>#371</a></li>
   </ul>
   <h2>v0.21.2</h2>
   <ul>
   <li>Add <code>#[darling(from_expr = ...)]</code> when deriving 
<code>FromMeta</code> to support overriding the key-value form <a 
href="https://redirect.github.com/TedDriggs/darling/issues/369";>#369</a></li>
   <li>Keep parsing the body and type params even if there are errors from 
parsing attributes. <a 
href="https://redirect.github.com/TedDriggs/darling/issues/7";>#7</a></li>
   <li>Support <code>#[darling(with = ...)]</code> on the <code>generics</code> 
field when deriving <code>FromDeriveInput</code>.</li>
   <li>Return an error, rather than panicking, when doing shape validation on a 
<code>union</code>. <a 
href="https://redirect.github.com/TedDriggs/darling/issues/365";>#365</a></li>
   </ul>
   <h2>v0.21.1</h2>
   <ul>
   <li>Track all alternate field names, and show them in error message if there 
aren't too many. <a 
href="https://redirect.github.com/TedDriggs/darling/issues/325";>#325</a></li>
   <li>Track all alternate values for enum variants, and show them in error 
messages if there aren't too many. <a 
href="https://redirect.github.com/TedDriggs/darling/issues/362";>#362</a></li>
   </ul>
   <h2>v0.21.0</h2>
   <ul>
   <li>Potentially breaking: Emit error when an attribute path is present in 
both <code>attributes</code> and <code>forward_attrs</code>. <a 
href="https://redirect.github.com/TedDriggs/darling/issues/336";>#336</a></li>
   <li>Support parsing attributes which contain keywords <a 
href="https://redirect.github.com/TedDriggs/darling/issues/238";>#238</a></li>
   <li>Add <code>SpannedValue::into_inner</code> <a 
href="https://redirect.github.com/TedDriggs/darling/issues/342";>#342</a></li>
   <li>Add <code>#[darling(derive_syn_parse)]</code> to also impl 
<code>syn::parse::Parse</code> when deriving <code>FromMeta</code> <a 
href="https://redirect.github.com/TedDriggs/darling/issues/285";>#285</a></li>
   <li>Make <code>impl FromMeta for syn::TypePath</code> support both 
quote-wrapped and bare values <a 
href="https://redirect.github.com/TedDriggs/darling/issues/351";>#351</a></li>
   <li>Add <code>util::PreservedStrExpr</code> <a 
href="https://redirect.github.com/TedDriggs/darling/pull/346";>#346</a></li>
   <li>Impl <code>UsesTypeParams</code> and <code>UsesLifetimes</code> for 
<code>WithOriginal</code> <a 
href="https://redirect.github.com/TedDriggs/darling/issues/215";>#215</a></li>
   <li>Update error message emitted by <code>&lt;() as 
FromMeta&gt;::from_list</code> to allow use of <code>()</code> as a 
<code>#[darling(flatten)]</code> target <a 
href="https://redirect.github.com/TedDriggs/darling/issues/353";>#353</a></li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/TedDriggs/darling/blob/master/CHANGELOG.md";>darling's 
changelog</a>.</em></p>
   <blockquote>
   <h2>v0.23.0 (December 3, 2025)</h2>
   <ul>
   <li>Bump MSRV to 1.88.0; there have been no code changes that caused this, 
but due to dependency issues CI no longer works on 1.56.0 <a 
href="https://redirect.github.com/TedDriggs/darling/issues/357";>#357</a></li>
   </ul>
   <h2>v0.22.0 (December 2, 2025)</h2>
   <ul>
   <li><strong>BREAKING:</strong> Remove <code>fnv</code> dependency, as 
runtime performance gain does not justify additional dependency. This was 
exposed to users of <code>darling::usage</code>, so it may be breaking for them 
<a href="https://redirect.github.com/TedDriggs/darling/pull/373";>#373</a></li>
   <li>Add <code>#[darling(default = || expr(val))]</code> support, allowing a 
closure where a path was previously required <a 
href="https://redirect.github.com/TedDriggs/darling/pull/380";>#380</a></li>
   <li>Preserve span information for paths given to 
<code>darling::util::Callable</code> as literal strings</li>
   <li>Fix some documentation typos</li>
   </ul>
   <h2>v0.21.3 (August 22, 2025)</h2>
   <ul>
   <li>Fix: Forward <code>Override::&lt;T&gt;::from_expr</code> to 
<code>T::from_expr</code> <a 
href="https://redirect.github.com/TedDriggs/darling/issues/371";>#371</a></li>
   </ul>
   <h2>v0.21.2 (August 14, 2025)</h2>
   <ul>
   <li>Add <code>#[darling(from_expr = ...)]</code> when deriving 
<code>FromMeta</code> to support overriding the key-value form <a 
href="https://redirect.github.com/TedDriggs/darling/issues/369";>#369</a></li>
   <li>Keep parsing the body and type params even if there are errors from 
parsing attributes. <a 
href="https://redirect.github.com/TedDriggs/darling/issues/7";>#7</a></li>
   <li>Support <code>#[darling(with = ...)]</code> on the <code>generics</code> 
field when deriving <code>FromDeriveInput</code>.</li>
   <li>Return an error, rather than panicking, when doing shape validation on a 
<code>union</code>. <a 
href="https://redirect.github.com/TedDriggs/darling/issues/365";>#365</a></li>
   </ul>
   <h2>v0.21.1 (August 4, 2025)</h2>
   <ul>
   <li>Track all alternate field names, and show them in error message if there 
aren't too many. <a 
href="https://redirect.github.com/TedDriggs/darling/issues/325";>#325</a></li>
   <li>Track all alternate values for enum variants, and show them in error 
messages if there aren't too many. <a 
href="https://redirect.github.com/TedDriggs/darling/issues/362";>#362</a></li>
   </ul>
   <h2>v0.21.0 (July 10, 2025)</h2>
   <ul>
   <li>Potentially breaking: Emit error when an attribute path is present in 
both <code>attributes</code> and <code>forward_attrs</code>. <a 
href="https://redirect.github.com/TedDriggs/darling/issues/336";>#336</a></li>
   <li>Support parsing attributes which contain keywords <a 
href="https://redirect.github.com/TedDriggs/darling/issues/238";>#238</a></li>
   <li>Add <code>SpannedValue::into_inner</code> <a 
href="https://redirect.github.com/TedDriggs/darling/issues/342";>#342</a></li>
   <li>Add <code>#[darling(derive_syn_parse)]</code> to also impl 
<code>syn::parse::Parse</code> when deriving <code>FromMeta</code> <a 
href="https://redirect.github.com/TedDriggs/darling/issues/285";>#285</a></li>
   <li>Make <code>impl FromMeta for syn::TypePath</code> support both 
quote-wrapped and bare values <a 
href="https://redirect.github.com/TedDriggs/darling/issues/351";>#351</a></li>
   <li>Add <code>util::PreservedStrExpr</code> <a 
href="https://redirect.github.com/TedDriggs/darling/pull/346";>#346</a></li>
   <li>Impl <code>UsesTypeParams</code> and <code>UsesLifetimes</code> for 
<code>WithOriginal</code> <a 
href="https://redirect.github.com/TedDriggs/darling/issues/215";>#215</a></li>
   <li>Update error message emitted by <code>&lt;() as 
FromMeta&gt;::from_list</code> to allow use of <code>()</code> as a 
<code>#[darling(flatten)]</code> target <a 
href="https://redirect.github.com/TedDriggs/darling/issues/353";>#353</a></li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/TedDriggs/darling/commit/cfef4e58225fb72edeb712b70ab984bd59d3baf2";><code>cfef4e5</code></a>
 Update compiletests to rustc 1.88.0</li>
   <li><a 
href="https://github.com/TedDriggs/darling/commit/334ee489cc3d443cbb3a95bcefc03998e6b8c337";><code>334ee48</code></a>
 Bump version to 0.23.0</li>
   <li><a 
href="https://github.com/TedDriggs/darling/commit/858b8695acca744e04f13c67bdba4d19b8015565";><code>858b869</code></a>
 Bump MSRV to 1.88.0</li>
   <li><a 
href="https://github.com/TedDriggs/darling/commit/dd9cb44d57779a9f661931ca6835e401f9527e79";><code>dd9cb44</code></a>
 Bump CI tests to 1.88.0</li>
   <li><a 
href="https://github.com/TedDriggs/darling/commit/4e57762f5d95d38a08998b1ca447f5c05580a599";><code>4e57762</code></a>
 Revert &quot;Lock quote version&quot;</li>
   <li><a 
href="https://github.com/TedDriggs/darling/commit/775a52342df124b3109f99520a67552f61da9fe4";><code>775a523</code></a>
 Revert &quot;Lock min version of proc-macro2&quot;</li>
   <li><a 
href="https://github.com/TedDriggs/darling/commit/394727845295c94324cb04786ffe3a84475c2446";><code>3947278</code></a>
 Bump version to 0.22.0</li>
   <li><a 
href="https://github.com/TedDriggs/darling/commit/cd33f9bdcf8361b0cdafea3543a33ef543abf720";><code>cd33f9b</code></a>
 chore: fix some minor issues in the comments</li>
   <li><a 
href="https://github.com/TedDriggs/darling/commit/2ca795bb1158eef581456013fc782c18ccef07db";><code>2ca795b</code></a>
 docs: fix minor typo in top-level doc comment ('its' → 'it’s')</li>
   <li><a 
href="https://github.com/TedDriggs/darling/commit/878b5ba12059dffc417f3e354bf39dab0d36068f";><code>878b5ba</code></a>
 Lock min version of proc-macro2</li>
   <li>Additional commits viewable in <a 
href="https://github.com/TedDriggs/darling/compare/v0.20.11...v0.23.0";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=darling&package-manager=cargo&previous-version=0.20.11&new-version=0.23.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   You can trigger a rebase of this PR 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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to