🚨 Update go modules (main) (major) - #3133
Conversation
3061ab1 to
ad5b351
Compare
|
55a7196 to
ca1e8bd
Compare
4ddfa54 to
6a6166b
Compare
8eb3e76 to
f1aa247
Compare
7c8ec28 to
2b721f7
Compare
2be196d to
458ca5f
Compare
458ca5f to
61bcaeb
Compare
|
🤖 Finished Review · ✅ Success · Started 8:34 PM UTC · Completed 8:44 PM UTC |
ReviewFindingsHigh
Medium
Low
Next steps:
Previous runReviewFindingsCritical
High
Medium
Next steps:
Previous run (2)ReviewFindingsHigh
Next steps:
Previous run (3)ReviewFindingsCritical
Medium
Low
Previous run (4)ReviewThis Renovate PR updates FindingsCritical
High
Previous run (5)Review — 🔴 Changes RequestedPR: #3133 — 🚨 Update go modules (main) (major) SummaryThis Renovate-generated PR bumps three Go module dependencies to new major versions:
However, the PR only modifies Findings1. 🔴 Source code imports not updated —
|
b5766ef to
7214fc8
Compare
|
🤖 Finished Review · ✅ Success · Started 11:00 AM UTC · Completed 11:08 AM UTC |
7214fc8 to
0a97da2
Compare
|
🤖 Finished Review · ✅ Success · Started 8:04 PM UTC · Completed 8:09 PM UTC |
0a97da2 to
37d83e9
Compare
|
🤖 Finished Review · ✅ Success · Started 1:12 AM UTC · Completed 1:24 AM UTC |
37d83e9 to
d6abb5d
Compare
|
🤖 Finished Review · ✅ Success · Started 1:51 PM UTC · Completed 2:07 PM UTC |
d6abb5d to
ef0a8d0
Compare
|
🤖 Finished Review · ✅ Success · Started 8:17 PM UTC · Completed 8:31 PM UTC |
ef0a8d0 to
1f34e8c
Compare
|
🤖 Finished Review · ✅ Success · Started 11:51 AM UTC · Completed 12:04 PM UTC |
1f34e8c to
8dbb0b6
Compare
8dbb0b6 to
e59397d
Compare
|
🤖 Finished Review · ✅ Success · Started 4:59 PM UTC · Completed 5:13 PM UTC Commit: |
| golang.org/x/exp v0.0.0-20260410095643-746e56fc9e2f | ||
| golang.org/x/sync v0.22.0 | ||
| gopkg.in/go-jose/go-jose.v2 v2.6.3 | ||
| gopkg.in/go-jose/go-jose.v4 v4.1.4 |
There was a problem hiding this comment.
[high] api-contract
The PR replaces gopkg.in/go-jose/go-jose.v2 with gopkg.in/go-jose/go-jose.v4 in acceptance/go.mod, but acceptance/image/image.go line 60 still imports gopkg.in/go-jose/go-jose.v2/json. In Go modules, .v2 and .v4 are distinct module paths. Removing v2 from go.mod while source code still imports it will cause a build failure unless v2 is pulled in transitively. No source file has been updated to use v4.
Suggested fix: Either update acceptance/image/image.go to import gopkg.in/go-jose/go-jose.v4/json (verifying API compatibility) and keep v4 in go.mod, or keep v2 in go.mod until the source code is migrated. Run go mod tidy to verify.
| cuelang.org/go v0.16.0 | ||
| github.com/CycloneDX/cyclonedx-go v0.10.0 | ||
| github.com/MakeNowJust/heredoc v1.0.0 | ||
| github.com/MakeNowJust/heredoc/v2 v2.0.1 |
There was a problem hiding this comment.
[medium] logic-error
The PR adds github.com/MakeNowJust/heredoc/v2 as a direct dependency, but all 19 Go source files still import github.com/MakeNowJust/heredoc (the v1 path). The v2 direct dependency is unused by any source code and will be removed by go mod tidy. heredoc v1 remains a direct dependency in the second require block, so the build will not break.
Suggested fix: Either update all 19 Go files to import heredoc/v2 (after verifying API compatibility), or remove heredoc/v2 from go.mod.
| github.com/package-url/packageurl-go v0.1.3 | ||
| github.com/qri-io/jsonpointer v0.1.1 | ||
| github.com/santhosh-tekuri/jsonschema/v5 v5.3.1 | ||
| github.com/santhosh-tekuri/jsonschema/v6 v6.0.3 |
There was a problem hiding this comment.
[medium] logic-error
The PR adds github.com/santhosh-tekuri/jsonschema/v6 as a direct dependency, but all 3 Go source files still import jsonschema/v5. The v6 direct dependency is unused and will be removed by go mod tidy. jsonschema/v5 remains a direct dependency in the second require block, so the build will not break.
Suggested fix: Either update the 3 Go files to import jsonschema/v6 and adapt to the v6 API, or remove jsonschema/v6 from go.mod.
| gotest.tools/gotestsum v1.12.1 | ||
| helm.sh/helm/v3 v3.20.2 | ||
| helm.sh/helm/v3 v3.21.3 | ||
| helm.sh/helm/v4 v4.2.3 |
There was a problem hiding this comment.
[medium] logic-error
The PR adds helm.sh/helm/v4 v4.2.3 as a new direct dependency alongside helm.sh/helm/v3. However, tools/tools.go only imports helm.sh/helm/v3/cmd/helm. No source file imports helm.sh/helm/v4. The v4 dependency is unused and will be pruned by go mod tidy.
Suggested fix: Either update tools/tools.go to import helm.sh/helm/v4/cmd/helm, or remove helm.sh/helm/v4 from tools/go.mod.
This PR contains the following updates:
v1.0.0→v2.0.1v5.3.1→v6.0.3v2.6.3→v4.1.4v3.20.2→v4.2.3Warning
Some dependencies could not be looked up. Check the warning logs for more information.
Release Notes
MakeNowJust/heredoc (github.com/MakeNowJust/heredoc)
v2.0.1Compare Source
Version 2.0.1
Fixes
importpath for Go modulesv2.0.0Compare Source
Version 2.0.0
Breaking Changes
santhosh-tekuri/jsonschema (github.com/santhosh-tekuri/jsonschema/v5)
v6.0.3Compare Source
v6.0.2Compare Source
v6.0.1Compare Source
Bug Fixes:
check https://redirect.github.com/santhosh-tekuri/jsonschema/discussions/172 to see notes for migrating from v5 to v6
v6.0.0Compare Source
Improvements
$vocabularysupportsermverformatValidationErrorjv--insecureand--cacertflag--quietflagcheck https://redirect.github.com/santhosh-tekuri/jsonschema/discussions/172 to see notes for migrating from v5 to v6
helm/helm (helm.sh/helm/v3)
v4.2.3: Helm v4.2.3Compare Source
Helm v4.2.3 is a patch release. Users are encouraged to upgrade for the best experience.
The community keeps growing, and we'd love to see you there!
Installation and Upgrading
Download Helm v4.2.3. The common platform binaries are here:
The Quickstart Guide will get you going from there. For upgrade instructions or detailed installation notes, check the install guide. You can also use a script to install on any system with
bash.What's Next
Changelog
43e8b7f(Terry Howe)v4.2.2: Helm v4.2.2Compare Source
Helm v4.2.2 is a patch release. Users are encouraged to upgrade for the best experience.
The community keeps growing, and we'd love to see you there!
Notable Changes
Installation and Upgrading
Download Helm v4.2.2. The common platform binaries are here:
This release was signed by @gjenkins8 with key BF88 8333 D96A 1C18 E268 2AAE D79D 67C9 EC01 6739, which can be found at https://keys.openpgp.org/vks/v1/by-fingerprint/BF888333D96A1C18E2682AAED79D67C9EC016739. Please use the attached signatures for verifying this release using gpg.
The Quickstart Guide will get you going from there. For upgrade instructions or detailed installation notes, check the install guide. You can also use a script to install on any system with
bash.What's Next
Changelog
b05881c(George Jenkins)Full Changelog: helm/helm@v4.2.1...v4.2.2
v4.2.1: Helm v4.2.1Compare Source
Helm v4.2.1 is a patch release. Users are encouraged to upgrade for the best experience.
The community keeps growing, and we'd love to see you there!
Notable Changes
Installation and Upgrading
Download Helm v4.2.1. The common platform binaries are here:
This release was signed with
208D D36E D5BB 3745 A167 43A4 C7C6 FBB5 B91C 1155and can be found at @scottrigby keybase account. Please use the attached signatures for verifying this release usinggpg.The Quickstart Guide will get you going from there. For upgrade instructions or detailed installation notes, check the install guide. You can also use a script to install on any system with
bash.What's Next
Changelog
d591a19(Terry Howe)2a9fcae(Terry Howe)ffa5bd6(dependabot[bot])9f9dbaf(dependabot[bot])64a2891(dependabot[bot])e54a4a2(dependabot[bot])acb762b(dependabot[bot])768586d(dependabot[bot])eabfae5(Benoit Tigeot)e3fd51f(Benoit Tigeot)1e47395(Benoit Tigeot)a33e239(Benoit Tigeot)fa06d44(Terry Howe)360d483(Terry Howe)7651edf(dependabot[bot])b132e7e(dependabot[bot])eee491a(Terry Howe)3e3c575(dependabot[bot])c4ce2bb(dependabot[bot])3892dc2(dependabot[bot])c4bbb62(dependabot[bot])a0d7f16(dependabot[bot])8a3de05(dependabot[bot])57a4803(Matheus Pimenta)b33ae02(dependabot[bot])Full Changelog: helm/helm@v4.2.0...v4.2.1
v4.2.0: Helm v4.2.0Compare Source
Helm v4.2.0 is a feature release. Users are encouraged to upgrade for the best experience.
The community keeps growing, and we'd love to see you there!
Notable Changes
goreleaserfor release buildsmustToTomltemplate function--hide-notesand--render-subchart-notesflags--dry-run=servernow respectsgenerateName:Installation and Upgrading
Download Helm v4.2.0. The common platform binaries are here:
This release was signed by @gjenkins8 with key BF88 8333 D96A 1C18 E268 2AAE D79D 67C9 EC01 6739, which can be found at https://keys.openpgp.org/vks/v1/by-fingerprint/BF888333D96A1C18E2682AAED79D67C9EC016739. Please use the attached signatures for verifying this release using gpg.
The Quickstart Guide will get you going from there. For upgrade instructions or detailed installation notes, check the install guide. You can also use a script to install on any system with
bash.What's Next
Changelog
0646808(George Jenkins)e23bf3a(Scott Rigby)f60ab7c(Terry Howe)64aa46f(Terry Howe)d199a1a(Terry Howe)8289940(Terry Howe)c075022(Terry Howe)04885dd(Terry Howe)93103ce(Terry Howe)e49a1dc(Terry Howe)eaa0910(Terry Howe)5a75279(Terry Howe)37284a9(Terry Howe)45336cc(Terry Howe)a9659b0(Terry Howe)e368f17(Terry Howe)e7bea85(Terry Howe)075c096(Terry Howe)12f2c41(dependabot[bot])58e8ffd(dependabot[bot])e61bbfb(dependabot[bot])081c6df(Matheus Pimenta)277d970(Gagan H R)a4a9cc7(Matheus Pimenta)8f56f24(Matheus Pimenta)db40adb(Mohit)775e794(dependabot[bot])934ace3(dependabot[bot])265c5eb(Matheus Pimenta)48e2b7d(dependabot[bot])a8e2497(Evans Mungai)52fc971(Johannes Lohmer)0063877(Johannes Lohmer)6eb4ebf(Johannes Lohmer)5cb4e7d(Johannes Lohmer)b5c7c80(dependabot[bot])a27f1ad(Matheus Pimenta)c26be60(Cairon)953f5f0(dependabot[bot])10fc5f3(dependabot[bot])d89e7c6(dependabot[bot])8a95461(George Jenkins)213c869(Sumit Solanki)bd5027a(dependabot[bot])087736b(George Jenkins)586eb57(George Jenkins)c8c5dfa(dependabot[bot])998466c(dependabot[bot])b0cec58(dependabot[bot])6ebfb29(dependabot[bot])a7f8443(Terry Howe)4c0d21f(Terry Howe)08dea9c(dependabot[bot])de58531(Anmol Virdi)9b1ad4c(dependabot[bot])8ef2d45(Rhys McNeill)cd7cf76(dependabot[bot])45ee55b(dependabot[bot])9a06741(dependabot[bot])d1e31ca(dependabot[bot])f257c95(abhay1999)7025480(Terry Howe)64f1d0a(Sumit Solanki)85bf56e(Debasish Mohanty)1549937(Sumit Solanki)c7a75b1(dependabot[bot])3a7573a(dependabot[bot])0229da1(dependabot[bot])c1a5a6e(Ilya Kiselev)b075f7a(Ilya Kiselev)7edfff3(Matthieu MOREL)37185d2(dependabot[bot])071558d(Matthieu MOREL)6249489(Matthieu MOREL)47a0840(George Jenkins)3d06fd1(dependabot[bot])e64d628(Terry Howe)d7cdc9e(abhay1999)36dcc27(George Jenkins)c4be7af(dependabot[bot])259f181(tsinglua)6018499(George Jenkins)74e7cf8(dependabot[bot])af94abf(Matheus Pimenta)16073b1(dependabot[bot])e31a078(Matthieu MOREL)16573f8(Travis Leeden)b550ce9(Terry Howe)1dfa77e(Terry Howe)5d40f17(Matthieu MOREL)d4f6193(Matthieu MOREL)82d9bed(dependabot[bot])dc0e3f1(Matthieu MOREL)e3c74fd(Matthieu MOREL)1d2d63c(Matthieu MOREL)63f03c0(Matthieu MOREL)c25c988(Matthieu MOREL)0fecfd0(Matthieu MOREL)6524162(Matthieu MOREL)6c2cb2f(Matthieu MOREL)9409226(Matthieu MOREL)36cb3a2(Mads Jensen)5b6c6bb(Matthieu MOREL)strings.Cutvariablesb667317(George Jenkins)AGENTS.md956c724(George Jenkins)92b64e8(George Jenkins)c59c140(rohansood10)ee01860(Evans Mungai)304d25f(dependabot[bot])0b13436(dependabot[bot])4a91f3a(Evans Mungai)7823853(dependabot[bot])aec7ace(dependabot[bot])a23b638(dependabot[bot])5cddc95(dependabot[bot])2e266c3(dependabot[bot])259f76a(Matthieu MOREL)0254182(Matthieu MOREL)6d1490e(Matthieu MOREL)4d0ae7f(Matthieu MOREL)abecafa(Matthieu MOREL)4330bde(Matthieu MOREL)c8989d9(Matthieu MOREL)edbd705(Matthieu MOREL)5638c35(George Jenkins)76eb37c(Orgad Shaneh)9817a68(Manuel Alonso)5aac320(Evans Mungai)0d75d86(Matthieu MOREL)859292e(Matthieu MOREL)5cc2e55(Matthieu MOREL)ba38159(Matthieu MOREL)e2d184c(Matthieu MOREL)111d4e6(Matthieu MOREL)e8f386b(Pedro Tôrres)d983696(Pedro Tôrres)9c9c3a6(dependabot[bot])787b61c(Matheus Pimenta)becf9bf(dependabot[bot])6d5f56f(Scott Rigby)b53198e(dependabot[bot])b59e533(dependabot[bot])ec07265(Austin Abro)e3829eb(Philipp Born)63b40a7(Austin Abro)b0b35f1(Matheus Pimenta)26e28e8(George Jenkins)97fd007(Jeevan Yewale)5262007(dependabot[bot])e70d59d(Evans Mungai)bbec77c(Matheus Pimenta)443a2a6(George Jenkins)c1cc625(Matheus Pimenta)828038a(Evans Mungai)e223771(dependabot[bot])6501ef4(Manuel Alonso)a8eb527(Matheus Pimenta)da1d68a(dependabot[bot])0f949a9(Manuel Alonso)561410a(Manuel Alonso Gonzalez)0298b2f(Evans Mungai)b8937ad(Evans Mungai)a333bba(Evans Mungai)374aeb4(Feruzjon Muyassarov)00f0a48(Manuel Alonso)0357e8d(Manuel Alonso)52235cc(Manuel Alonso)268593b](https://redirect.github.com/helm/helm/Configuration
📅 Schedule: (UTC)
* 0-3 * * *)🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.