diff --git a/.changeset/empty-ghosts-sip.md b/.changeset/empty-ghosts-sip.md deleted file mode 100644 index d8f414c4d..000000000 --- a/.changeset/empty-ghosts-sip.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"openapi-fetch": patch ---- - -Do not treat Content-Length=0 as empty when Transfer-Encoding is chunked diff --git a/.changeset/happy-pans-run.md b/.changeset/happy-pans-run.md deleted file mode 100644 index 85b700c7c..000000000 --- a/.changeset/happy-pans-run.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"openapi-typescript": minor -"openapi-typescript-helpers": minor -"openapi-fetch": minor ---- - -Add readOnly/writeOnly support via `--read-write-markers` flag. When enabled, readOnly properties are wrapped with `$Read` and writeOnly properties with `$Write`. openapi-fetch uses `Readable` and `Writable` helpers to exclude these properties from responses and request bodies respectively. diff --git a/packages/openapi-fetch/CHANGELOG.md b/packages/openapi-fetch/CHANGELOG.md index 1e55a2329..18086e3db 100644 --- a/packages/openapi-fetch/CHANGELOG.md +++ b/packages/openapi-fetch/CHANGELOG.md @@ -1,5 +1,18 @@ # openapi-fetch +## 0.17.0 + +### Minor Changes + +- [#2549](https://github.com/openapi-ts/openapi-typescript/pull/2549) [`a690e52`](https://github.com/openapi-ts/openapi-typescript/commit/a690e526b7693479bc2f2f002d71a020fa5e4e16) Thanks [@abumalick](https://github.com/abumalick)! - Add readOnly/writeOnly support via `--read-write-markers` flag. When enabled, readOnly properties are wrapped with `$Read` and writeOnly properties with `$Write`. openapi-fetch uses `Readable` and `Writable` helpers to exclude these properties from responses and request bodies respectively. + +### Patch Changes + +- [#2572](https://github.com/openapi-ts/openapi-typescript/pull/2572) [`9350ddf`](https://github.com/openapi-ts/openapi-typescript/commit/9350ddfcd44b661a5288667ebfcf298868dd9784) Thanks [@luis-guideti](https://github.com/luis-guideti)! - Do not treat Content-Length=0 as empty when Transfer-Encoding is chunked + +- Updated dependencies [[`a690e52`](https://github.com/openapi-ts/openapi-typescript/commit/a690e526b7693479bc2f2f002d71a020fa5e4e16)]: + - openapi-typescript-helpers@0.1.0 + ## 0.16.0 ### Minor Changes diff --git a/packages/openapi-fetch/package.json b/packages/openapi-fetch/package.json index f8c53dbe7..b5183db67 100644 --- a/packages/openapi-fetch/package.json +++ b/packages/openapi-fetch/package.json @@ -1,7 +1,7 @@ { "name": "openapi-fetch", "description": "Fast, type-safe fetch client for your OpenAPI schema. Only 6 kb (min). Works with React, Vue, Svelte, or vanilla JS.", - "version": "0.16.0", + "version": "0.17.0", "author": { "name": "Drew Powers", "email": "drew@pow.rs" diff --git a/packages/openapi-react-query/CHANGELOG.md b/packages/openapi-react-query/CHANGELOG.md index 0b0bb231d..fdd16471d 100644 --- a/packages/openapi-react-query/CHANGELOG.md +++ b/packages/openapi-react-query/CHANGELOG.md @@ -1,5 +1,13 @@ # openapi-react-query +## 0.5.4 + +### Patch Changes + +- Updated dependencies [[`9350ddf`](https://github.com/openapi-ts/openapi-typescript/commit/9350ddfcd44b661a5288667ebfcf298868dd9784), [`a690e52`](https://github.com/openapi-ts/openapi-typescript/commit/a690e526b7693479bc2f2f002d71a020fa5e4e16)]: + - openapi-fetch@0.17.0 + - openapi-typescript-helpers@0.1.0 + ## 0.5.3 ### Patch Changes diff --git a/packages/openapi-react-query/package.json b/packages/openapi-react-query/package.json index 8d5867ee4..4f99c2625 100644 --- a/packages/openapi-react-query/package.json +++ b/packages/openapi-react-query/package.json @@ -1,7 +1,7 @@ { "name": "openapi-react-query", "description": "Fast, type-safe @tanstack/react-query client to work with your OpenAPI schema.", - "version": "0.5.3", + "version": "0.5.4", "author": { "name": "Martin Paucot", "email": "contact@martin-paucot.fr" diff --git a/packages/openapi-typescript-helpers/CHANGELOG.md b/packages/openapi-typescript-helpers/CHANGELOG.md index f46d55d0b..dd7468f92 100644 --- a/packages/openapi-typescript-helpers/CHANGELOG.md +++ b/packages/openapi-typescript-helpers/CHANGELOG.md @@ -1,5 +1,11 @@ # openapi-typescript-helpers +## 0.1.0 + +### Minor Changes + +- [#2549](https://github.com/openapi-ts/openapi-typescript/pull/2549) [`a690e52`](https://github.com/openapi-ts/openapi-typescript/commit/a690e526b7693479bc2f2f002d71a020fa5e4e16) Thanks [@abumalick](https://github.com/abumalick)! - Add readOnly/writeOnly support via `--read-write-markers` flag. When enabled, readOnly properties are wrapped with `$Read` and writeOnly properties with `$Write`. openapi-fetch uses `Readable` and `Writable` helpers to exclude these properties from responses and request bodies respectively. + ## 0.0.15 ### Patch Changes diff --git a/packages/openapi-typescript-helpers/package.json b/packages/openapi-typescript-helpers/package.json index 8ad3ca868..13d34b53f 100644 --- a/packages/openapi-typescript-helpers/package.json +++ b/packages/openapi-typescript-helpers/package.json @@ -1,7 +1,7 @@ { "name": "openapi-typescript-helpers", "description": "TypeScript helpers for consuming openapi-typescript types", - "version": "0.0.15", + "version": "0.1.0", "author": { "name": "Drew Powers", "email": "drew@pow.rs" diff --git a/packages/openapi-typescript/CHANGELOG.md b/packages/openapi-typescript/CHANGELOG.md index e0bb1de95..d0c80a7c6 100644 --- a/packages/openapi-typescript/CHANGELOG.md +++ b/packages/openapi-typescript/CHANGELOG.md @@ -1,5 +1,11 @@ # openapi-typescript +## 7.13.0 + +### Minor Changes + +- [#2549](https://github.com/openapi-ts/openapi-typescript/pull/2549) [`a690e52`](https://github.com/openapi-ts/openapi-typescript/commit/a690e526b7693479bc2f2f002d71a020fa5e4e16) Thanks [@abumalick](https://github.com/abumalick)! - Add readOnly/writeOnly support via `--read-write-markers` flag. When enabled, readOnly properties are wrapped with `$Read` and writeOnly properties with `$Write`. openapi-fetch uses `Readable` and `Writable` helpers to exclude these properties from responses and request bodies respectively. + ## 7.12.0 ### Minor Changes diff --git a/packages/openapi-typescript/package.json b/packages/openapi-typescript/package.json index 9337b2aba..e94c1f3a4 100644 --- a/packages/openapi-typescript/package.json +++ b/packages/openapi-typescript/package.json @@ -1,7 +1,7 @@ { "name": "openapi-typescript", "description": "Convert OpenAPI 3.0 & 3.1 schemas to TypeScript", - "version": "7.12.0", + "version": "7.13.0", "author": { "name": "Drew Powers", "email": "drew@pow.rs"