chore(deps): routine updates — protobuf, cobra, gopher-lua-libs - #127
Open
arun-k-bharathan wants to merge 1 commit into
Open
chore(deps): routine updates — protobuf, cobra, gopher-lua-libs#127arun-k-bharathan wants to merge 1 commit into
arun-k-bharathan wants to merge 1 commit into
Conversation
This was referenced Aug 9, 2026
arun-k-bharathan
marked this pull request as draft
August 9, 2026 07:43
arun-k-bharathan
force-pushed
the
deps/routine-updates
branch
from
August 17, 2026 04:51
222ed34 to
dab8453
Compare
arun-k-bharathan
marked this pull request as ready for review
August 17, 2026 04:53
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.
Summary
Consolidated replacement for three stale Dependabot PRs, none of which carries a security fix:
google.golang.org/protobuf1.36.9 → 1.36.11github.com/spf13/cobra1.10.1 → 1.10.2github.com/vadv/gopher-lua-libs0.7.0 → 0.8.0The diff is three requirement lines in
go.modand six ingo.sum. No source or test files changed.govulncheck ./...reports the same 14 reachable vulnerabilities here as onmain, which is what you would expect: nothing in this PR is a security bump. #125 and #126 cover those.gopher-lua-libs is the largest jump of the three, a minor version against two patches. It reaches this codebase through a single call,
gopher_lua_libs.Preload(ls)atinternal/lua/lua.go:257, which registers the library's modules into each worker's LState. The Docker-backedinternal/luatests exercise that path and pass.Relationship to the other dependency PRs
#125 bumps grpc to 1.82.1, and
grpc@v1.82.1/go.modrequiresprotobuf v1.36.11, the same version this PR sets directly. If #125 merges first, the protobuf line here becomes a no-op. If this merges first, it stands on its own. Either way MVS lands on 1.36.11, since both are the same module path.Merge order across the cleanup: #125, then #126, then this one, then #128. Nothing here constrains the order, so it can go whenever convenient.
Supersedes
All three are still open. Please close them after merging this one, since I'm working from a fork and can't close them myself.
Test plan
go build ./...make test(go test -count=1 -race ./...), all 13 test packages pass, including the Docker-backed ones forcql,lua,psql,mongoandkafkamake lintmatches themainbaseline at 238 findings, none new