[release-4.13] OCPBUGS-86877: Bump google.golang.org/grpc#324
Conversation
|
@rhdmalone: This pull request references Jira Issue OCPBUGS-86877, which is invalid:
Comment The bug has been updated to refer to the pull request using the external bug tracker. DetailsIn response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository. |
|
Important Review skippedAuto reviews are disabled on base/target branches other than the default branch. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: Repository: openshift/coderabbit/.coderabbit.yaml Review profile: CHILL Plan: Enterprise Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ 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 |
|
/label backport-risk-assessed |
|
/approve |
|
@simonpasquier: This pull request references Jira Issue OCPBUGS-86877, which is invalid:
Comment DetailsIn response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository. |
|
/retest-required |
|
@simonpasquier: This pull request references Jira Issue OCPBUGS-86877, which is invalid:
Comment DetailsIn response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository. |
|
/jira refresh |
|
@simonpasquier: This pull request references Jira Issue OCPBUGS-86877, which is invalid:
Comment DetailsIn response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository. |
|
/verified by @simonpasquier |
|
@simonpasquier: This PR has been marked as verified by DetailsIn response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository. |
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: rhdmalone, simonpasquier The full list of commands accepted by this bot can be found here. The pull request process is described here DetailsNeeds approval from an approver in each of these files:
Approvers can indicate their approval by writing |
|
/test e2e-agnostic-cmo |
|
@rhdmalone: all tests passed! Full PR test history. Your PR dashboard. DetailsInstructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here. |
Step 1 — Add the grpc replace directive:
go mod edit -replace google.golang.org/grpc=github.com/openshift-sustaining/grpc-go@v1.64.1-sec.1
Step 2 — Pre-fetch the sustaining fork to populate go.sum:
go mod download github.com/openshift-sustaining/grpc-go@v1.64.1-sec.1
Step 3 — Tidy with error tolerance (OTel module restructuring causes unavoidable warnings):
go mod tidy -e
Step 4 — Manually update go.mod to align OTel exporter versions with the OTel core (v1.24.0):
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.11.2 → v1.24.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.11.2 → v1.24.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.11.2 → v1.24.0
go.opentelemetry.io/otel/sdk v1.22.0 → v1.24.0
Remove go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.11.2 (no longer a separate module at v1.24.0)
Step 5 — Tidy again to update go.sum for the new OTel versions:
go mod tidy -e
Step 6 — Update the vendor directory:
go mod vendor
Step 7 — Update semconv in tracing/tracing.go:
Change semconv "go.opentelemetry.io/otel/semconv/v1.12.0" → semconv "go.opentelemetry.io/otel/semconv/v1.24.0"
Step 8 — Re-vendor to pick up the semconv change:
go mod vendor
Step 9 — Commit:
git add go.mod go.sum vendor/ tracing/tracing.go
git commit -m "CVE-2026-33186: fix grpc authorization bypass on release-4.13
to resolve module restructuring incompatibility with OTel core v1.24.0