Skip to content

chore(deps): update rust crate clap to v4.5.58#6

Open
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/clap-4.x-lockfile
Open

chore(deps): update rust crate clap to v4.5.58#6
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/clap-4.x-lockfile

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented May 5, 2024

This PR contains the following updates:

Package Type Update Change
clap dependencies minor 4.4.64.5.58

Release Notes

clap-rs/clap (clap)

v4.5.58

Compare Source

v4.5.57

Compare Source

Fixes
  • Regression from 4.5.55 where having an argument with .value_terminator("--") caused problems with an argument with .last(true)

v4.5.56

Compare Source

Fixes
  • On conflict error, don't show conflicting arguments in the usage

v4.5.55

Compare Source

Fixes
  • Fix inconsistency in precedence between positionals with a value_terminator("--") and escapes (--) where ./foo -- bar means the first arg is empty, rather than escaping future args

v4.5.54

Compare Source

Fixes
  • (help) Move [default] to its own paragraph when PossibleValue::help is present in --help

v4.5.53

Compare Source

Features
  • Add default_values_if, default_values_ifs

v4.5.52

Compare Source

Fixes
  • Don't panic when args_conflicts_with_subcommands conflicts with an ArgGroup

v4.5.51

Compare Source

Fixes
  • (help) Correctly calculate padding for short flags that take a value
  • (help) Don't panic on short flags using ArgAction::Count

v4.5.50

Compare Source

Features
  • Accept Cow where String and &str are accepted

v4.5.49

Compare Source

Fixes
  • (help) Correctly wrap when ANSI escape codes are present

v4.5.48

Compare Source

Documentation
  • Add a new CLI Concepts document as another way of framing clap
  • Expand the typed_derive cookbook entry

v4.5.47

Compare Source

Features
  • Added impl FromArgMatches for ()
  • Added impl Args for ()
  • Added impl Subcommand for ()
  • Added impl FromArgMatches for Infallible
  • Added impl Subcommand for Infallible
Fixes
  • (derive) Update runtime error text to match clap

v4.5.46

Compare Source

Features
  • Expose StyledStr::push_str

v4.5.45

Compare Source

Fixes
  • (unstable-v5) ValueEnum variants now use the full doc comment, not summary, for PossibleValue::help

v4.5.44

Compare Source

Features
  • Add Command::mut_subcommands

v4.5.43

Compare Source

Fixes
  • (help) In long help, list Possible Values before defaults, rather than after, for a more consistent look

v4.5.42

Compare Source

Fixes
  • Include subcommand visible long aliases in --help

v4.5.41

Compare Source

Features
  • Add Styles::context and Styles::context_value to customize the styling of [default: value] like notes in the --help

v4.5.40

Compare Source

Features
  • Support quoted ids in arg!() macro (e.g. arg!("check-config": ...))

v4.5.39

Compare Source

Fixes
  • (help) Show short flag aliases before long
  • (help) Merge the short and long flag alias lists

v4.5.38

Compare Source

Fixes
  • (help) When showing aliases, include leading -- or -

v4.5.37

Compare Source

Features
  • Added ArgMatches::try_clear_id()

v4.5.36

Compare Source

Fixes
  • (help) Revert 4.5.35's "Don't leave space for shorts if there are none" for now

v4.5.35

Compare Source

Fixes
  • (help) Align positionals and flags when put in the same help_heading
  • (help) Don't leave space for shorts if there are none

v4.5.34

Compare Source

Fixes
  • (help) Don't add extra blank lines with flatten_help(true) and subcommands without arguments

v4.5.33

Compare Source

Fixes
  • (error) When showing the usage of a suggestion for an unknown argument, don't show the group

v4.5.32

Compare Source

Features
  • Add Error::remove
Documentation
  • (cookbook) Switch from humantime to jiff
  • (tutorial) Better cover required vs optional
Internal
  • Update pulldown-cmark

v4.5.31

Compare Source

Features
  • Add ValueParserFactory for Saturating<T>

v4.5.30

Compare Source

Fixes
  • (assert) Allow num_args(0..=1) to be used with SetTrue
  • (assert) Clean up rendering of takes_values assertions

v4.5.29

Compare Source

Fixes
  • Change ArgMatches::args_present so not-present flags are considered not-present (matching the documentation)

v4.5.28

Compare Source

Features
  • (derive) Unstable support for full markdown syntax for doc comments, enabled with unstable-markdown

v4.5.27

Compare Source

Documentation
  • Iterate on tutorials and reference based on feedback

v4.5.26

Compare Source

Fixes
  • (error) Reduce binary size with the suggestions feature

v4.5.25

Compare Source

Fixes
  • (help) Reduce binary size

v4.5.24

Compare Source

Fixes
  • (parser) Correctly handle defaults with ignore_errors(true) and when a suggestion is provided for an unknown argument

v4.5.23

Compare Source

Fixes
  • (parser) When check allow_negative_numbers, allow E again

v4.5.22

Compare Source

Fixes
  • (assert) Catch bugs with arguments requiring themself

v4.5.21

Compare Source

Fixes
  • (parser) Ensure defaults are filled in on error with ignore_errors(true)

v4.5.20

Compare Source

Features
  • (unstable) Add CommandExt

v4.5.19

Compare Source

Internal
  • Update dependencies

v4.5.18

Compare Source

Features
  • (builder) Expose Arg::get_display_order and Command::get_display_order

v4.5.17

Compare Source

Fixes
  • (help) Style required argument groups
  • (derive) Improve error messages when unsupported fields are used

v4.5.16

Compare Source

Fixes
  • (derive) Improve error messages when derive feature is missing

v4.5.15

Compare Source

Compatiblity
  • (unstable-ext) Arg::remove changed return types
Fixes
  • (unstable-ext) Make Arg::remove return the removed item

v4.5.14

Compare Source

Features
  • (unstable-ext) Added Arg::add for attaching arbitrary state, like completion hints, to Arg without Arg knowing about it

v4.5.13

Compare Source

Fixes
  • (derive) Improve error message when #[flatten]ing an optional #[group(skip)]
  • (help) Properly wrap long subcommand descriptions in help

v4.5.12

Compare Source

v4.5.11

Compare Source

v4.5.10

Compare Source

v4.5.9

Compare Source

Fixes
  • (error) When defining a custom help flag, be sure to suggest it like we do the built-in one

v4.5.8

Compare Source

Fixes
  • Reduce extra flushes

v4.5.7

Compare Source

Fixes
  • Clean up error message when too few arguments for num_args

v4.5.6

Compare Source

v4.5.5

Compare Source

Fixes
  • (help) Move [default] to its own paragraph when PossibleValue::help is present in --help

v4.5.4

Compare Source

Fixes
  • (help) Correctly wrap when ANSI escape codes are present

v4.5.3

Compare Source

Fixes
  • (help) Show short flag aliases before long
  • (help) Merge the short and long flag alias lists

v4.5.2

Compare Source

Fixes
  • Change ArgMatches::args_present so not-present flags are considered not-present (matching the documentation)

v4.5.1

Compare Source

Internal
  • Update dependencies

v4.5.0

Compare Source

Compatibility
  • Update MSRV to 1.74

v4.4.18

Compare Source

Fixes
  • (error) When lacking usage feature, ensure the list of required arguments is unique

v4.4.17

Compare Source

Fixes
  • Fix panic! when mixing args_conflicts_with_subcommands with ArgGroup (which is implicit with derive) introduced in 4.4.15

v4.4.16

Compare Source

Fixes
  • Ensure invalid escape sequences in user-defined strings are correctly stripped when terminal doesn't support color

v4.4.15

Compare Source

Fixes
  • Improve error for args_conflicts_with_subcommands
  • Ensure we error for args_conflicts_with_subcommands when using subcommand short and long flags

v4.4.14

Compare Source

Documentation
  • Fix find cookbook entry to allow repeats of flags/options
Features
  • Allow num_args(0) on options which allows making them emulate being a flag for position-tracking flags

v4.4.13

Compare Source

Documentation
  • Fix link to structopt migration guide

v4.4.12

Compare Source

Performance
  • Only ask TypedValueParser for possible values if needed

v4.4.11

Compare Source

Features
  • Add Command::mut_group

v4.4.10

Compare Source

Documentation
  • Link out to changelog
  • Cross link derive's attribute reference to derive tutorial

v4.4.9

Compare Source

Fixes
  • (help) Show correct Command::about under flattened headings
  • (help) Respect hide when flattening subcommands

v4.4.8

Compare Source

Features
  • Add Command::flatten_help to allow git stash -h like help for subcommands

v4.4.7

Compare Source

Performance
  • Reduced code size

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/clap-4.x-lockfile branch from 22c9224 to 497eab3 Compare June 6, 2024 23:03
@renovate renovate bot changed the title fix(deps): update rust crate clap to v4.5.4 fix(deps): update rust crate clap to v4.5.6 Jun 6, 2024
@renovate renovate bot force-pushed the renovate/clap-4.x-lockfile branch from 497eab3 to 1595375 Compare June 10, 2024 17:00
@renovate renovate bot changed the title fix(deps): update rust crate clap to v4.5.6 fix(deps): update rust crate clap to v4.5.7 Jun 10, 2024
@renovate renovate bot force-pushed the renovate/clap-4.x-lockfile branch from 1595375 to 0ec9b2d Compare June 28, 2024 18:34
@renovate renovate bot changed the title fix(deps): update rust crate clap to v4.5.7 fix(deps): update rust crate clap to v4.5.8 Jun 28, 2024
@renovate renovate bot force-pushed the renovate/clap-4.x-lockfile branch from 0ec9b2d to c9d061c Compare July 9, 2024 20:40
@renovate renovate bot changed the title fix(deps): update rust crate clap to v4.5.8 fix(deps): update rust crate clap to v4.5.9 Jul 9, 2024
@renovate renovate bot changed the title fix(deps): update rust crate clap to v4.5.9 fix(deps): update rust crate clap to v4.5.10 Jul 23, 2024
@renovate renovate bot force-pushed the renovate/clap-4.x-lockfile branch 2 times, most recently from a5feb42 to 7fd440a Compare July 25, 2024 16:54
@renovate renovate bot changed the title fix(deps): update rust crate clap to v4.5.10 fix(deps): update rust crate clap to v4.5.11 Jul 25, 2024
@renovate renovate bot force-pushed the renovate/clap-4.x-lockfile branch from 7fd440a to a52c7fe Compare July 31, 2024 20:09
@renovate renovate bot changed the title fix(deps): update rust crate clap to v4.5.11 fix(deps): update rust crate clap to v4.5.12 Jul 31, 2024
@renovate renovate bot force-pushed the renovate/clap-4.x-lockfile branch from a52c7fe to 99d7a0f Compare July 31, 2024 22:38
@renovate renovate bot changed the title fix(deps): update rust crate clap to v4.5.12 fix(deps): update rust crate clap to v4.5.13 Jul 31, 2024
@renovate renovate bot force-pushed the renovate/clap-4.x-lockfile branch from 99d7a0f to 36607a3 Compare August 8, 2024 17:56
@renovate renovate bot changed the title fix(deps): update rust crate clap to v4.5.13 fix(deps): update rust crate clap to v4.5.14 Aug 8, 2024
@renovate renovate bot force-pushed the renovate/clap-4.x-lockfile branch from 36607a3 to 8f3913b Compare August 10, 2024 01:14
@renovate renovate bot changed the title fix(deps): update rust crate clap to v4.5.14 fix(deps): update rust crate clap to v4.5.15 Aug 10, 2024
@renovate renovate bot force-pushed the renovate/clap-4.x-lockfile branch from 8f3913b to 84f65be Compare August 15, 2024 22:48
@renovate renovate bot changed the title fix(deps): update rust crate clap to v4.5.15 fix(deps): update rust crate clap to v4.5.16 Aug 15, 2024
@renovate renovate bot changed the title fix(deps): update rust crate clap to v4.5.16 fix(deps): update rust crate clap to v4.5.17 Sep 4, 2024
@renovate renovate bot force-pushed the renovate/clap-4.x-lockfile branch 2 times, most recently from 16ea0f2 to 00a98d0 Compare September 20, 2024 20:05
@renovate renovate bot changed the title fix(deps): update rust crate clap to v4.5.17 fix(deps): update rust crate clap to v4.5.18 Sep 20, 2024
@renovate renovate bot changed the title fix(deps): update rust crate clap to v4.5.18 fix(deps): update rust crate clap to v4.5.19 Oct 1, 2024
@renovate renovate bot force-pushed the renovate/clap-4.x-lockfile branch from 00a98d0 to c496cb1 Compare October 1, 2024 18:44
@renovate renovate bot changed the title fix(deps): update rust crate clap to v4.5.19 fix(deps): update rust crate clap to v4.5.20 Oct 8, 2024
@renovate renovate bot force-pushed the renovate/clap-4.x-lockfile branch from c496cb1 to 71e8bf1 Compare October 8, 2024 16:50
@renovate renovate bot changed the title fix(deps): update rust crate clap to v4.5.44 fix(deps): update rust crate clap to v4.5.45 Aug 12, 2025
@renovate renovate bot changed the title fix(deps): update rust crate clap to v4.5.45 fix(deps): update rust crate clap to v4.5.46 Aug 26, 2025
@renovate renovate bot force-pushed the renovate/clap-4.x-lockfile branch from 7e65455 to 91232bb Compare August 26, 2025 16:43
@renovate renovate bot force-pushed the renovate/clap-4.x-lockfile branch from 91232bb to 33b6824 Compare September 6, 2025 23:01
@renovate renovate bot changed the title fix(deps): update rust crate clap to v4.5.46 fix(deps): update rust crate clap to v4.5.47 Sep 6, 2025
@renovate renovate bot force-pushed the renovate/clap-4.x-lockfile branch from 33b6824 to 0ce757c Compare September 20, 2025 01:13
@renovate renovate bot changed the title fix(deps): update rust crate clap to v4.5.47 fix(deps): update rust crate clap to v4.5.48 Sep 20, 2025
@renovate renovate bot changed the title fix(deps): update rust crate clap to v4.5.48 chore(deps): update rust crate clap to v4.5.48 Sep 25, 2025
@renovate renovate bot force-pushed the renovate/clap-4.x-lockfile branch from 0ce757c to e1f2816 Compare October 13, 2025 18:51
@renovate renovate bot changed the title chore(deps): update rust crate clap to v4.5.48 chore(deps): update rust crate clap to v4.5.49 Oct 13, 2025
@renovate renovate bot changed the title chore(deps): update rust crate clap to v4.5.49 chore(deps): update rust crate clap to v4.5.50 Oct 20, 2025
@renovate renovate bot force-pushed the renovate/clap-4.x-lockfile branch from e1f2816 to 28ad300 Compare October 20, 2025 18:44
@renovate renovate bot force-pushed the renovate/clap-4.x-lockfile branch from 28ad300 to 70a7b00 Compare October 29, 2025 18:46
@renovate renovate bot changed the title chore(deps): update rust crate clap to v4.5.50 chore(deps): update rust crate clap to v4.5.51 Oct 29, 2025
@renovate renovate bot force-pushed the renovate/clap-4.x-lockfile branch from 70a7b00 to ca60757 Compare November 18, 2025 02:13
@renovate renovate bot changed the title chore(deps): update rust crate clap to v4.5.51 chore(deps): update rust crate clap to v4.5.52 Nov 18, 2025
@renovate renovate bot force-pushed the renovate/clap-4.x-lockfile branch from ca60757 to 8745e0c Compare November 20, 2025 01:47
@renovate renovate bot changed the title chore(deps): update rust crate clap to v4.5.52 chore(deps): update rust crate clap to v4.5.53 Nov 20, 2025
@renovate renovate bot force-pushed the renovate/clap-4.x-lockfile branch 2 times, most recently from 997d663 to ed7521b Compare January 2, 2026 22:10
@renovate renovate bot changed the title chore(deps): update rust crate clap to v4.5.53 chore(deps): update rust crate clap to v4.5.54 Jan 2, 2026
@renovate renovate bot force-pushed the renovate/clap-4.x-lockfile branch from ed7521b to 60d44cf Compare January 27, 2026 22:04
@renovate renovate bot changed the title chore(deps): update rust crate clap to v4.5.54 chore(deps): update rust crate clap to v4.5.55 Jan 27, 2026
@renovate renovate bot force-pushed the renovate/clap-4.x-lockfile branch from 60d44cf to 91913d8 Compare January 29, 2026 20:58
@renovate renovate bot changed the title chore(deps): update rust crate clap to v4.5.55 chore(deps): update rust crate clap to v4.5.56 Jan 29, 2026
@renovate renovate bot force-pushed the renovate/clap-4.x-lockfile branch from 91913d8 to d78d603 Compare February 3, 2026 17:16
@renovate renovate bot changed the title chore(deps): update rust crate clap to v4.5.56 chore(deps): update rust crate clap to v4.5.57 Feb 3, 2026
@renovate renovate bot force-pushed the renovate/clap-4.x-lockfile branch from d78d603 to 4a239f2 Compare February 11, 2026 18:14
@renovate renovate bot changed the title chore(deps): update rust crate clap to v4.5.57 chore(deps): update rust crate clap to v4.5.58 Feb 11, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants