diff --git a/CHANGELOG.md b/CHANGELOG.md index 53ef3ba..ebd927a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,21 @@ +## [0.16.1] - 2025-11-27 + +## Added + +- several more symbols from `z` is re-exported + ## [0.16.0] - 2025-11-27 +### Changed + - upgraded dependencies: `npm:@asteasolutions/zod-to-openapi@^8.1.0`, `jsr:@oak/oak@^17.2.0`, `jsr:@std/assert@^1.0.16`, `jsr:@std/io@^0.225.2`, `jsr:@std/path@^1.1.3`, `jsr:@std/testing@^1.0.16`, `npm:zod@^4.1.13` ## [0.15.2] - 2025-06-29 +### Changed + - upgraded dependencies: `npm:@asteasolutions/zod-to-openapi@^7.3.4`, `jsr:@std/path@^1.1.0`, `jsr:@std/testing@^1.0.14`, `npm:zod@^3.25.67` diff --git a/deno.jsonc b/deno.jsonc index 3a9b33b..478a3fe 100644 --- a/deno.jsonc +++ b/deno.jsonc @@ -1,6 +1,6 @@ { "name": "@dklab/oak-routing-ctrl", - "version": "0.16.0", + "version": "0.16.1", "exports": { ".": "./mod.ts", "./mod": "./mod.ts" diff --git a/src/utils/schema_utils.ts b/src/utils/schema_utils.ts index f0969ae..dc8c9ea 100644 --- a/src/utils/schema_utils.ts +++ b/src/utils/schema_utils.ts @@ -56,6 +56,52 @@ type SubsetOfZ = Pick< | "custom" | "date" | "discriminatedUnion" + | "file" + | "base64" + | "base64url" + | "catch" + | "check" + | "clone" + | "decode" + | "decodeAsync" + | "encode" + | "encodeAsync" + | "endsWith" + | "startsWith" + | "stringFormat" + | "uppercase" + | "lowercase" + | "toLowerCase" + | "toUpperCase" + | "url" + | "uuid" + | "uuidv4" + | "uuidv6" + | "uuidv7" + | "safeDecode" + | "safeDecodeAsync" + | "safeEncode" + | "safeEncodeAsync" + | "safeParse" + | "safeParseAsync" + | "regex" + | "refine" + | "regexes" + | "stringbool" + | "config" + | "email" + | "emoji" + | "float32" + | "float64" + | "hex" + | "hash" + | "nan" + | "uint32" + | "uint64" + | "json" + | "jwt" + | "ipv4" + | "ipv6" | "function" | "getErrorMap" | "instanceof"