Skip to content

Commit 727e014

Browse files
ci: release
1 parent 683dd22 commit 727e014

File tree

6 files changed

+37
-42
lines changed

6 files changed

+37
-42
lines changed

.changeset/dry-jeans-ring.md

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

.changeset/pretty-deers-change.md

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

.changeset/red-bats-eat.md

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

.changeset/refactor-pinia-colada-query.md

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

packages/openapi-ts/CHANGELOG.md

Lines changed: 36 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,40 @@
11
# @hey-api/openapi-ts
22

3+
## 0.85.0
4+
5+
### Minor Changes
6+
7+
- refactor(config): replace 'off' with null to disable options
8+
9+
### Updated `output` options
10+
11+
We made the `output` configuration more consistent by using `null` to represent disabled options. This change does not affect boolean options.
12+
13+
````js
14+
export default {
15+
input: 'hey-api/backend', // sign up at app.heyapi.dev
16+
output: {
17+
format: null,
18+
lint: null,
19+
path: 'src/client',
20+
tsConfigPath: null,
21+
},
22+
};
23+
``` ([#2718](https://github.com/hey-api/openapi-ts/pull/2718)) ([`fcdd73b`](https://github.com/hey-api/openapi-ts/commit/fcdd73b816d74babf47e6a1f46032f5b8ebb4b48)) by [@mrlubos](https://github.com/mrlubos)
24+
25+
### Patch Changes
26+
27+
28+
- feat: support multiple configurations ([#2602](https://github.com/hey-api/openapi-ts/pull/2602)) ([`c84f10e`](https://github.com/hey-api/openapi-ts/commit/c84f10e5a1b7c54320e3ef5edfc9d2fffe5183e9)) by [@carson2222](https://github.com/carson2222)
29+
30+
- feat(config): add `output.importFileExtension` option ([#2718](https://github.com/hey-api/openapi-ts/pull/2718)) ([`fcdd73b`](https://github.com/hey-api/openapi-ts/commit/fcdd73b816d74babf47e6a1f46032f5b8ebb4b48)) by [@mrlubos](https://github.com/mrlubos)
31+
32+
- feat(pinia-colada): query options use `defineQueryOptions`
33+
34+
### Updated Pinia Colada query options
35+
36+
Pinia Colada query options now use `defineQueryOptions` to improve reactivity support. Instead of calling the query options function, you can use one of the [following approaches](https://heyapi.dev/openapi-ts/migrating#updated-pinia-colada-query-options). ([#2610](https://github.com/hey-api/openapi-ts/pull/2610)) ([`33e6b31`](https://github.com/hey-api/openapi-ts/commit/33e6b31fa2ab840dd4e6e2e3e0fbc6e207ccdf7e)) by [@brolnickij](https://github.com/brolnickij)
37+
338
## 0.84.4
439

540
### Patch Changes
@@ -76,7 +111,7 @@ export default {
76111
path: 'src/client',
77112
},
78113
};
79-
```
114+
````
80115

81116
By default, we append every file name with a `.gen` suffix to highlight it's automatically generated. You can customize or disable this suffix using the `fileName.suffix` option.
82117

packages/openapi-ts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hey-api/openapi-ts",
3-
"version": "0.84.4",
3+
"version": "0.85.0",
44
"description": "🚀 The OpenAPI to TypeScript codegen. Generate clients, SDKs, validators, and more.",
55
"homepage": "https://heyapi.dev/",
66
"repository": {

0 commit comments

Comments
 (0)