Skip to content

v0.13.1

Choose a tag to compare

@mertcanaltin mertcanaltin released this 09 May 14:31
· 134 commits to master since this release

Fixed

  • Custom format checkers in validate() are now actually applied. The combined codegen path (used by Validator#validate and one-shot validate()) silently dropped the userFormats argument, so schemas with format: <user-defined> returned { valid: true } regardless of the checker function's return value. The boolean (isValidObject) and error-only paths were already wired correctly. Surfaced while building @rjsf/validator-ata.
  • Glob patterns with backslash separators on Windows now resolve correctly in ata build. The Node 18 fallback regex only recognized forward slashes, so path.join(dir, '*.json') produced patterns the matcher couldn't parse on windows-latest runners.