chore(release): new release - #220
Merged
Merged
Conversation
github-actions
Bot
force-pushed
the
changeset-release/main
branch
4 times, most recently
from
September 8, 2026 15:28
8d03f50 to
4ddfdd7
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
September 8, 2026 16:01
4ddfdd7 to
9960aa6
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 was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
schema-utils@4.4.0
Minor Changes
The
absolutePathkeyword accepts an optionalfile://prefix now, so a path fromimport.meta.resolve()can be passed to an option that takes an absolute path. Options that take a relative path reject such a value instead, they used to accept it. (by @laymonage, @alexander-akait in #222)process.env.SKIP_VALIDATIONis now read whenschema-utilsis loaded rather than on every validation, so set it before starting the process.enableValidation()/disableValidation()still take effect immediately and now share their state with every copy ofschema-utilsin the process directly. (by @alexander-akait in #217)At most 100 errors of a list are listed in the message now, the rest is counted as
and N more errors.errorsstill holds every error. (by @alexander-akait in #217)Patch Changes
read the
formatkeyword as part of the type, i.e.should be a date stringinstead ofshould be a string (should match format "date")(by @alexander-akait in #225)output the type of object properties in error messages, i.e.
object { foo?: boolean, bar?: integer }(by @alexander-akait in #224)Updated
ajvto8.20.0,ajv-formatsto3.0.1and@types/json-schemato7.0.15.ajv-formats3 only movesajvto a peer dependency, the formats themselves are unchanged. (by @alexander-akait in #221)A string an
absolutePathkeyword applies to is described as anabsolute path stringor arelative path stringrather than as a barestring, which read as though any string would do. A failure a schema reaches through more than one branch is listed once instead of repeatedly, so a relative path given to a rule condition is reported as the one line that says so. (by @alexander-akait in #223)Fixed error filtering being quadratic in the amount of reported errors, which let a large invalid configuration lock up the process, and stopped errors from being dropped when one instance path merely contained another as a substring - two sibling properties where one name is a prefix of the other were enough to lose an error. An array of options reporting a lot of errors no longer throws
RangeError: Maximum call stack size exceededinstead of aValidationError. (by @alexander-akait in #217)All notable changes to this project will be documented in this file.
4.3.3 (2025-10-02)
Bug Fixes
ValidationErrorConfigurationtype (#204) (49af922)4.3.2 (2025-04-22)
Bug Fixes
4.3.1 (2025-04-22)
Bug Fixes
Schemaand additional schemas (#197) (f72cd60)