dependabot[bot] opened a new pull request, #1883:
URL: https://github.com/apache/arrow-rs/pull/1883

   Updates the requirements on [clap](https://github.com/clap-rs/clap) to 
permit the latest version.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/clap-rs/clap/releases";>clap's releases</a>.</em></p>
   <blockquote>
   <h2>v3.2.4</h2>
   <h2>[3.2.4] - 2022-06-14</h2>
   <h3>Fixes</h3>
   <ul>
   <li><em>(derive)</em> Provide more clearer deprecation messages for 
<code>#[clap(parse)]</code> attribute (<a 
href="https://github-redirect.dependabot.com/clap-rs/clap/issues/3832";>#3832</a>)</li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md";>clap's 
changelog</a>.</em></p>
   <blockquote>
   <h2>[3.2.4] - 2022-06-14</h2>
   <h3>Fixes</h3>
   <ul>
   <li><em>(derive)</em> Provide more clearer deprecation messages for 
<code>#[clap(parse)]</code> attribute (<a 
href="https://github-redirect.dependabot.com/clap-rs/clap/issues/3832";>#3832</a>)</li>
   </ul>
   <h2>[3.2.3] - 2022-06-14</h2>
   <h3>Fixes</h3>
   <ul>
   <li>Moved deprecations to be behind the <code>deprecated</code> Cargo.toml 
feature (<a 
href="https://github-redirect.dependabot.com/clap-rs/clap/issues/3830";>#3830</a>)
   <ul>
   <li>For now, it is disabled by default though we are considering enabling it 
by
   default as we release the next major version to help draw attention to the
   deprecation migration path</li>
   </ul>
   </li>
   </ul>
   <h2>[3.2.2] - 2022-06-14</h2>
   <h3>Fixes</h3>
   <ul>
   <li><em>(derive)</em> Improve the highlighted code for deprecation 
warnings</li>
   </ul>
   <p><strong>gated behind <code>unstable-v4</code></strong></p>
   <ul>
   <li><em>(derive)</em> Default to <code>#[clap(value_parser, action)]</code> 
instead of <code>#[clap(parse)]</code> (<a 
href="https://github-redirect.dependabot.com/clap-rs/clap/issues/3827";>#3827</a>)</li>
   </ul>
   <h2>[3.2.1] - 2022-06-13</h2>
   <h2>[3.2.0] - 2022-06-13</h2>
   <h3>Compatibility</h3>
   <p>MSRV is now 1.56.0 (<a 
href="https://github-redirect.dependabot.com/clap-rs/clap/issues/3732";>#3732</a>)</p>
   <p>Behavior</p>
   <ul>
   <li>Defaults no longer satisfy <code>required</code> and its variants (<a 
href="https://github-redirect.dependabot.com/clap-rs/clap/issues/3793";>#3793</a>)</li>
   <li>When misusing <code>ArgMatches::value_of</code> and friends, debug 
asserts were turned into panics</li>
   </ul>
   <p>Moving (old location deprecated)</p>
   <ul>
   <li><code>clap::{PossibleValue, ValueHint}</code> to 
<code>clap::builder::{PossibleValue, ValueHint}</code></li>
   <li><code>clap::{Indices, OsValues, ValueSource, Values}</code> to 
<code>clap::parser::{Indices, OsValues, ValueSource, Values}</code></li>
   <li><code>clap::ArgEnum</code> to <code>clap::ValueEnum</code> (<a 
href="https://github-redirect.dependabot.com/clap-rs/clap/issues/3799";>#3799</a>)</li>
   </ul>
   <p>Replaced</p>
   <ul>
   <li><code>Arg::allow_invalid_utf8</code> with 
<code>Arg::value_parser(value_parser!(PathBuf))</code> (<a 
href="https://github-redirect.dependabot.com/clap-rs/clap/issues/3753";>#3753</a>)</li>
   <li><code>Arg::validator</code> / <code>Arg::validator_os</code> with 
<code>Arg::value_parser</code> (<a 
href="https://github-redirect.dependabot.com/clap-rs/clap/issues/3753";>#3753</a>)</li>
   <li><code>Arg::validator_regex</code> with users providing their own 
<code>builder::TypedValueParser</code> (<a 
href="https://github-redirect.dependabot.com/clap-rs/clap/issues/3756";>#3756</a>)</li>
   <li><code>Arg::forbid_empty_values</code> with 
<code>builder::NonEmptyStringValueParser</code> / 
<code>builder::PathBufValueParser</code> (<a 
href="https://github-redirect.dependabot.com/clap-rs/clap/issues/3753";>#3753</a>)</li>
   <li><code>Arg::possible_values</code> with 
<code>Arg::value_parser([...])</code>, 
<code>builder::PossibleValuesParser</code>, or 
<code>builder::EnumValueParser</code> (<a 
href="https://github-redirect.dependabot.com/clap-rs/clap/issues/3753";>#3753</a>)</li>
   <li><code>Arg::max_occurrences</code> with 
<code>arg.action(ArgAction::Count).value_parser(value_parser!(u8).range(..N))</code>
 for flags (<a 
href="https://github-redirect.dependabot.com/clap-rs/clap/issues/3797";>#3797</a>)</li>
   <li><code>Arg::multiple_occurrences</code> with 
<code>ArgAction::Append</code> or <code>ArgAction::Count</code> though 
positionals will need <code>Arg::multiple_values</code> (<a 
href="https://github-redirect.dependabot.com/clap-rs/clap/issues/3772";>#3772</a>,
 <a 
href="https://github-redirect.dependabot.com/clap-rs/clap/issues/3797";>#3797</a>)</li>
   <li><code>Command::args_override_self</code> with 
<code>ArgAction::Set</code> (<a 
href="https://github-redirect.dependabot.com/clap-rs/clap/issues/2627";>#2627</a>,
 <a 
href="https://github-redirect.dependabot.com/clap-rs/clap/issues/3797";>#3797</a>)</li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/clap-rs/clap/commit/20358ff295cc6ef98e13d3a5b22950bbd9a56c7d";><code>20358ff</code></a>
 chore: Release</li>
   <li><a 
href="https://github.com/clap-rs/clap/commit/241a6fcfbc6a9066d10bce1bc140b36d3cb1abc2";><code>241a6fc</code></a>
 docs: Update changelog</li>
   <li><a 
href="https://github.com/clap-rs/clap/commit/ffd24af5fe1c8f2aacc7f709daac1e50f18ae4f2";><code>ffd24af</code></a>
 Merge pull request <a 
href="https://github-redirect.dependabot.com/clap-rs/clap/issues/3832";>#3832</a>
 from epage/derive</li>
   <li><a 
href="https://github.com/clap-rs/clap/commit/5881bd02cae000164a4df42be099811de44a28b7";><code>5881bd0</code></a>
 fix(derive): Provide derive-friendly deprecation messages</li>
   <li><a 
href="https://github.com/clap-rs/clap/commit/11fe3ce4049973bc6b477df5f7da8f9bbdde628c";><code>11fe3ce</code></a>
 fix(derive): Allow opting in to the original deprecations</li>
   <li><a 
href="https://github.com/clap-rs/clap/commit/ae81b09359775a7a9bc09ced77391f98ab0a91d5";><code>ae81b09</code></a>
 refactor(derive): Split up chained calls</li>
   <li><a 
href="https://github.com/clap-rs/clap/commit/ce5cc9282023e772273af45e867c2f3a25a3a23d";><code>ce5cc92</code></a>
 refactor(derive): Clarify the kinds of methods</li>
   <li><a 
href="https://github.com/clap-rs/clap/commit/89beb28e73ad681fe6bf28857c30bd4b1391e8cd";><code>89beb28</code></a>
 fix(derive): Reduce amount of deprecation noise</li>
   <li><a 
href="https://github.com/clap-rs/clap/commit/63a17a40ad1ea1e70eac14e3d3b96529f0b84268";><code>63a17a4</code></a>
 chore: Release</li>
   <li><a 
href="https://github.com/clap-rs/clap/commit/d290f11b8d5389d033bcfb550a7fb8717baeafd2";><code>d290f11</code></a>
 docs: Update changelog</li>
   <li>Additional commits viewable in <a 
href="https://github.com/clap-rs/clap/compare/clap_complete-v3.1.0...v3.2.4";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   
   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 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