Fix Dependabot security alerts: bump go-jose and jsonparser#35
Open
methodofaction wants to merge 1 commit into
Open
Fix Dependabot security alerts: bump go-jose and jsonparser#35methodofaction wants to merge 1 commit into
methodofaction wants to merge 1 commit into
Conversation
- github.com/go-jose/go-jose/v4: v4.0.5 -> v4.1.4 (alert #10, high) Fixes JWE decryption panic vulnerability. - github.com/buger/jsonparser: v1.1.1 -> v1.1.2 (alert #9, high) Fixes denial of service vulnerability. golang.org/x/crypto is already at v0.47.0 (>= v0.45.0), which patches alerts #7 and #8; those alerts should auto-close on next Dependabot scan. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
There was a problem hiding this comment.
Pull request overview
Updates vulnerable indirect Go dependencies to resolve active Dependabot security alerts in this module (github.com/invopop/gobl.ticketbai), without changing any application/source code.
Changes:
- Bump
github.com/go-jose/go-jose/v4indirect dependency fromv4.0.5tov4.1.4. - Bump
github.com/buger/jsonparserindirect dependency fromv1.1.1tov1.1.2. - Regenerate
go.sumentries accordingly (consistent withgo get+go mod tidy).
Reviewed changes
Copilot reviewed 1 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| go.mod | Updates indirect dependency versions for go-jose/v4 and jsonparser. |
| go.sum | Updates module checksums to match the bumped indirect dependencies. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
cavalle
approved these changes
Apr 28, 2026
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
Resolves the open Dependabot security alerts on
mainby bumping vulnerable indirect dependencies.github.com/go-jose/go-jose/v4v4.0.5 → v4.1.4 (JWE decryption panic)github.com/buger/jsonparserv1.1.1 → v1.1.2 (denial of service)golang.org/x/cryptois already at v0.47.0 onmain(patched in v0.45.0). These alerts are stale and should auto-close on the next Dependabot scan; no code change required.Both bumps applied as indirect deps via
go get+go mod tidy. No source changes.Test plan
go build ./...passesgo test ./...passes🤖 Generated with Claude Code