Skip to content

Commit 5709d33

Browse files
openapi-ts-botgithub-actions[bot]drwpow
authored
[ci] release (#2611)
* [ci] release * Bump version from 1.0.0 to 0.5.4 * Update version to 0.5.4 in CHANGELOG.md --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Drew Powers <drew@pow.rs>
1 parent 1359e23 commit 5709d33

File tree

10 files changed

+37
-16
lines changed

10 files changed

+37
-16
lines changed

.changeset/empty-ghosts-sip.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/happy-pans-run.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

packages/openapi-fetch/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# openapi-fetch
22

3+
## 0.17.0
4+
5+
### Minor Changes
6+
7+
- [#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<T>` and writeOnly properties with `$Write<T>`. openapi-fetch uses `Readable<T>` and `Writable<T>` helpers to exclude these properties from responses and request bodies respectively.
8+
9+
### Patch Changes
10+
11+
- [#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
12+
13+
- Updated dependencies [[`a690e52`](https://github.com/openapi-ts/openapi-typescript/commit/a690e526b7693479bc2f2f002d71a020fa5e4e16)]:
14+
- openapi-typescript-helpers@0.1.0
15+
316
## 0.16.0
417

518
### Minor Changes

packages/openapi-fetch/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "openapi-fetch",
33
"description": "Fast, type-safe fetch client for your OpenAPI schema. Only 6 kb (min). Works with React, Vue, Svelte, or vanilla JS.",
4-
"version": "0.16.0",
4+
"version": "0.17.0",
55
"author": {
66
"name": "Drew Powers",
77
"email": "drew@pow.rs"

packages/openapi-react-query/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# openapi-react-query
22

3+
## 0.5.4
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`9350ddf`](https://github.com/openapi-ts/openapi-typescript/commit/9350ddfcd44b661a5288667ebfcf298868dd9784), [`a690e52`](https://github.com/openapi-ts/openapi-typescript/commit/a690e526b7693479bc2f2f002d71a020fa5e4e16)]:
8+
- openapi-fetch@0.17.0
9+
- openapi-typescript-helpers@0.1.0
10+
311
## 0.5.3
412

513
### Patch Changes

packages/openapi-react-query/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "openapi-react-query",
33
"description": "Fast, type-safe @tanstack/react-query client to work with your OpenAPI schema.",
4-
"version": "0.5.3",
4+
"version": "0.5.4",
55
"author": {
66
"name": "Martin Paucot",
77
"email": "contact@martin-paucot.fr"

packages/openapi-typescript-helpers/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# openapi-typescript-helpers
22

3+
## 0.1.0
4+
5+
### Minor Changes
6+
7+
- [#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<T>` and writeOnly properties with `$Write<T>`. openapi-fetch uses `Readable<T>` and `Writable<T>` helpers to exclude these properties from responses and request bodies respectively.
8+
39
## 0.0.15
410

511
### Patch Changes

packages/openapi-typescript-helpers/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "openapi-typescript-helpers",
33
"description": "TypeScript helpers for consuming openapi-typescript types",
4-
"version": "0.0.15",
4+
"version": "0.1.0",
55
"author": {
66
"name": "Drew Powers",
77
"email": "drew@pow.rs"

packages/openapi-typescript/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# openapi-typescript
22

3+
## 7.13.0
4+
5+
### Minor Changes
6+
7+
- [#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<T>` and writeOnly properties with `$Write<T>`. openapi-fetch uses `Readable<T>` and `Writable<T>` helpers to exclude these properties from responses and request bodies respectively.
8+
39
## 7.12.0
410

511
### Minor Changes

packages/openapi-typescript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "openapi-typescript",
33
"description": "Convert OpenAPI 3.0 & 3.1 schemas to TypeScript",
4-
"version": "7.12.0",
4+
"version": "7.13.0",
55
"author": {
66
"name": "Drew Powers",
77
"email": "drew@pow.rs"

0 commit comments

Comments
 (0)