fix(deps): fixes update ocm monorepo go module dependencies (patch) (#2331)#2401
Conversation
Signed-off-by: Frederic Wilhelm <frederic.wilhelm@sap.com>
✅ Deploy Preview for ocm-website ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
📝 WalkthroughWalkthroughThis pull request updates Go module dependency versions across 26 Changes
Estimated code review effort🎯 2 (Simple) | ⏱️ ~12 minutes Possibly related PRs
Suggested labels
Suggested reviewers
Poem
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
|
We need #2402 to land first |
We need to merge #2402 first because #2401 is failing as the localblob changes are not present on the controller image yet ``` status: conditions: - lastTransitionTime: "2026-04-28T09:04:15Z" message: 'failed to download resource: failed to resolve access type: unsupported type: LocalBlob/v1' ``` Signed-off-by: Frederic Wilhelm <frederic.wilhelm@sap.com>
What this PR does / why we need it
Fixes dependency issues introduced by the automated Renovate dependency update in #2331.
Renovate bumped
bindings/go/runtimetov0.0.8andbindings/go/descriptor/v2tov2.0.3-alpha3in some modules, but leftdescriptor/runtimeanddescriptor/normalisationstill pinned to the olddescriptor/v2 v2.0.1-alpha9. Sincev2.0.3-alpha3includes theLocalBlobUpperCamelCase rename (#2323), modules depending on bothdescriptor/runtime(atv2.0.1-alpha9) anddescriptor/v2(atv2.0.3-alpha3) had an incompatible version mismatch.The fix updates
descriptor/runtimeanddescriptor/normalisationto also requiredescriptor/v2 v2.0.3-alpha3, then propagates the aligned versions to all downstream consumers across the workspace.Which issue(s) this PR fixes
Related to #2331