Skip to content

build(deps): bump google.golang.org/grpc from 1.83.0 to 1.83.1 - #7748

Merged
ebeahan merged 2 commits into
mainfrom
dependabot/go_modules/google.golang.org/grpc-1.83.1
Sep 2, 2026
Merged

build(deps): bump google.golang.org/grpc from 1.83.0 to 1.83.1#7748
ebeahan merged 2 commits into
mainfrom
dependabot/go_modules/google.golang.org/grpc-1.83.1

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 2, 2026

Copy link
Copy Markdown
Contributor

Bumps google.golang.org/grpc from 1.83.0 to 1.83.1.

Release notes

Sourced from google.golang.org/grpc's releases.

Release 1.83.1

Security

  • xds/rbac: Fix a bug where nested Principal or Permission rules with :scheme or grpc- prefixed header matchers were not rejected, which could cause DENY rules to fail open. (#9258)
  • xds/rbac: Fix a bug where the host header matcher was not being replaced with :authority in nested Principal or Permission rules. (#9258)
  • xds/rbac: Fix a bug where a header matcher whose name was not lowercase, such as X-Role, matched no header, which could cause DENY rules to fail open. (#9332)
  • xds/rbac: Fix a bug where a :scheme or grpc- prefixed header matcher was accepted when its name was not lowercase. (#9332)
  • xds/rbac: Fix a bug where a Host header matcher was not replaced with :authority. (#9332)

Performance

  • transport: Restrict memory overhead of buffering small data frames. (#9331)
Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps [google.golang.org/grpc](https://github.com/grpc/grpc-go) from 1.83.0 to 1.83.1.
- [Release notes](https://github.com/grpc/grpc-go/releases)
- [Commits](grpc/grpc-go@v1.83.0...v1.83.1)

---
updated-dependencies:
- dependency-name: google.golang.org/grpc
  dependency-version: 1.83.1
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file go Pull requests that update go code labels Sep 2, 2026
@dependabot
dependabot Bot requested a review from a team as a code owner September 2, 2026 07:50
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Sep 2, 2026
@dependabot
dependabot Bot requested a review from ycombinator September 2, 2026 07:50
@dependabot dependabot Bot added the go Pull requests that update go code label Sep 2, 2026
@dependabot
dependabot Bot requested a review from samuelvl September 2, 2026 07:50
@mergify

mergify Bot commented Sep 2, 2026

Copy link
Copy Markdown
Contributor

This pull request does not have a backport label. Could you fix it @dependabot[bot]? 🙏
To fixup this pull request, you need to add the backport labels for the needed
branches, such as:

  • backport-./d./d is the label to automatically backport to the 8./d branch. /d is the digit
  • backport-active-all is the label that automatically backports to all active branches.
  • backport-active-8 is the label that automatically backports to all active minor branches for the 8 major.
  • backport-active-9 is the label that automatically backports to all active minor branches for the 9 major.

@github-actions

github-actions Bot commented Sep 2, 2026

Copy link
Copy Markdown
Contributor

TL;DR

check-ci failed because the dependency update changed go.mod/go.sum at the repo root and testing/go.mod/testing/go.sum, but the dependency graph is not fully tidied for all module contexts. The immediate fix is to run module tidy in both modules and commit any resulting lockfile changes.

Remediation

  • Run go mod tidy in the repository root and in testing/ (or use the project’s dependency-maintenance target that does this for both modules), then commit updated go.mod/go.sum files.
  • Re-run CI (.buildkite/scripts/check_ci.sh) to confirm the module files are clean.
Investigation details

Root Cause

Buildkite fails in dependency consistency checks with:

  • go: updates to go.mod needed; to update it: go mod tidy

This indicates the submitted module file changes are incomplete for at least one package/test resolution path used by CI. Given this PR updates both top-level and testing/ module files, the failure is a dependency issue (module graph/lockfile drift), not an application code bug.

Evidence

Verification

  • Not run locally in this workflow; conclusion is from the Buildkite failure output and changed file set.

Follow-up

If tidy is run in both modules and no diffs remain, this Buildkite failure should clear on retry.


What is this? | From workflow: PR Buildkite Detective

Give us feedback! React with 🚀 if perfect, 👍 if helpful, 👎 if not.

@ebeahan
ebeahan merged commit 46f6f24 into main Sep 2, 2026
6 checks passed
@ebeahan
ebeahan deleted the dependabot/go_modules/google.golang.org/grpc-1.83.1 branch September 2, 2026 16:10
@ebeahan ebeahan added the backport-active-all Automated backport with mergify to all the active branches label Sep 2, 2026
@github-actions

github-actions Bot commented Sep 2, 2026

Copy link
Copy Markdown
Contributor

@Mergifyio backport 9.5 9.4 8.19

@mergify

mergify Bot commented Sep 2, 2026

Copy link
Copy Markdown
Contributor

ebeahan pushed a commit that referenced this pull request Sep 2, 2026
#7752)

* build(deps): bump google.golang.org/grpc from 1.83.0 to 1.83.1

Bumps [google.golang.org/grpc](https://github.com/grpc/grpc-go) from 1.83.0 to 1.83.1.
- [Release notes](https://github.com/grpc/grpc-go/releases)
- [Commits](grpc/grpc-go@v1.83.0...v1.83.1)

---
updated-dependencies:
- dependency-name: google.golang.org/grpc
  dependency-version: 1.83.1
  dependency-type: direct:production
...



* Post dependency update file modifications

---------




(cherry picked from commit 46f6f24)

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
ebeahan pushed a commit that referenced this pull request Sep 2, 2026
#7754)

* build(deps): bump google.golang.org/grpc from 1.83.0 to 1.83.1

Bumps [google.golang.org/grpc](https://github.com/grpc/grpc-go) from 1.83.0 to 1.83.1.
- [Release notes](https://github.com/grpc/grpc-go/releases)
- [Commits](grpc/grpc-go@v1.83.0...v1.83.1)

---
updated-dependencies:
- dependency-name: google.golang.org/grpc
  dependency-version: 1.83.1
  dependency-type: direct:production
...



* Post dependency update file modifications

---------




(cherry picked from commit 46f6f24)

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

backport-active-all Automated backport with mergify to all the active branches dependencies Pull requests that update a dependency file go Pull requests that update go code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant