Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 20, 2025

Bumps clap-config-file from 0.5.0 to 0.6.0.

Release notes

Sourced from clap-config-file's releases.

Release v0.6.0

Changes

  • Field Naming Consistency: Fixed config file field naming to use kebab-case format consistently across examples and tests
  • Boolean Config Integration: Added proper kebab-case serde rename attributes for boolean config fields
  • Test Improvements: Updated tests to focus on field naming consistency validation
  • Documentation: Fixed truncated README sentence about multiple config files support

Commits

  • Fix CI test failures by updating config field names to kebab-case
  • Fix example config files to use kebab-case naming and update nested struct serde attributes
  • Fix test to focus on field naming consistency validation rather than boolean integration
  • Fix config file field naming in tests to use kebab-case format
  • Fix boolean config integration by adding kebab-case serde rename attributes
  • Fix truncated README sentence about multiple config files
Commits
  • 5a761f8 Bump version to 0.6.0
  • a0e1ed9 Merge pull request #14 from bodo-run/copilot/fix-13
  • 37cb4cc Fix CI test failures by updating config field names to kebab-case
  • 2a941a6 Fix example config files to use kebab-case naming and update nested struct se...
  • 70e066b Fix test to focus on field naming consistency validation rather than boolean ...
  • 20cdf2d Fix config file field naming in tests to use kebab-case format
  • 1b46dfc Fix boolean config integration by adding kebab-case serde rename attributes
  • 787c0f4 Initial plan
  • 992098c Merge pull request #12 from bodo-run/defaults
  • 0818bd2 Fix truncated README sentence about multiple config files
  • Additional commits viewable in compare view

Dependabot compatibility score

You can trigger a rebase of this PR 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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @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)

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

Bumps [clap-config-file](https://github.com/bodo-run/clap-config-file) from 0.5.0 to 0.6.0.
- [Release notes](https://github.com/bodo-run/clap-config-file/releases)
- [Commits](bodo-run/clap-config-file@v0.5.0...v0.6.0)

---
updated-dependencies:
- dependency-name: clap-config-file
  dependency-version: 0.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Oct 20, 2025
Copy link
Contributor

@greptile-apps greptile-apps bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Greptile Overview

Summary

Updates clap-config-file dependency from 0.5.0 to 0.6.0, which standardizes config file field naming to kebab-case format.

Key changes in v0.6.0:

  • Field naming consistency: All config fields now use kebab-case format
  • Boolean config integration: Proper serde rename attributes added for boolean fields
  • Documentation improvements

Important: This update requires existing config files (yek.yaml, bench.toml) to use kebab-case field names instead of snake_case. For example:

  • output_diroutput-dir
  • ignore_patternsignore-patterns
  • priority_rulespriority-rules
  • binary_extensionsbinary-extensions
  • git_boost_maxgit-boost-max
  • category_weightscategory-weights
  • max_git_depthmax-git-depth

Confidence Score: 3/5

  • Safe to merge after verifying config file field naming compatibility
  • Standard dependency bump with breaking changes to config file format. The v0.6.0 update enforces kebab-case field naming which requires existing config files (yek.yaml, bench.toml) to be updated from snake_case to kebab-case. Without this update, config files will fail to parse correctly. Score of 3 reflects the need to verify and update config files before merging.
  • Pay close attention to yek.yaml and bench.toml - these config files must be updated to use kebab-case field names (output-dir, ignore-patterns, priority-rules, etc.) instead of snake_case to maintain compatibility with clap-config-file v0.6.0

Important Files Changed

File Analysis

Filename Score Overview
Cargo.toml 4/5 Bumps clap-config-file from 0.5.0 to 0.6.0 - standard dependency update
Cargo.lock 4/5 Updates lock file with new checksum for clap-config-file 0.6.0

Sequence Diagram

sequenceDiagram
    participant Dev as Developer
    participant Dep as Dependabot
    participant YC as YekConfig
    participant CCF as clap-config-file
    participant CF as Config Files

    Dev->>Dep: Trigger dependency update
    Dep->>CCF: Bump 0.5.0 → 0.6.0
    Note over CCF: v0.6.0 enforces<br/>kebab-case naming
    Dep->>YC: Update Cargo.toml
    Dep->>YC: Update Cargo.lock
    
    YC->>CCF: Parse CLI args + config
    CCF->>CF: Read yek.yaml/bench.toml
    Note over CF: MUST use kebab-case:<br/>output-dir, ignore-patterns,<br/>priority-rules, etc.
    CCF->>YC: Return parsed config
    
    Note over Dev,CF: Action Required: Update<br/>config files to kebab-case
Loading

1 file reviewed, 1 comment

Edit Code Review Agent Settings | Greptile

bytesize = "2.0.1"
clap = { version = "4.5", features = ["derive"] }
clap-config-file = "0.5.0"
clap-config-file = "0.6.0"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

style: v0.6.0 enforces kebab-case in config files. Verify yek.yaml uses output-dir, ignore-patterns, priority-rules, binary-extensions, git-boost-max, category-weights, max-git-depth (not snake_case)

Prompt To Fix With AI
This is a comment left during a code review.
Path: Cargo.toml
Line: 18:18

Comment:
**style:** v0.6.0 enforces kebab-case in config files. Verify `yek.yaml` uses `output-dir`, `ignore-patterns`, `priority-rules`, `binary-extensions`, `git-boost-max`, `category-weights`, `max-git-depth` (not snake_case)

How can I resolve this? If you propose a fix, please make it concise.

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.

1 participant