Skip to content

chore(deps): bump clap from 4.5.58 to 4.5.59 in the patch-versions group#6635

Merged
akaladarshi merged 2 commits intomainfrom
dependabot/cargo/patch-versions-c0c67d7c1f
Feb 23, 2026
Merged

chore(deps): bump clap from 4.5.58 to 4.5.59 in the patch-versions group#6635
akaladarshi merged 2 commits intomainfrom
dependabot/cargo/patch-versions-c0c67d7c1f

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 23, 2026

Bumps the patch-versions group with 1 update: clap.

Updates clap from 4.5.58 to 4.5.59

Release notes

Sourced from clap's releases.

v4.5.59

[4.5.59] - 2026-02-16

Fixes

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

Sourced from clap's changelog.

[4.5.59] - 2026-02-16

Fixes

  • Command::ignore_errors no longer masks help/version on subcommands
Commits
  • 0bb3ad7 chore: Release
  • 5cb5ce3 docs: Update changelog
  • 245c8ba Merge pull request #6149 from epage/wrap
  • dd17a41 fix(help): Correctly calculate wrap points with ANSI escape codes
  • 2cc4e35 test(ui): Avoid override term width
  • 93e3559 refactor(help): Clarify that we're carrying over indentation
  • b1c46e6 refactor(help): Clarify var name
  • 03b9b38 test(help): Show styled wrapping behavior
  • c9a39a5 Merge pull request #6146 from clap-rs/renovate/actions-checkout-5.x
  • 58599fb chore(deps): Update actions/checkout action to v5
  • Additional commits viewable in compare view

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Summary by CodeRabbit

  • Chores
    • Consolidated internal dependencies for simplified dependency management.
    • Updated underlying library versions to latest compatible releases.

Bumps the patch-versions group with 1 update: [clap](https://github.com/clap-rs/clap).


Updates `clap` from 4.5.58 to 4.5.59
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@clap_complete-v4.5.58...clap_complete-v4.5.59)

---
updated-dependencies:
- dependency-name: clap
  dependency-version: 4.5.59
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-versions
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Feb 23, 2026
@dependabot dependabot bot requested a review from a team as a code owner February 23, 2026 02:03
@dependabot dependabot bot requested review from LesnyRumcajs and removed request for a team February 23, 2026 02:03
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Feb 23, 2026
@dependabot dependabot bot requested a review from akaladarshi February 23, 2026 02:03
@dependabot dependabot bot added the rust Pull requests that update Rust code label Feb 23, 2026
@coderabbitai
Copy link
Contributor

coderabbitai bot commented Feb 23, 2026

No actionable comments were generated in the recent review. 🎉


Walkthrough

This pull request consolidates Rust dependencies by merging strum and strum_macros into a single strum entry with version 0.28 and combined features. Additionally, the ra_ap_syntax dependency is updated from version 0.0.319 to 0.0.320, and corresponding import statements in src/networks/mod.rs are updated to reflect the consolidated dependency structure.

Changes

Cohort / File(s) Summary
Dependency Management
Cargo.toml
Consolidated strum (0.27) and strum_macros (0.27) into single strum dependency (0.28) with features ["derive", "strum_macros"]; bumped ra_ap_syntax from 0.0.319 to 0.0.320.
Import Consolidation
src/networks/mod.rs
Updated imports to reflect consolidated strum dependency, replacing separate strum_macros imports (Display, EnumIter) with unified strum imports and added IntoEnumIterator to consolidated import statement.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~5 minutes

Possibly related PRs

Suggested reviewers

  • LesnyRumcajs
  • akaladarshi
🚥 Pre-merge checks | ✅ 2 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Title check ⚠️ Warning The PR title references bumping clap from 4.5.58 to 4.5.59, but the actual changes show strum/strum_macros consolidation and ra_ap_syntax version bump, not clap changes. Update the PR title to accurately reflect the main changes: consolidating strum/strum_macros dependencies and updating ra_ap_syntax, or verify the correct changeset is included.
✅ Passed checks (2 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
  • 📝 Generate docstrings (stacked PR)
  • 📝 Generate docstrings (commit on current branch)
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch dependabot/cargo/patch-versions-c0c67d7c1f

Comment @coderabbitai help to get the list of available commands and usage tips.

@akaladarshi akaladarshi added this pull request to the merge queue Feb 23, 2026
Merged via the queue into main with commit 108bf3e Feb 23, 2026
34 checks passed
@akaladarshi akaladarshi deleted the dependabot/cargo/patch-versions-c0c67d7c1f branch February 23, 2026 06:18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file rust Pull requests that update Rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants