From ca812725e369d7e04405a8aa88004e39ccbd6b14 Mon Sep 17 00:00:00 2001 From: Quentin Januel Date: Wed, 31 Jul 2024 16:53:01 +0900 Subject: [PATCH] chore: add changelog --- .changeset/fix-array-format-validation.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/fix-array-format-validation.md diff --git a/.changeset/fix-array-format-validation.md b/.changeset/fix-array-format-validation.md new file mode 100644 index 00000000..73b5c5a6 --- /dev/null +++ b/.changeset/fix-array-format-validation.md @@ -0,0 +1,5 @@ +--- +"openapi-zod-client": patch +--- + +Fix format validation for string items in arrays. Previously, format specifications (such as `date-time`) were ignored for array items, resulting in loose validation. This change ensures that the specified formats are now correctly applied to all string items within arrays.