Uh oh!
There was an error while loading. Please reload this page.
update github.com/spf13/cobra v1.10.2, switch to go.yaml.in/yaml/v3 - #71
Conversation
Only remaining use is in testifiy, which has a pending PR to switch Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
218bb03 to
f73782dCompareThere was a problem hiding this comment.
Pull request overview
This PR attempts to update dependencies including upgrading github.com/spf13/cobra from v1.8.1 to v1.10.2 and switching the YAML library import path. However, there is a critical issue: the PR incorrectly uses go.yaml.in/yaml/v3 as the module path instead of the correct gopkg.in/yaml.v3.
Key Changes:
- Updates
github.com/spf13/cobrafrom v1.8.1 to v1.10.2 - Updates
github.com/spf13/pflagfrom v1.0.5 to v1.0.10 - Incorrectly attempts to switch from
gopkg.in/yaml.v3togo.yaml.in/yaml/v3(this is an invalid module path)
Reviewed changes
Copilot reviewed 3 out of 5 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| go.mod | Updates cobra and pflag versions; incorrectly adds go.yaml.in/yaml/v3 instead of gopkg.in/yaml.v3 |
| go.sum | Adds checksums for updated dependencies including the incorrect go.yaml.in/yaml/v3 module |
| clidocstool_yaml.go | Updates import to use incorrect go.yaml.in/yaml/v3 path |
| example/go.mod | Reflects dependency updates with incorrect yaml module path |
| example/go.sum | Adds checksums for updated dependencies including incorrect yaml module |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
thaJeztah
commented
Dec 9, 2025
Thx! I'll have a look at updating some other dependencies in the |
Uh oh!
There was an error while loading. Please reload this page.
Only remaining use is in testifiy, which has a pending PR to switch