You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.