fix(deps): Update module github.com/buger/jsonparser to v1.2.0 (main)#21746
Open
renovate-sh-app[bot] wants to merge 1 commit into
Open
fix(deps): Update module github.com/buger/jsonparser to v1.2.0 (main)#21746renovate-sh-app[bot] wants to merge 1 commit into
renovate-sh-app[bot] wants to merge 1 commit into
Conversation
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
Bugbot Autofix prepared a fix for the issue found in the latest run.
- ✅ Fixed: Build tag space creates incorrect constraint logic
- Removed the stray space in the unsafe build tag so appengine, appenginevm, and tinygo exclusions remain in the same AND group.
Or push these changes by commenting:
@cursor push 97c93e4599
Preview (97c93e4599)
diff --git a/vendor/github.com/buger/jsonparser/bytes_unsafe.go b/vendor/github.com/buger/jsonparser/bytes_unsafe.go
--- a/vendor/github.com/buger/jsonparser/bytes_unsafe.go
+++ b/vendor/github.com/buger/jsonparser/bytes_unsafe.go
@@ -1,4 +1,4 @@
-// +build !appengine,!appenginevm, !tinygo
+// +build !appengine,!appenginevm,!tinygo
// SYS-REQ-001, SYS-REQ-013, SYS-REQ-014: unsafe build-tag byte utilities
package jsonparserYou can send follow-ups to the cloud agent here.
Reviewed by Cursor Bugbot for commit da649e9. Configure here.
66e4866 to
e7e5268
Compare
35aa033 to
9b5c6df
Compare
792da7a to
a7f2f12
Compare
| datasource | package | from | to | | ---------- | --------------------------- | ------ | ------ | | go | github.com/buger/jsonparser | v1.1.2 | v1.2.0 | Signed-off-by: renovate-sh-app[bot] <219655108+renovate-sh-app[bot]@users.noreply.github.com>
a7f2f12 to
b1440c7
Compare
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.


This PR contains the following updates:
v1.1.2→v1.2.0Warning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Release Notes
buger/jsonparser (github.com/buger/jsonparser)
v1.2.0Compare Source
What's Changed
Full Changelog: buger/jsonparser@v1.1.2...v1.2.0
Configuration
📅 Schedule: (UTC)
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
Need help?
You can ask for more help in the following Slack channel: #proj-renovate-self-hosted. In that channel you can also find ADR and FAQ docs in the Resources section.
Note
Medium Risk
Updates a low-level JSON parsing/mutation dependency and its vendored code, including behavior changes in
DeleteandArrayEach; regressions could affect any callers relying on edge-case parsing or error handling.Overview
Updates
github.com/buger/jsonparserfromv1.1.2tov1.2.0(includinggo.sumandvendor/modules.txt) and refreshes the vendored library.The vendored update includes bug fixes and behavioral adjustments:
Deletenow guards against truncated input to avoid out-of-bounds access, andArrayEachnow reliably forwards parse errors to the callback/return path instead of silently continuing.Also adds TinyGo build-tag support, removes/avoids previously dead/tautological branches in parsing/unescaping code paths, and introduces ReqProof formal verification metadata/docs (e.g.,
proof.yamlplus requirement annotations in source/comments).Reviewed by Cursor Bugbot for commit b1440c7. Bugbot is set up for automated code reviews on this repo. Configure here.