What changed, and why it matters
This commit simply updates the project's dependency on the gRPC networking library from version 1.79.1 to 1.79.3. It changes three files: the main module definition, the checksum file, and a CI workflow that pins this dependency. The commit message does not say why the update is needed, and no security advisory or researcher credit is included in the materials provided. Patch-level version bumps in dependencies often include bug or security fixes, but we cannot confirm that from the diff alone.
Treat this as a routine but security-relevant dependency update. Review the upstream gRPC v1.79.3 release notes to determine whether it fixes any vulnerabilities or bugs affecting LND's RPC or Lightning peer transport usage, and consider applying the update promptly if it addresses security issues.
Security signals we found
Patch-level dependency update of a widely used networking library (gRPC)
No application code changes; only version pins and checksums modified
No commit-message explanation or linked advisory provided in supplied materials
gRPC is in the attack surface for LND's RPC and peer communications
Evidence from the diff
The diff is a mechanical dependency bump of google.golang.org/grpc from v1.79.1 to v1.79.3 across go.mod, go.sum, and .github/workflows/main.yml. No application code is modified. The change is a patch-level increment within the same minor release line, which commonly addresses regressions or security issues in the upstream library. The commit message and diff provide no details about the contents of grpc v1.79.3, and no verified references were supplied.
Changed components
google.golang.org/grpc dependencygo.modgo.sum.github/workflows/main.yml dependency pinInspect captured patch +4 / −4
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index a6958a4..7495bba 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -551,7 +551,7 @@ jobs:
fail-fast: false
matrix:
pinned_dep:
- - google.golang.org/grpc v1.79.1
+ - google.golang.org/grpc v1.79.3
- github.com/golang/protobuf v1.5.4
steps:
diff --git a/go.mod b/go.mod
index 4ce18fb..b00427a 100644
--- a/go.mod
+++ b/go.mod
@@ -58,7 +58,7 @@ require (
golang.org/x/sync v0.19.0
golang.org/x/term v0.38.0
golang.org/x/time v0.3.0
- google.golang.org/grpc v1.79.1
+ google.golang.org/grpc v1.79.3
google.golang.org/protobuf v1.36.10
gopkg.in/macaroon-bakery.v2 v2.0.1
gopkg.in/macaroon.v2 v2.0.0
diff --git a/go.sum b/go.sum
index d905a5d..2c6fc54 100644
--- a/go.sum
+++ b/go.sum
@@ -645,8 +645,8 @@ google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQ
google.golang.org/grpc v1.27.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk=
google.golang.org/grpc v1.29.1/go.mod h1:itym6AZVZYACWQqET3MqgPpjcuV5QH3BxFS3IjizoKk=
google.golang.org/grpc v1.33.1/go.mod h1:fr5YgcSWrqhRRxogOsw7RzIpsmvOZ6IcH4kBYTpR3n0=
-google.golang.org/grpc v1.79.1 h1:zGhSi45ODB9/p3VAawt9a+O/MULLl9dpizzNNpq7flY=
-google.golang.org/grpc v1.79.1/go.mod h1:KmT0Kjez+0dde/v2j9vzwoAScgEPx/Bw1CYChhHLrHQ=
+google.golang.org/grpc v1.79.3 h1:sybAEdRIEtvcD68Gx7dmnwjZKlyfuc61Dyo9pGXXkKE=
+google.golang.org/grpc v1.79.3/go.mod h1:KmT0Kjez+0dde/v2j9vzwoAScgEPx/Bw1CYChhHLrHQ=
gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/check.v1 v1.0.0-20160105164936-4f90aeace3a2/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
Why this scored 36/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.