Update go modules (main) (minor) - #3285
red-hat-konflux[bot] wants to merge 1 commit into
Conversation
|
ff4d004 to
5f37272
Compare
5f37272 to
c8f3087
Compare
|
🤖 Review · Commit: |
|
🤖 Finished Review · ✅ Success · Started 2:34 AM UTC · Completed 2:41 AM UTC Commit: Runtime: claude · Model: opus → claude-opus-4-7 · Effort: high · Cost: $3.44 |
|
🤖 Review · Commit: |
|
🤖 Review · Commit: |
|
🤖 Finished Review · ✅ Success · Started 2:38 AM UTC · Completed 2:49 AM UTC Commit: Runtime: claude · Model: opus → claude-opus-4-7 · Effort: high · Cost: $5.58 |
|
🤖 Finished Review · ✅ Success · Started 2:16 AM UTC · Completed 2:25 AM UTC Commit: Runtime: claude · Model: opus → claude-opus-4-7 · Effort: high · Cost: $4.81 |
|
🤖 Finished Review · ✅ Success · Started 3:32 AM UTC · Completed 3:41 AM UTC Commit: Runtime: claude · Model: opus → claude-opus-4-7 · Effort: high · Cost: $4.56 |
|
🤖 Review · Commit: |
|
🤖 Review · Commit: |
|
🤖 Review · Commit: |
|
🤖 Review · Commit: |
|
🤖 Review · Commit: |
Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
|
/fs-review |
| github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.62.0 // indirect | ||
| github.com/KeisukeYamashita/go-vcl v0.4.0 // indirect | ||
| github.com/Microsoft/go-winio v0.6.3-0.20251027160822-ad3df93bed29 // indirect | ||
| github.com/Microsoft/go-winio 7e8af9b09c4b // indirect |
There was a problem hiding this comment.
[critical] malformed-go-mod
Require directive uses a bare 12-character commit hash '7e8af9b09c4b' in the version position for github.com/Microsoft/go-winio. Go module versions must be a valid semver (vX.Y.Z) or pseudo-version (vX.Y.Z-yyyymmddhhmmss-<12hex>). A bare short hash causes 'go mod' to fail with 'invalid module version', breaking build/test/tidy/verify across the root module.
Suggested fix: Replace with a valid pseudo-version obtained via 'go get github.com/Microsoft/go-winio@7e8af9b09c4b && go mod tidy'.
| github.com/pkg/errors v0.9.1 // indirect | ||
| github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10 // indirect | ||
| github.com/power-devops/perfstat v0.0.0-20240221224432-82ca36839d55 // indirect | ||
| github.com/planetscale/vtprotobuf 8ae5a48058df // indirect |
There was a problem hiding this comment.
[critical] malformed-go-mod
Require directive uses a bare 12-character commit hash '8ae5a48058df' in the version position for github.com/planetscale/vtprotobuf. Not a valid Go module version; the file fails to parse ('invalid module version'), breaking all module commands.
Suggested fix: Replace with a valid pseudo-version via 'go get github.com/planetscale/vtprotobuf@8ae5a48058df && go mod tidy'.
|
|
||
| // Maybe less important in acceptance, but it seems sensible to use the fork here too | ||
| replace github.com/google/go-containerregistry => github.com/conforma/go-containerregistry v0.21.8-0.20260626175242-ae5f0ae7a0b0 | ||
| replace github.com/google/go-containerregistry => github.com/conforma/go-containerregistry f9eefe19c7b2 |
There was a problem hiding this comment.
[critical] malformed-go-mod
Replace directive 'replace github.com/google/go-containerregistry => github.com/conforma/go-containerregistry f9eefe19c7b2' uses a bare 12-character commit hash as the target version. Go requires a valid semver or pseudo-version; a bare hash yields 'invalid module version' and prevents any 'go mod' operation in the acceptance module. Compare with root go.mod:62 which correctly uses 'v0.21.8-0.20260702142841-f9eefe19c7b2' for the same fork.
Suggested fix: Change the replace target to the pseudo-version already used in the root go.mod: 'replace github.com/google/go-containerregistry => github.com/conforma/go-containerregistry v0.21.8-0.20260702142841-f9eefe19c7b2', then run 'go mod tidy' in acceptance/.
| github.com/Azure/go-ansiterm v0.0.0-20260917205352-e937bb47801a // indirect | ||
| github.com/BurntSushi/toml v1.6.0 // indirect | ||
| github.com/Microsoft/go-winio v0.6.3-0.20251027160822-ad3df93bed29 // indirect | ||
| github.com/Microsoft/go-winio 7e8af9b09c4b // indirect |
There was a problem hiding this comment.
[critical] malformed-go-mod
Require directive uses a bare 12-character commit hash '7e8af9b09c4b' in the version position for github.com/Microsoft/go-winio. Not a valid Go module version; go mod fails to parse acceptance/go.mod, breaking acceptance-module builds/tests.
Suggested fix: Replace with a valid pseudo-version via 'go get github.com/Microsoft/go-winio@7e8af9b09c4b && go mod tidy' in acceptance/.
| github.com/Masterminds/squirrel v1.5.4 // indirect | ||
| github.com/Masterminds/vcs v1.13.3 // indirect | ||
| github.com/Microsoft/go-winio v0.6.3-0.20251027160822-ad3df93bed29 // indirect | ||
| github.com/Microsoft/go-winio 7e8af9b09c4b // indirect |
There was a problem hiding this comment.
[critical] malformed-go-mod
Require directive uses a bare 12-character commit hash '7e8af9b09c4b' in the version position for github.com/Microsoft/go-winio. Invalid Go module version syntax; tools/go.mod will not parse, breaking every module command in tools/.
Suggested fix: Replace with a valid pseudo-version via 'go get github.com/Microsoft/go-winio@7e8af9b09c4b && go mod tidy' in tools/.
| 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 | ||
| github.com/planetscale/vtprotobuf 8ae5a48058df // indirect |
There was a problem hiding this comment.
[critical] malformed-go-mod
Require directive uses a bare 12-character commit hash '8ae5a48058df' in the version position for github.com/planetscale/vtprotobuf. Not a valid Go module version; tools/go.mod fails to parse, breaking all tools-module operations.
Suggested fix: Replace with a valid pseudo-version via 'go get github.com/planetscale/vtprotobuf@8ae5a48058df && go mod tidy' in tools/.
This PR contains the following updates:
v1.3.0→v1.4.0v0.20.0→v0.23.3v0.24.0v1.21.0→v1.25.0v1.26.0v1.11.0→v1.13.0v1.14.0v1.31.0→v1.34.0v1.35.0v1.0.0→v1.2.0v1.3.0v1.25.0→v1.30.0v1.31.0v1.62.2→v1.68.0v0.16.0→v0.17.1v0.16.0→v0.17.1v0.6.0→v0.8.1v0.15.0→v0.20.0v1.21.1→v1.23.1v1.13.1→v1.14.1faa5f7b→e937bb4v1.7.0→v1.9.0v1.10.0v0.10.0→v0.12.0v0.10.0→v0.12.0v1.33.0→v1.38.0v0.55.0→v0.62.0v0.55.0→v0.62.0v1.45.2→v1.60.2v1.61.0v3.4.0→v3.5.0ad3df93→7e8af9bv1.2.5→v1.6.8v2.23.1→v2.27.0v0.3.1→v0.5.0v1.4.2→v1.6.1v1.2.2→v1.5.3v1.3.9→v1.4.13v0.1.0→v0.2.1v2.1.0→v2.2.1v1.43.8→v1.47.0v1.47.1v1.32.39→v1.33.5v1.33.6v1.19.38→v1.20.5v1.20.6v1.18.39→v1.20.0v1.20.1v1.4.39→v1.5.3v1.5.4v2.7.39→v2.8.3v2.8.4v1.4.40→v1.5.3v1.5.4v1.55.3→v1.66.0v1.66.1v1.38.10→v1.47.0v1.47.1v1.9.28→v1.11.3v1.11.5(+1)v1.13.39→v1.14.3v1.14.4v1.19.36→v1.20.3v1.20.4v1.52.0→v1.61.0v1.61.1v1.106.5→v1.113.1v1.113.4(+2)v1.5.8→v1.10.0v1.10.1v1.33.8→v1.38.0v1.38.1v1.38.8→v1.43.0v1.43.1v1.45.8→v1.51.0v1.51.1v1.27.10→v1.28.2v4.6.1→v4.10.2v5.6.0→v5.9.0v0.3.1→v0.4.3v0.10.1→v0.11.8v0.10.0→v0.11.0v2.6.0→v2.7.0ae5f0ae→f9eefe1v2.3.4→v2.4.0v2.4.1v0.1.0→v0.2.0v3.19.0→v3.21.0v0.15.0→v0.16.0v0.6.1→v0.7.0v0.13.7→v0.14.0v0.27.3→v0.28.0v2.2.0→v2.4.23a137a8→d678ea5220c5c2→b4b58b9v1.11.5→v1.12.0v29.7.2+incompatible→v29.8.1+incompatiblev0.7.0→v0.8.1v1.0.1→v1.1.0v0.10.1→v0.11.0v0.11.1v1.37.0→v1.39.0v1.18.0→v1.19.0v2.9.0→v2.13.10v0.14.3→v0.15.0v0.25.2→v0.26.2v0.23.1→v0.24.0v0.24.0→v0.25.3v0.32.4→v0.33.2v0.32.4→v0.33.2v0.30.0→v0.33.2v0.26.4→v0.27.2v0.26.4→v0.27.2v0.26.1→v0.29.2v0.26.1→v0.29.2v0.27.0→v0.29.2v0.26.1→v0.29.2v0.26.1→v0.29.2v0.26.1→v0.29.2v0.26.1→v0.29.2v0.26.1→v0.29.2v0.26.1→v0.29.2v0.26.1→v0.29.2v0.27.0→v0.29.2v0.26.1→v0.29.2v1.18.0→v1.19.2f665c8d→c99c5cfd62b90e→e84e050v2.11.4→v2.13.2v2.14.0v0.28.0→v0.30.0v25.2.10+incompatible→v25.12.19+incompatiblev0.21.7→v0.22.1v0.21.7→v0.22.17a66278→0c8bedb098045d→0c8bedbv1.1.0→v1.2.0545e8a4→6331bc6v2.22.0→v2.24.1v2.26.0(+1)v2.29.0→v2.30.0v2.31.0v2.23.0→v2.25.0v1.22.0→v1.23.0v1.39.1→v1.43.0v1.5.0→v1.6.1v0.10.0→v0.11.1v0.9.1→v0.12.0661be99→a09352bv1.8.2→v1.11.0v1.2.0→v1.6.0v1.10.0→v1.20.0v1.19.2→v1.20.0v1.20.1v2.3.0→v2.4.0v0.8.0→v0.10.0v0.7.2→v0.8.0v1.0.0→v1.4.0v3.0.13→v3.3.0v0.20260309.0→v0.20260908.0v0.20260921.0v1.11.2→v1.12.3v1.3.0→v1.4.1c963978→341c2f0v1.8.10→v1.18.12v0.5.0→v0.6.0v1.1.1→v1.3.0v1.15.0→v1.16.0v1.17.0v1.55.0→v1.56.0v0.5.0→v0.6.0v0.7.1→v0.12.7v0.12.0→v0.13.0v0.23.0→v0.24.0v1.2.0→v1.3.0v0.68.2→v0.70.1v1.15.2→v1.20.2v1.21.0v1.15.2→v1.20.2v1.21.020ebb0f→4e6772a0393e58→8ae5a4882ca368→22a1a46v0.70.1→v0.71.0