-
Notifications
You must be signed in to change notification settings - Fork 1
chore(deps): bump github.com/go-git/go-git/v5 from 5.18.0 to 5.19.0 #287
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -147,8 +147,8 @@ require ( | |
| github.com/go-chi/chi/v5 v5.2.5 // indirect | ||
| github.com/go-errors/errors v1.4.2 // indirect | ||
| github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect | ||
| github.com/go-git/go-billy/v5 v5.8.0 // indirect | ||
| github.com/go-git/go-git/v5 v5.18.0 // indirect | ||
| github.com/go-git/go-billy/v5 v5.9.0 // indirect | ||
| github.com/go-git/go-git/v5 v5.19.0 // indirect | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🔴 HIGH RISK The versions v5.19.0 for github.com/go-git/go-git/v5 and v5.9.0 for github.com/go-git/go-billy/v5 are not valid upstream versions. This will cause dependency resolution to fail during build. Try running the following prompt in your coding agent: > Update github.com/go-git/go-git/v5 to the latest valid version using 'go get github.com/go-git/go-git/v5@latest' and then run 'go mod tidy'. |
||
| github.com/go-gorp/gorp/v3 v3.1.0 // indirect | ||
| github.com/go-ini/ini v1.67.0 // indirect | ||
| github.com/go-jose/go-jose/v4 v4.1.4 // indirect | ||
|
|
@@ -219,6 +219,7 @@ require ( | |
| github.com/json-iterator/go v1.1.12 // indirect | ||
| github.com/kevinburke/ssh_config v1.2.0 // indirect | ||
| github.com/klauspost/compress v1.18.5 // indirect | ||
| github.com/klauspost/cpuid/v2 v2.3.0 // indirect | ||
| github.com/knqyf263/go-apk-version v0.0.0-20200609155635-041fdbb8563f // indirect | ||
| github.com/knqyf263/go-deb-version v0.0.0-20241115132648-6f4aee6ccd23 // indirect | ||
| github.com/knqyf263/go-rpm-version v0.0.0-20220614171824-631e686d1075 // indirect | ||
|
|
@@ -285,7 +286,7 @@ require ( | |
| github.com/pandatix/go-cvss v0.6.2 // indirect | ||
| github.com/pelletier/go-toml/v2 v2.2.4 // indirect | ||
| github.com/peterbourgon/diskv v2.0.1+incompatible // indirect | ||
| github.com/pjbgf/sha1cd v0.3.2 // indirect | ||
| github.com/pjbgf/sha1cd v0.6.0 // indirect | ||
| github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect | ||
| github.com/pkg/errors v0.9.1 // indirect | ||
| github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10 // indirect | ||
|
|
@@ -371,15 +372,15 @@ require ( | |
| go.yaml.in/yaml/v3 v3.0.4 // indirect | ||
| go.yaml.in/yaml/v4 v4.0.0-rc.3 // indirect | ||
| golang.org/x/crypto v0.50.0 // indirect | ||
| golang.org/x/exp v0.0.0-20251023183803-a4bb9ffd2546 // indirect | ||
| golang.org/x/exp v0.0.0-20260410095643-746e56fc9e2f // indirect | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🔴 HIGH RISK The pseudo-version timestamp '20260410095643' is invalid because it refers to a future date. Pseudo-versions must be generated by the Go toolchain to match actual VCS commit timestamps. Try running the following prompt in your coding agent: > Update golang.org/x/exp to its latest valid pseudo-version using 'go get golang.org/x/exp@latest' and then run 'go mod tidy'. |
||
| golang.org/x/net v0.53.0 // indirect | ||
| golang.org/x/oauth2 v0.36.0 // indirect | ||
| golang.org/x/sync v0.20.0 // indirect | ||
| golang.org/x/sys v0.43.0 // indirect | ||
| golang.org/x/term v0.42.0 // indirect | ||
| golang.org/x/text v0.36.0 // indirect | ||
| golang.org/x/time v0.15.0 // indirect | ||
| golang.org/x/tools v0.43.0 // indirect | ||
| golang.org/x/tools v0.44.0 // indirect | ||
| golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da // indirect | ||
| google.golang.org/api v0.272.0 // indirect | ||
| google.golang.org/genproto v0.0.0-20260316180232-0b37fe3546d5 // indirect | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🟡 MEDIUM RISK
Suggestion: This PR updates multiple indirect dependencies not mentioned in the title. Manually managing versions for transitive dependencies is discouraged and can lead to maintenance overhead or version conflicts. Try running the following prompt in your coding agent: > Run 'go mod tidy' to clean up and synchronize the module dependencies.