fix(deps): update all dependencies #101

Open
kjuulh wants to merge 1 commits from renovate/all into main
Owner

This PR contains the following updates:

Package Type Update Change
clap dependencies minor 4.5.31 -> 4.6.0
console dependencies minor 0.15.8 -> 0.16.0

Release Notes

clap-rs/clap (clap)

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
console-rs/console (console)

v0.16.3

Compare Source

What's Changed

v0.16.2

Compare Source

What's Changed

v0.16.1

Compare Source

What's Changed

v0.16.0

Compare Source

What's Changed

The 0.15.12 release was yanked after it turned out to be semver-incompatible with existing usage by several of the most popular dependent crates, because it introduced a std feature -- and those crates used default-features = false but relied on the std-guarded features.

The 0.16.0 API should be semver-compatible with the 0.15.x API except for the need for the std feature.

Refer to the 0.15.12 release notes for more information.

v0.15.12

Compare Source

What's Changed


Configuration

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

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


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

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [clap](https://github.com/clap-rs/clap) | dependencies | minor | `4.5.31` -> `4.6.0` | | [console](https://github.com/console-rs/console) | dependencies | minor | `0.15.8` -> `0.16.0` | --- ### Release Notes <details> <summary>clap-rs/clap (clap)</summary> ### [`v4.6.0`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#460---2026-03-12) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.61...v4.6.0) ##### Compatibility - Update MSRV to 1.85 ### [`v4.5.61`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4561---2026-03-12) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.60...v4.5.61) ##### Internal - Update dependencies ### [`v4.5.60`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4560---2026-02-19) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.59...v4.5.60) ##### Fixes - *(help)* Quote empty default values, possible values ### [`v4.5.59`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4559---2026-02-16) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.58...v4.5.59) ##### Fixes - `Command::ignore_errors` no longer masks help/version on subcommands ### [`v4.5.58`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4558---2026-02-11) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.57...v4.5.58) ### [`v4.5.57`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4557---2026-02-03) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.56...v4.5.57) ##### Fixes - Regression from 4.5.55 where having an argument with `.value_terminator("--")` caused problems with an argument with `.last(true)` ### [`v4.5.56`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4556---2026-01-29) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.55...v4.5.56) ##### Fixes - On conflict error, don't show conflicting arguments in the usage ### [`v4.5.55`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4555---2026-01-27) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.54...v4.5.55) ##### 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`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4554---2026-01-02) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.53...v4.5.54) ##### Fixes - *(help)* Move `[default]` to its own paragraph when `PossibleValue::help` is present in `--help` ### [`v4.5.53`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4553---2025-11-19) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.52...v4.5.53) ##### Features - Add `default_values_if`, `default_values_ifs` ### [`v4.5.52`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4552---2025-11-17) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.51...v4.5.52) ##### Fixes - Don't panic when `args_conflicts_with_subcommands` conflicts with an `ArgGroup` ### [`v4.5.51`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4551---2025-10-29) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.50...v4.5.51) ##### 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`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4550---2025-10-20) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.49...v4.5.50) ##### Features - Accept `Cow` where `String` and `&str` are accepted ### [`v4.5.49`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4549---2025-10-13) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.48...v4.5.49) ##### Fixes - *(help)* Correctly wrap when ANSI escape codes are present ### [`v4.5.48`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4548---2025-09-19) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.47...v4.5.48) ##### Documentation - Add a new CLI Concepts document as another way of framing clap - Expand the `typed_derive` cookbook entry ### [`v4.5.47`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4547---2025-09-02) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.46...v4.5.47) ##### 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`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4546---2025-08-26) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.45...v4.5.46) ##### Features - Expose `StyledStr::push_str` ### [`v4.5.45`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4545---2025-08-12) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.44...v4.5.45) ##### Fixes - *(unstable-v5)* `ValueEnum` variants now use the full doc comment, not summary, for `PossibleValue::help` ### [`v4.5.44`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4544---2025-08-11) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.43...v4.5.44) ##### Features - Add `Command::mut_subcommands` ### [`v4.5.43`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4543---2025-08-06) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.42...v4.5.43) ##### Fixes - *(help)* In long help, list Possible Values before defaults, rather than after, for a more consistent look ### [`v4.5.42`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4542---2025-07-30) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.41...v4.5.42) ##### Fixes - Include subcommand visible long aliases in `--help` ### [`v4.5.41`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4541---2025-07-09) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.40...v4.5.41) ##### Features - Add `Styles::context` and `Styles::context_value` to customize the styling of `[default: value]` like notes in the `--help` ### [`v4.5.40`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4540---2025-06-09) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.39...v4.5.40) ##### Features - Support quoted ids in `arg!()` macro (e.g. `arg!("check-config": ...)`) ### [`v4.5.39`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4539---2025-05-27) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.38...v4.5.39) ##### Fixes - *(help)* Show short flag aliases before long - *(help)* Merge the short and long flag alias lists ### [`v4.5.38`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4538---2025-05-11) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.37...v4.5.38) ##### Fixes - *(help)* When showing aliases, include leading `--` or `-` ### [`v4.5.37`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4537---2025-04-18) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.36...v4.5.37) ##### Features - Added `ArgMatches::try_clear_id()` ### [`v4.5.36`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4536---2025-04-11) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.35...v4.5.36) ##### Fixes - *(help)* Revert 4.5.35's "Don't leave space for shorts if there are none" for now ### [`v4.5.35`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4535---2025-04-01) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.34...v4.5.35) ##### 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`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4534---2025-03-27) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.33...v4.5.34) ##### Fixes - *(help)* Don't add extra blank lines with `flatten_help(true)` and subcommands without arguments ### [`v4.5.33`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4533---2025-03-26) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.32...v4.5.33) ##### Fixes - *(error)* When showing the usage of a suggestion for an unknown argument, don't show the group ### [`v4.5.32`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#4532---2025-03-10) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.31...v4.5.32) ##### Features - Add `Error::remove` ##### Documentation - *(cookbook)* Switch from `humantime` to `jiff` - *(tutorial)* Better cover required vs optional ##### Internal - Update `pulldown-cmark` </details> <details> <summary>console-rs/console (console)</summary> ### [`v0.16.3`](https://github.com/console-rs/console/releases/tag/0.16.3) [Compare Source](https://github.com/console-rs/console/compare/0.16.2...0.16.3) #### What's Changed - Use `std::sync::OnceLock` instead of `once_cell` by [@&#8203;cuviper](https://github.com/cuviper) in https://github.com/console-rs/console/pull/281 - Bump version to 0.16.3 by [@&#8203;cuviper](https://github.com/cuviper) in https://github.com/console-rs/console/pull/282 ### [`v0.16.2`](https://github.com/console-rs/console/releases/tag/0.16.2) [Compare Source](https://github.com/console-rs/console/compare/0.16.1...0.16.2) #### What's Changed - Implement basic support for true colors by [@&#8203;lord-haffi](https://github.com/lord-haffi) in https://github.com/console-rs/console/pull/271 - docs: add note about clicolors by [@&#8203;philbucher](https://github.com/philbucher) in https://github.com/console-rs/console/pull/274 - chore: minor improvement for docs by [@&#8203;spuradage](https://github.com/spuradage) in https://github.com/console-rs/console/pull/276 - Exclude development scripts from published package by [@&#8203;weiznich](https://github.com/weiznich) in https://github.com/console-rs/console/pull/278 ### [`v0.16.1`](https://github.com/console-rs/console/releases/tag/0.16.1) [Compare Source](https://github.com/console-rs/console/compare/0.16.0...0.16.1) #### What's Changed - Add WithoutAnsi struct that implements Display by [@&#8203;ChocolateLoverRaj](https://github.com/ChocolateLoverRaj) in https://github.com/console-rs/console/pull/258 - Tweak style for new WithAnsi code by [@&#8203;djc](https://github.com/djc) in https://github.com/console-rs/console/pull/266 - Fix QNX 7.1 patch for libc::cfmakeraw by [@&#8203;rafaeling](https://github.com/rafaeling) in https://github.com/console-rs/console/pull/267 - Upgrade windows-sys to 0.61 by [@&#8203;djc](https://github.com/djc) in https://github.com/console-rs/console/pull/272 ### [`v0.16.0`](https://github.com/console-rs/console/releases/tag/0.16.0) [Compare Source](https://github.com/console-rs/console/compare/0.15.12...0.16.0) #### What's Changed The 0.15.12 release was yanked after it [turned out to be semver-incompatible](https://github.com/console-rs/console/issues/264) with existing usage by several of the most popular dependent crates, because it introduced a `std` feature -- and those crates used `default-features = false` but relied on the `std`-guarded features. The 0.16.0 API should be semver-compatible with the 0.15.x API except for the need for the `std` feature. - Prepare 0.16.0 by [@&#8203;djc](https://github.com/djc) in https://github.com/console-rs/console/pull/265 Refer to the [0.15.12 release notes](https://github.com/console-rs/console/releases/0.15.12) for more information. ### [`v0.15.12`](https://github.com/console-rs/console/releases/tag/0.15.12) [Compare Source](https://github.com/console-rs/console/compare/0.15.11...0.15.12) #### What's Changed - Use EnumSet instead of a full-blown btreemap for the attributes by [@&#8203;jwiesler](https://github.com/jwiesler) in https://github.com/console-rs/console/pull/244 - Tweak Attributes bit set API by [@&#8203;djc](https://github.com/djc) in https://github.com/console-rs/console/pull/245 - Implement measure_text_width with no allocation by [@&#8203;remi-dupre](https://github.com/remi-dupre) in https://github.com/console-rs/console/pull/246 - fix(utils): surprising behavior in truncate_str when tail is larger than width by [@&#8203;remi-dupre](https://github.com/remi-dupre) in https://github.com/console-rs/console/pull/250 - fix spelling mistake by [@&#8203;Axlefublr](https://github.com/Axlefublr) in https://github.com/console-rs/console/pull/253 - feat(part): add NO_COLOR env support for windows terminal by [@&#8203;L-Chao](https://github.com/L-Chao) in https://github.com/console-rs/console/pull/254 - Update windows-sys requirement from 0.59 to 0.60 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/console-rs/console/pull/259 - Add features to work with no_std, and with alloc in no_std by [@&#8203;ChocolateLoverRaj](https://github.com/ChocolateLoverRaj) in https://github.com/console-rs/console/pull/256 - Fix CI badge and license URL by [@&#8203;atouchet](https://github.com/atouchet) in https://github.com/console-rs/console/pull/261 - Bump version to 0.15.12 by [@&#8203;felstead](https://github.com/felstead) in https://github.com/console-rs/console/pull/262 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMTUuMiIsInVwZGF0ZWRJblZlciI6IjM5LjI2NC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
kjuulh added 1 commit 2025-03-25 23:56:34 +01:00
kjuulh changed title from fix(deps): update rust crate clap to v4.5.32 to fix(deps): update rust crate clap to v4.5.33 2025-03-26 21:05:03 +01:00
kjuulh force-pushed renovate/all from 13220e3dae to 2c4c472a45 2025-03-26 21:05:03 +01:00 Compare
kjuulh changed title from fix(deps): update rust crate clap to v4.5.33 to fix(deps): update rust crate clap to v4.5.34 2025-03-27 03:05:13 +01:00
kjuulh force-pushed renovate/all from 2c4c472a45 to e48e3ed9ff 2025-03-27 03:05:13 +01:00 Compare
kjuulh changed title from fix(deps): update rust crate clap to v4.5.34 to fix(deps): update rust crate clap to v4.5.35 2025-04-02 02:28:55 +02:00
kjuulh force-pushed renovate/all from e48e3ed9ff to a600a6be79 2025-04-02 02:28:55 +02:00 Compare
kjuulh changed title from fix(deps): update rust crate clap to v4.5.35 to fix(deps): update rust crate clap to v4.5.36 2025-04-12 02:29:17 +02:00
kjuulh force-pushed renovate/all from a600a6be79 to aa75a413a0 2025-04-12 02:29:17 +02:00 Compare
kjuulh changed title from fix(deps): update rust crate clap to v4.5.36 to fix(deps): update rust crate clap to v4.5.37 2025-04-19 02:26:59 +02:00
kjuulh force-pushed renovate/all from aa75a413a0 to 6c19fdb261 2025-04-19 02:26:59 +02:00 Compare
kjuulh changed title from fix(deps): update rust crate clap to v4.5.37 to fix(deps): update rust crate clap to v4.5.38 2025-05-11 05:26:46 +02:00
kjuulh force-pushed renovate/all from 6c19fdb261 to 41e8f7a144 2025-05-11 05:26:48 +02:00 Compare
kjuulh changed title from fix(deps): update rust crate clap to v4.5.38 to fix(deps): update rust crate clap to v4.5.39 2025-05-28 02:29:35 +02:00
kjuulh force-pushed renovate/all from 41e8f7a144 to 276e38714e 2025-05-28 02:29:35 +02:00 Compare
kjuulh changed title from fix(deps): update rust crate clap to v4.5.39 to fix(deps): update rust crate clap to v4.5.40 2025-06-10 02:31:10 +02:00
kjuulh force-pushed renovate/all from 276e38714e to e8d1fe36ca 2025-06-10 02:31:12 +02:00 Compare
kjuulh changed title from fix(deps): update rust crate clap to v4.5.40 to fix(deps): update all dependencies 2025-06-28 02:27:30 +02:00
kjuulh force-pushed renovate/all from e8d1fe36ca to 00e0beec63 2025-06-28 02:27:30 +02:00 Compare
kjuulh force-pushed renovate/all from 00e0beec63 to fefba801ec 2025-07-10 02:27:56 +02:00 Compare
kjuulh force-pushed renovate/all from fefba801ec to 37eabe2823 2025-11-13 03:00:44 +01:00 Compare
kjuulh force-pushed renovate/all from 37eabe2823 to 63911dc3a6 2025-11-13 05:24:00 +01:00 Compare
kjuulh force-pushed renovate/all from 63911dc3a6 to 9c5de0714e 2025-11-18 02:32:38 +01:00 Compare
kjuulh force-pushed renovate/all from 9c5de0714e to c0b648b229 2025-11-20 02:32:00 +01:00 Compare
kjuulh force-pushed renovate/all from c0b648b229 to ea578714f5 2025-11-29 05:32:23 +01:00 Compare
kjuulh force-pushed renovate/all from ea578714f5 to 28e501368d 2025-12-19 05:34:42 +01:00 Compare
kjuulh force-pushed renovate/all from 28e501368d to 38b21cf52b 2026-01-03 02:31:55 +01:00 Compare
kjuulh force-pushed renovate/all from 38b21cf52b to 125f86c3b7 2026-01-28 02:34:36 +01:00 Compare
kjuulh force-pushed renovate/all from 125f86c3b7 to 48631f0133 2026-01-30 02:32:29 +01:00 Compare
kjuulh force-pushed renovate/all from 48631f0133 to 96b17a2876 2026-02-04 02:33:31 +01:00 Compare
kjuulh force-pushed renovate/all from 96b17a2876 to 2845f23e09 2026-02-12 02:34:36 +01:00 Compare
kjuulh force-pushed renovate/all from 2845f23e09 to caea13a6e9 2026-02-17 02:33:20 +01:00 Compare
kjuulh force-pushed renovate/all from caea13a6e9 to 7792a13e91 2026-02-20 02:33:47 +01:00 Compare
kjuulh force-pushed renovate/all from 7792a13e91 to e6a4c130ca 2026-03-13 02:34:37 +01:00 Compare
kjuulh force-pushed renovate/all from e6a4c130ca to 160606ebd5 2026-03-14 05:34:14 +01:00 Compare
This pull request can be merged automatically.
You are not authorized to merge this pull request.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/all:renovate/all
git checkout renovate/all
Sign in to join this conversation.
No Reviewers
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: kjuulh/gitignore#101