diff --git a/.release-please-manifest.json b/.release-please-manifest.json index ea710c0..72371cc 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,7 +1,7 @@ { - "packages/api-errors": "1.1.0", - "packages/openapi-zod-ts": "1.1.0", - "packages/openapi-react-query": "3.12.0", + "packages/api-errors": "1.2.0", + "packages/openapi-zod-ts": "2.0.0", + "packages/openapi-react-query": "3.12.1", "packages/openapi-server": "1.8.0", "packages/openapi-msw": "0.2.0" } diff --git a/packages/api-errors/CHANGELOG.md b/packages/api-errors/CHANGELOG.md index cf6a2a1..7319687 100644 --- a/packages/api-errors/CHANGELOG.md +++ b/packages/api-errors/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.2.0](https://github.com/codewithagents/openapi-zod-ts/compare/api-errors-v1.1.0...api-errors-v1.2.0) (2026-06-15) + + +### Features + +* **api-errors:** Zod flatten + GraphQL parsers, Formik/TanStack/vanilla adapters ([#295](https://github.com/codewithagents/openapi-zod-ts/issues/295)) ([65fb88b](https://github.com/codewithagents/openapi-zod-ts/commit/65fb88ba44fdd3e2e7a6aa04169aefb63e049a64)) + ## [1.1.0](https://github.com/codewithagents/openapi-zod-ts/compare/api-errors-v1.0.6...api-errors-v1.1.0) (2026-06-01) diff --git a/packages/api-errors/package.json b/packages/api-errors/package.json index b6215a7..03b7bbf 100644 --- a/packages/api-errors/package.json +++ b/packages/api-errors/package.json @@ -1,6 +1,6 @@ { "name": "@codewithagents/api-errors", - "version": "1.1.0", + "version": "1.2.0", "description": "Map backend API errors to form field errors. Framework-agnostic core with React Hook Form adapter.", "type": "module", "main": "./dist/index.js", diff --git a/packages/openapi-react-query/CHANGELOG.md b/packages/openapi-react-query/CHANGELOG.md index c640439..5f47946 100644 --- a/packages/openapi-react-query/CHANGELOG.md +++ b/packages/openapi-react-query/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [3.12.1](https://github.com/codewithagents/openapi-zod-ts/compare/openapi-react-query-v3.12.0...openapi-react-query-v3.12.1) (2026-06-15) + + +### Bug Fixes + +* **generator:** codegen typing fixes for [#298](https://github.com/codewithagents/openapi-zod-ts/issues/298), [#299](https://github.com/codewithagents/openapi-zod-ts/issues/299), [#300](https://github.com/codewithagents/openapi-zod-ts/issues/300) ([#301](https://github.com/codewithagents/openapi-zod-ts/issues/301)) ([42d2f66](https://github.com/codewithagents/openapi-zod-ts/commit/42d2f66336de796dff65454c3875dfd9164c4692)) + ## [3.12.0](https://github.com/codewithagents/openapi-zod-ts/compare/openapi-react-query-v3.11.0...openapi-react-query-v3.12.0) (2026-06-10) diff --git a/packages/openapi-react-query/package.json b/packages/openapi-react-query/package.json index db8a056..0ceb0e8 100644 --- a/packages/openapi-react-query/package.json +++ b/packages/openapi-react-query/package.json @@ -1,6 +1,6 @@ { "name": "@codewithagents/openapi-react-query", - "version": "3.12.0", + "version": "3.12.1", "description": "Generate typed React Query v5 hooks from OpenAPI 3.1 specs", "type": "module", "bin": { diff --git a/packages/openapi-zod-ts/CHANGELOG.md b/packages/openapi-zod-ts/CHANGELOG.md index eb9fc69..667a2ce 100644 --- a/packages/openapi-zod-ts/CHANGELOG.md +++ b/packages/openapi-zod-ts/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [2.0.0](https://github.com/codewithagents/openapi-zod-ts/compare/openapi-zod-ts-v1.1.0...openapi-zod-ts-v2.0.0) (2026-06-15) + + +### ⚠ BREAKING CHANGES + +* **generator:** int64 fields previously generated as bigint / z.bigint(). Consumers who relied on bigint types for int64 fields must update their code. User-owned schemas.ts files containing z.bigint() for int64 properties will get TS compile errors and must be manually updated to z.number(). + +### Bug Fixes + +* **generator:** codegen typing fixes for [#292](https://github.com/codewithagents/openapi-zod-ts/issues/292), [#293](https://github.com/codewithagents/openapi-zod-ts/issues/293), [#294](https://github.com/codewithagents/openapi-zod-ts/issues/294) ([#297](https://github.com/codewithagents/openapi-zod-ts/issues/297)) ([6ac859b](https://github.com/codewithagents/openapi-zod-ts/commit/6ac859b8b5a8dcd806222ea9b24f732b63650210)) +* **generator:** codegen typing fixes for [#298](https://github.com/codewithagents/openapi-zod-ts/issues/298), [#299](https://github.com/codewithagents/openapi-zod-ts/issues/299), [#300](https://github.com/codewithagents/openapi-zod-ts/issues/300) ([#301](https://github.com/codewithagents/openapi-zod-ts/issues/301)) ([42d2f66](https://github.com/codewithagents/openapi-zod-ts/commit/42d2f66336de796dff65454c3875dfd9164c4692)) + ## [1.1.0](https://github.com/codewithagents/openapi-zod-ts/compare/openapi-zod-ts-v1.0.1...openapi-zod-ts-v1.1.0) (2026-06-10) diff --git a/packages/openapi-zod-ts/package.json b/packages/openapi-zod-ts/package.json index 52b4b13..596ceab 100644 --- a/packages/openapi-zod-ts/package.json +++ b/packages/openapi-zod-ts/package.json @@ -1,6 +1,6 @@ { "name": "openapi-zod-ts", - "version": "1.1.0", + "version": "2.0.0", "description": "Generate TypeScript models, native fetch client and Zod schemas from OpenAPI 3.1, zero runtime footprint", "type": "module", "bin": {