Skip to content

Update Rust crate clap to v4.6.6 - #31

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

Update Rust crate clap to v4.6.6#31
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/clap-4.x-lockfile

Conversation

@renovate

@renovaterenovateBot commented Jun 6, 2024

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

PackageTypeUpdateChange
clapdependenciesminor4.5.44.6.6

Release Notes

clap-rs/clap (clap)

v4.6.6

Compare Source

Features
  • Add Command::get_overridden_usage

v4.6.5

Compare Source

v4.6.4

Compare Source

Internal
  • Update to syn v3

v4.6.3

Compare Source

Fixes
  • (derive) Allow "literal".function() as attribute values

v4.6.2

Compare Source

Fixes
  • (help) Say alias when there is only one

v4.6.1

Compare Source

Fixes
  • (derive) Ensure rebuilds happen when an read env variable is changed

v4.6.0

Compare Source

Compatibility
  • Update MSRV to 1.85

v4.5.61

Compare Source

Internal
  • Update dependencies

v4.5.60

Compare Source

Fixes
  • (help) Quote empty default values, possible values

v4.5.59

Compare Source

Fixes
  • Command::ignore_errors no longer masks help/version on subcommands

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

Configuration

📅 Schedule: (UTC)

  • 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 is behind base branch, 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.

@renovaterenovateBot changed the title fix(deps): update rust crate clap to v4.5.6fix(deps): update rust crate clap to v4.5.7Jun 10, 2024
@renovate
renovateBotforce-pushed the renovate/clap-4.x-lockfile branch 2 times, most recently from c50adce to e289339CompareJune 16, 2024 11:55
@renovate
renovateBotforce-pushed the renovate/clap-4.x-lockfile branch from e289339 to 50a151aCompareJune 28, 2024 17:07
@renovaterenovateBot changed the title fix(deps): update rust crate clap to v4.5.7fix(deps): update rust crate clap to v4.5.8Jun 28, 2024
@renovate
renovateBotforce-pushed the renovate/clap-4.x-lockfile branch from 50a151a to 3b31bd4CompareJuly 4, 2024 22:20
@renovaterenovateBot changed the title fix(deps): update rust crate clap to v4.5.8fix(deps): update rust crate clap to v4.5.9Jul 9, 2024
@renovate
renovateBotforce-pushed the renovate/clap-4.x-lockfile branch from 3b31bd4 to 282db4eCompareJuly 9, 2024 05:02
@renovate
renovateBotforce-pushed the renovate/clap-4.x-lockfile branch from 282db4e to 1f88e5fCompareJuly 23, 2024 17:49
@renovaterenovateBot changed the title fix(deps): update rust crate clap to v4.5.9fix(deps): update rust crate clap to v4.5.10Jul 23, 2024
@renovaterenovateBot changed the title fix(deps): update rust crate clap to v4.5.10fix(deps): update rust crate clap to v4.5.11Jul 25, 2024
@renovate
renovateBotforce-pushed the renovate/clap-4.x-lockfile branch 2 times, most recently from 3e10a50 to 32d4061CompareJuly 31, 2024 19:21
@renovaterenovateBot changed the title fix(deps): update rust crate clap to v4.5.11fix(deps): update rust crate clap to v4.5.12Jul 31, 2024
@renovaterenovateBot changed the title fix(deps): update rust crate clap to v4.5.12fix(deps): update rust crate clap to v4.5.13Aug 1, 2024
@renovate
renovateBotforce-pushed the renovate/clap-4.x-lockfile branch from 32d4061 to 4404594CompareAugust 1, 2024 00:10
@renovate
renovateBotforce-pushed the renovate/clap-4.x-lockfile branch from 4404594 to 8e6fd57CompareAugust 8, 2024 20:25
@renovaterenovateBot changed the title fix(deps): update rust crate clap to v4.5.13fix(deps): update rust crate clap to v4.5.14Aug 8, 2024
@renovaterenovateBot changed the title fix(deps): update rust crate clap to v4.5.14fix(deps): update rust crate clap to v4.5.15Aug 10, 2024
@renovate
renovateBotforce-pushed the renovate/clap-4.x-lockfile branch 2 times, most recently from eceb7d3 to 5838356CompareAugust 16, 2024 02:10
@renovaterenovateBot changed the title fix(deps): update rust crate clap to v4.5.15fix(deps): update rust crate clap to v4.5.16Aug 16, 2024
@renovaterenovateBot changed the title fix(deps): update rust crate clap to v4.5.16fix(deps): update rust crate clap to v4.5.17Sep 4, 2024
@renovate
renovateBotforce-pushed the renovate/clap-4.x-lockfile branch 2 times, most recently from 1de9dbe to e4042deCompareSeptember 20, 2024 23:13
@renovaterenovateBot changed the title fix(deps): update rust crate clap to v4.5.17fix(deps): update rust crate clap to v4.5.18Sep 20, 2024
@renovate
renovateBotforce-pushed the renovate/clap-4.x-lockfile branch from e4042de to 2254336CompareOctober 1, 2024 18:31
@renovaterenovateBot changed the title fix(deps): update rust crate clap to v4.5.18fix(deps): update rust crate clap to v4.5.19Oct 1, 2024
@renovaterenovateBot changed the title fix(deps): update rust crate clap to v4.5.19fix(deps): update rust crate clap to v4.5.20Oct 8, 2024
@renovate
renovateBotforce-pushed the renovate/clap-4.x-lockfile branch from 2254336 to c2ff79eCompareOctober 8, 2024 15:24
@renovate
renovateBotforce-pushed the renovate/clap-4.x-lockfile branch from 9b6ffb0 to 0fbaf2eCompareJanuary 9, 2025 17:51
@renovaterenovateBot changed the title Update Rust crate clap to v4.5.25Update Rust crate clap to v4.5.26Jan 9, 2025
@renovate
renovateBotforce-pushed the renovate/clap-4.x-lockfile branch from 0fbaf2e to d46b531CompareJanuary 9, 2025 22:34
@renovaterenovateBot changed the title Update Rust crate clap to v4.5.26Update Rust crate clap to v4.5.27Jan 21, 2025
@renovate
renovateBotforce-pushed the renovate/clap-4.x-lockfile branch from d46b531 to 42a499bCompareJanuary 21, 2025 10:33
@renovaterenovateBot changed the title Update Rust crate clap to v4.5.27Update Rust crate clap to v4.5.28Feb 4, 2025
@renovate
renovateBotforce-pushed the renovate/clap-4.x-lockfile branch from 42a499b to 591b142CompareFebruary 4, 2025 02:13
@renovaterenovateBot changed the title Update Rust crate clap to v4.5.28Update Rust crate clap to v4.5.29Feb 11, 2025
@renovate
renovateBotforce-pushed the renovate/clap-4.x-lockfile branch 2 times, most recently from a397d4f to 0c04f1eCompareFebruary 17, 2025 22:50
@renovaterenovateBot changed the title Update Rust crate clap to v4.5.29Update Rust crate clap to v4.5.30Feb 17, 2025
@renovaterenovateBot changed the title Update Rust crate clap to v4.5.30Update Rust crate clap to v4.5.31Feb 24, 2025
@renovate
renovateBotforce-pushed the renovate/clap-4.x-lockfile branch from 0c04f1e to 3dff140CompareFebruary 24, 2025 19:22
@renovate
renovateBotforce-pushed the renovate/clap-4.x-lockfile branch from 3dff140 to fd61e88CompareMarch 10, 2025 23:18
@renovaterenovateBot changed the title Update Rust crate clap to v4.5.31Update Rust crate clap to v4.5.32Mar 10, 2025
@renovate
renovateBotforce-pushed the renovate/clap-4.x-lockfile branch from fd61e88 to c27601dCompareMarch 26, 2025 22:42
@renovaterenovateBot changed the title Update Rust crate clap to v4.5.32Update Rust crate clap to v4.5.33Mar 26, 2025
@renovaterenovateBot changed the title Update Rust crate clap to v4.5.33Update Rust crate clap to v4.5.34Mar 27, 2025
@renovate
renovateBotforce-pushed the renovate/clap-4.x-lockfile branch 2 times, most recently from 44444f3 to b3e1d01CompareApril 1, 2025 19:43
@renovaterenovateBot changed the title Update Rust crate clap to v4.5.34Update Rust crate clap to v4.5.35Apr 1, 2025
@renovaterenovateBot changed the title Update Rust crate clap to v4.5.35Update Rust crate clap to v4.5.36Apr 11, 2025
@renovate
renovateBotforce-pushed the renovate/clap-4.x-lockfile branch from b3e1d01 to 575015aCompareApril 11, 2025 22:36
@renovate
renovateBotforce-pushed the renovate/clap-4.x-lockfile branch from 575015a to 63d9e91CompareApril 18, 2025 23:21
@renovaterenovateBot changed the title Update Rust crate clap to v4.5.36Update Rust crate clap to v4.5.37Apr 18, 2025
@renovate
renovateBotforce-pushed the renovate/clap-4.x-lockfile branch from 63d9e91 to 7a7e3bdCompareMay 11, 2025 02:06
@renovaterenovateBot changed the title Update Rust crate clap to v4.5.37Update Rust crate clap to v4.5.38May 11, 2025
@renovaterenovateBot changed the title Update Rust crate clap to v4.5.38Update Rust crate clap to v4.5.39May 27, 2025
@renovate
renovateBotforce-pushed the renovate/clap-4.x-lockfile branch from 7a7e3bd to 89ee0d9CompareMay 27, 2025 23:36
Sign up for freeto 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