Skip to content

v0.8.0

Compare
Choose a tag to compare
@mnahkies mnahkies released this 07 Apr 11:05
· 84 commits to main since this release

What's Changed

There are three main features in this release:

  • Improve json schema validation support for string, number, array (min / max / etc)
  • Make boolean schema validation stricter
  • Start using a pre-compiled ajv validator for better performance

BREAKING CHANGES
Previously any truthy value would be accepted for a boolean, eg: any-string would parse to true. Now its parsed like:

  • true | "true" | 1 -> true
  • false | "false" | 0 -> false
  • anything else -> error

Features

Misc

Full Changelog: v0.7.0...v0.8.0