build(deps): bump google.golang.org/grpc from 1.70.0 to 1.79.3#11
Open
dependabot[bot] wants to merge 1 commit intomainfrom
Open
build(deps): bump google.golang.org/grpc from 1.70.0 to 1.79.3#11dependabot[bot] wants to merge 1 commit intomainfrom
dependabot[bot] wants to merge 1 commit intomainfrom
Conversation
Bumps [google.golang.org/grpc](https://github.com/grpc/grpc-go) from 1.70.0 to 1.79.3. - [Release notes](https://github.com/grpc/grpc-go/releases) - [Commits](grpc/grpc-go@v1.70.0...v1.79.3) --- updated-dependencies: - dependency-name: google.golang.org/grpc dependency-version: 1.79.3 dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com>
There was a problem hiding this comment.
1 issue found across 2 files
Prompt for AI agents (unresolved issues)
Check if these issues are valid — if so, understand the root cause of each and fix them. If appropriate, use sub-agents to investigate and fix each issue separately.
<file name="go.mod">
<violation number="1" location="go.mod:3">
P1: This change raises the module’s minimum Go version to 1.24.0, which can break builds in project environments still pinned to Go 1.23. Keep the existing Go baseline in this dependency bump PR unless the toolchain upgrade is intentional and coordinated.</violation>
</file>
Architecture diagram
sequenceDiagram
participant C as gRPC Client
participant T as gRPC Server Transport
participant I as Auth Interceptor (e.g. grpc/authz)
participant S as Service Implementation
Note over C,S: Request Processing with gRPC 1.79.3 Path Validation
C->>T: Send RPC Request (Header :path)
rect rgb(23, 37, 84)
Note right of T: NEW: Strict Path Validation (#8981)
alt Path is non-canonical (e.g., missing leading slash)
T-->>C: CHANGED: Reject with 'Unimplemented' Error
else Path is valid (canonical)
T->>I: Proceed to Interceptor chain
end
end
alt Path-based Authorization
I->>I: Check path against 'deny' rules
alt Authorized
I->>S: Invoke Service Method
S-->>C: Return Response
else Unauthorized
I-->>C: Return 'PermissionDenied'
end
end
Note over T,S: Internal Optimizations (1.79.0+)
Note right of T: Performance: Reduced slice re-allocations<br/>and optimized ALTS buffer alignment.
Reply with feedback, questions, or to request a fix. Tag @cubic-dev-ai to re-run a review.
| go 1.23 | ||
|
|
||
| toolchain go1.23.1 | ||
| go 1.24.0 |
There was a problem hiding this comment.
P1: This change raises the module’s minimum Go version to 1.24.0, which can break builds in project environments still pinned to Go 1.23. Keep the existing Go baseline in this dependency bump PR unless the toolchain upgrade is intentional and coordinated.
Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At go.mod, line 3:
<comment>This change raises the module’s minimum Go version to 1.24.0, which can break builds in project environments still pinned to Go 1.23. Keep the existing Go baseline in this dependency bump PR unless the toolchain upgrade is intentional and coordinated.</comment>
<file context>
@@ -1,8 +1,6 @@
-go 1.23
-
-toolchain go1.23.1
+go 1.24.0
require (
</file context>
Suggested change
| go 1.24.0 | |
| go 1.23 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bumps google.golang.org/grpc from 1.70.0 to 1.79.3.
Release notes
Sourced from google.golang.org/grpc's releases.
... (truncated)
Commits
dda86dbChange version to 1.79.3 (#8983)72186f1grpc: enforce strict path checking for incoming requests on the server (#8981)97ca352Changing version to 1.79.3-dev (#8954)8902ab6Change the version to release 1.79.2 (#8947)a928670Cherry-pick #8874 to v1.79.x (#8904)06df363Change version to 1.79.2-dev (#8903)782f2deChange version to 1.79.1 (#8902)850eccbChange version to 1.79.1-dev (#8851)765ff05Change version to 1.79.0 (#8850)68804beCherry pick #8864 to v1.79.x (#8896)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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill 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 versionwill 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 dependencywill 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.
Summary by cubic
Upgrade
google.golang.org/grpcto 1.79.3 to pick up a security fix and recent bug fixes. Also updates the toolchain to Go 1.24.0 and refreshes related deps.Dependencies
google.golang.org/grpcfrom 1.70.0 to 1.79.3 (includes strict path validation to prevent bypass of path-based deny rules).goto 1.24.0.google.golang.org/protobufto 1.36.10,golang.org/x/{crypto,net,sync,sys,term,text},gonum.org/v1/gonumto 0.16.0.github.com/spf13/viperto a direct dependency.Migration
Written for commit d70c85d. Summary will update on new commits.