[PR #66] [CLOSED] chore(deps): bump clap from 3.0.0-beta.4 to 3.0.0-beta.5 #727

Closed
opened 2026-01-05 14:52:45 +01:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/LGUG2Z/komorebi/pull/66
Author: @dependabot[bot]
Created: 11/1/2021
Status: Closed

Base: masterHead: dependabot/cargo/clap-3.0.0-beta.5


📝 Commits (1)

  • 7833470 chore(deps): bump clap from 3.0.0-beta.4 to 3.0.0-beta.5

📊 Changes

4 files changed (+22 additions, -16 deletions)

View changed files

📝 Cargo.lock (+19 -13)
📝 komorebi-core/Cargo.toml (+1 -1)
📝 komorebi/Cargo.toml (+1 -1)
📝 komorebic/Cargo.toml (+1 -1)

📄 Description

Bumps clap from 3.0.0-beta.4 to 3.0.0-beta.5.

Changelog

Sourced from clap's changelog.

v3.0.0-beta.5 (2021-10-18)

BREAKING CHANGES

  • Renamed Features
    • unicode_help to unicode to encompass more functionality
  • Gated behind features
    • App::replace is now gated behind unstable-replace
  • Removed derive requirement
    • clap::ArgEnum
    • clap::Args
    • clap::FromArgMatches
    • clap::IntoApp
    • clap::Subcommand
  • Renamed Traits
    • clap::Clap => clap::Parser
  • Renamed Methods
    • App::generate_usage => App::render_usage
  • Removed Settings
    • AppSettings::DisableVersionForSubcommands is now default behaviour
    • AppSettings::ColoredHelp: we are now relying solely on the color feature flag and App::color method
    • AppSettings::StrictUtf8 is now default behaviour
    • AppSettings::AllowInvalidUtf8 in favor of ArgSettings::AllowInvalidUtf8
    • AppSettings::UnifiedHelpMessage is now default behaviour
    • AppSettings::ColorAlways in favor of App::color
    • AppSettings::ColorNever in favor of App::color
    • AppSettings::ColorAuto in favor of App::color
  • Removed methods
    • App
      • App::get_flags
      • App::get_positionals_with_no_heading
      • App::get_flags_with_no_heading
      • App::get_opts_with_no_heading
      • App::stop_custom_headings in favor of App:help_heading(None)
    • Error
      • Error::with_description in favor of App::error
    • ArgEnum
      • ArgEnum::as_arg in favor of ArgEnum::to_arg_value
    • clap_generate::Generator
      • Generator::all_subcommands
      • Generator::find_subcommand_with_path
      • Generator::subcommands
      • Generator::shorts_and_visible_aliases
      • Generator::longs_and_visible_aliases
      • Generator::flags
  • Removed
    • ArgEnum::VARIANTS in favor of ArgEnum::value_variants
  • Deprecated
    • clap::clap_app! in favor of other builders
  • Changed

... (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 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)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/LGUG2Z/komorebi/pull/66 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 11/1/2021 **Status:** ❌ Closed **Base:** `master` ← **Head:** `dependabot/cargo/clap-3.0.0-beta.5` --- ### 📝 Commits (1) - [`7833470`](https://github.com/LGUG2Z/komorebi/commit/78334707682150e080f47b873d355e6f4a06db0d) chore(deps): bump clap from 3.0.0-beta.4 to 3.0.0-beta.5 ### 📊 Changes **4 files changed** (+22 additions, -16 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+19 -13) 📝 `komorebi-core/Cargo.toml` (+1 -1) 📝 `komorebi/Cargo.toml` (+1 -1) 📝 `komorebic/Cargo.toml` (+1 -1) </details> ### 📄 Description Bumps [clap](https://github.com/clap-rs/clap) from 3.0.0-beta.4 to 3.0.0-beta.5. <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>v3.0.0-beta.5 (2021-10-18)</h2> <h4>BREAKING CHANGES</h4> <ul> <li><strong>Renamed Features</strong> <ul> <li><code>unicode_help</code> to <code>unicode</code> to encompass more functionality</li> </ul> </li> <li><strong>Gated behind features</strong> <ul> <li><code>App::replace</code> is now gated behind <code>unstable-replace</code></li> </ul> </li> <li><strong>Removed <code>derive</code> requirement</strong> <ul> <li><code>clap::ArgEnum</code></li> <li><code>clap::Args</code></li> <li><code>clap::FromArgMatches</code></li> <li><code>clap::IntoApp</code></li> <li><code>clap::Subcommand</code></li> </ul> </li> <li><strong>Renamed Traits</strong> <ul> <li><code>clap::Clap</code> =&gt; <code>clap::Parser</code></li> </ul> </li> <li><strong>Renamed Methods</strong> <ul> <li><code>App::generate_usage</code> =&gt; <code>App::render_usage</code></li> </ul> </li> <li><strong>Removed Settings</strong> <ul> <li><code>AppSettings::DisableVersionForSubcommands</code> is now default behaviour</li> <li><code>AppSettings::ColoredHelp</code>: we are now relying solely on the <code>color</code> feature flag and <code>App::color</code> method</li> <li><code>AppSettings::StrictUtf8</code> is now default behaviour</li> <li><code>AppSettings::AllowInvalidUtf8</code> in favor of <code>ArgSettings::AllowInvalidUtf8</code></li> <li><code>AppSettings::UnifiedHelpMessage</code> is now default behaviour</li> <li><code>AppSettings::ColorAlways</code> in favor of <code>App::color</code></li> <li><code>AppSettings::ColorNever</code> in favor of <code>App::color</code></li> <li><code>AppSettings::ColorAuto</code> in favor of <code>App::color</code></li> </ul> </li> <li><strong>Removed methods</strong> <ul> <li><strong>App</strong> <ul> <li><code>App::get_flags</code></li> <li><code>App::get_positionals_with_no_heading</code></li> <li><code>App::get_flags_with_no_heading</code></li> <li><code>App::get_opts_with_no_heading</code></li> <li><code>App::stop_custom_headings</code> in favor of <code>App:help_heading(None)</code></li> </ul> </li> <li><strong>Error</strong> <ul> <li><code>Error::with_description</code> in favor of <code>App::error</code></li> </ul> </li> <li><strong>ArgEnum</strong> <ul> <li><code>ArgEnum::as_arg</code> in favor of <code>ArgEnum::to_arg_value</code></li> </ul> </li> <li><strong>clap_generate::Generator</strong> <ul> <li><code>Generator::all_subcommands</code></li> <li><code>Generator::find_subcommand_with_path</code></li> <li><code>Generator::subcommands</code></li> <li><code>Generator::shorts_and_visible_aliases</code></li> <li><code>Generator::longs_and_visible_aliases</code></li> <li><code>Generator::flags</code></li> </ul> </li> </ul> </li> <li><strong>Removed</strong> <ul> <li><code>ArgEnum::VARIANTS</code> in favor of <code>ArgEnum::value_variants</code></li> </ul> </li> <li><strong>Deprecated</strong> <ul> <li><code>clap::clap_app!</code> in favor of other builders</li> </ul> </li> <li><strong>Changed</strong></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/33d86effc9b34e207268977ba45c97f80b3f1b57"><code>33d86ef</code></a> Merge <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/2904">#2904</a></li> <li><a href="https://github.com/clap-rs/clap/commit/585e9958110251f33a47a58d96ab94eef5298a79"><code>585e995</code></a> Release 3.0.0-beta.5</li> <li><a href="https://github.com/clap-rs/clap/commit/e63760e461fdac8b23ac04cf8e58e9055bffa226"><code>e63760e</code></a> Allow possible_values to take string vector reference</li> <li><a href="https://github.com/clap-rs/clap/commit/d3b33953de1e312e9358e5bb7c72b9b6818efc07"><code>d3b3395</code></a> Merge <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/2902">#2902</a></li> <li><a href="https://github.com/clap-rs/clap/commit/16af4f230a3c6de0aa2a90244f5b3a726c097c91"><code>16af4f2</code></a> cosmetic: spec_vals on separate lines for long help</li> <li><a href="https://github.com/clap-rs/clap/commit/98532ebddca051c4fde9a55a3024a3d6e1a2a526"><code>98532eb</code></a> Merge <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/2903">#2903</a></li> <li><a href="https://github.com/clap-rs/clap/commit/33efcf166572d23f0b95766d64a7b43f5b69e218"><code>33efcf1</code></a> feat(generate): reduce dependencies of clap_generate (42 to 13)</li> <li><a href="https://github.com/clap-rs/clap/commit/1c2b09e57b1debf9a51eba07ec42e6e635d3a892"><code>1c2b09e</code></a> Merge <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/2890">#2890</a></li> <li><a href="https://github.com/clap-rs/clap/commit/b9cc58599730702e1604e28c03f6c2b0dd4c8ca5"><code>b9cc585</code></a> feat: Expose clap-style errors to users</li> <li><a href="https://github.com/clap-rs/clap/commit/d78d5a3744001181ba7c54327faba380e9861539"><code>d78d5a3</code></a> Merge <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/2899">#2899</a></li> <li>Additional commits viewable in <a href="https://github.com/clap-rs/clap/compare/v3.0.0-beta.4...v3.0.0-beta.5">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=clap&package-manager=cargo&previous-version=3.0.0-beta.4&new-version=3.0.0-beta.5)](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 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> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
adam added the pull-request label 2026-01-05 14:52:45 +01:00
adam closed this issue 2026-01-05 14:52:45 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/komorebi#727