Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -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"
}
7 changes: 7 additions & 0 deletions packages/api-errors/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
2 changes: 1 addition & 1 deletion packages/api-errors/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
7 changes: 7 additions & 0 deletions packages/openapi-react-query/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
2 changes: 1 addition & 1 deletion packages/openapi-react-query/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
12 changes: 12 additions & 0 deletions packages/openapi-zod-ts/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
2 changes: 1 addition & 1 deletion packages/openapi-zod-ts/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down