[deps] Update github.com/santhosh-tekuri/jsonschema/v6 to v6.0.3 - #51187
Merged
Conversation
Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Update github.com/santhosh-tekuri/jsonschema/v6 from v6.0.2 to v6.0.3
[deps] Update github.com/santhosh-tekuri/jsonschema/v6 to v6.0.3
Aug 7, 2026
pelikhan
marked this pull request as ready for review
August 7, 2026 20:35
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the JSON Schema validation dependency from v6.0.2 to v6.0.3, incorporating upstream bug fixes and additive custom-vocabulary support.
Changes:
- Bumps the direct Go dependency to v6.0.3.
- Refreshes module checksums for the new version.
Show a summary per file
| File | Description |
|---|---|
go.mod |
Updates the required dependency version. |
go.sum |
Records v6.0.3 module checksums. |
Review details
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Files reviewed: 1/2 changed files
- Comments generated: 0
- Review effort level: Balanced
This was referenced Aug 7, 2026
Contributor
|
🎉 This pull request is included in a new release. Release: |
This was referenced Aug 7, 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.
Patch bump of the direct Go dependency
github.com/santhosh-tekuri/jsonschema/v6(v6.0.2 → v6.0.3), tracked separately from grouped patch updates because the release ships an additive custom-vocab feature alongside bugfixes.Changes
go.mod/go.sum— bumped tov6.0.3viago get+go mod tidy. No source changes required; the library's exported API is unchanged for our usage.Upstream release contents
instLocationforpropertyNames/contentSchema,instLocationforitems/additionalItems, NaN/Inf float validation, email closing-quote check, numeric type check inequalsvalidation.ref-like property support in custom vocabularies (additive; we do not register custom vocabularies).Consumers
The library backs schema compilation and validation in
pkg/parser(schema_compiler.go,json_path_locator.go) andpkg/workflow(schema_validation.go,schema_utils.go,samples_validation.go,awf_config.go). Reviewers may want to pay attention toinstLocation-derived error paths, since those are whatjson_path_locator.gomaps back to frontmatter positions — the upstreaminstLocationfixes are the most behavior-visible part of this release for us.