Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 839 Bytes

CHANGELOG.md

File metadata and controls

20 lines (16 loc) · 839 Bytes

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[Unreleased]

Added

  • Initial implementation of JSON Schema to Zod conversion
  • Support for basic types (string, number, integer, boolean, null, object, array)
  • String validations (minLength, maxLength, pattern)
  • Number validations (minimum, maximum, exclusiveMinimum, exclusiveMaximum, multipleOf)
  • Array validations (minItems, maxItems, uniqueItems)
  • Object validations (required properties, additionalProperties)
  • Schema composition (const, enum, anyOf, allOf, oneOf)
  • Dual module support (CommonJS and ESM)
  • GitHub Actions CI workflow
  • GitHub Actions publish workflow