revert(deps): downgrade github.com/go-json-experiment/json (9.3)#5849
Merged
Conversation
… (9.3) Reverts Renovate PR #5797 which bumped go-json-experiment/json from v0.0.0-20251027170946-4849db3c2f7e to v0.0.0-20260430182902-b6187a392ed4. The new version removed the SkipFunc exported symbol, breaking the build: trivy@v0.66.0/pkg/x/json/json.go:109: undefined: json.SkipFunc The CI cross-build uses GOFLAGS=-mod=readonly which bypasses vendor/ and resolves to the new broken version from the module cache. Pins back to v0.0.0-20251027170946-4849db3c2f7e which is proven stable with trivy v0.66.0 and matches the version used on the 9.4 branch. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
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
Reverts Renovate PR #5797 which bumped
github.com/go-json-experiment/jsonfromv0.0.0-20251027170946-4849db3c2f7etov0.0.0-20260430182902-b6187a392ed4.The new version removed the
SkipFuncexported symbol, breaking all packaging builds on 9.3:Root cause: The CI cross-build uses
GOFLAGS=-mod=readonlywhich bypassesvendor/and resolves to the new broken version from the module cache.trivy v0.66.0(used on 9.3) callsjson.SkipFuncfrom this package.Fix: Pins
go-json-experiment/jsonback tov0.0.0-20251027170946-4849db3c2f7e— the version that hasSkipFuncand is proven stable. This matches what the9.4branch uses.Test plan
mage package) passes on linux/amd64🤖 Generated with Claude Code