Skip to content

Commit

Permalink
Version Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Dec 27, 2024
1 parent a7aa2fe commit 62ebc53
Show file tree
Hide file tree
Showing 22 changed files with 127 additions and 55 deletions.
5 changes: 0 additions & 5 deletions .changeset/funny-donuts-call.md

This file was deleted.

31 changes: 0 additions & 31 deletions .changeset/old-gorillas-speak.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/orange-squids-press.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/wise-poets-flow.md

This file was deleted.

35 changes: 35 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,40 @@
# @hey-api/docs

## 0.9.0

### Minor Changes

- [#1511](https://github.com/hey-api/openapi-ts/pull/1511) [`4e8064d`](https://github.com/hey-api/openapi-ts/commit/4e8064d9a589e14b42d2b1a329e2436f242884da) Thanks [@mrlubos](https://github.com/mrlubos)! - feat: add watch mode

## Watch Mode

::: warning
Watch mode currently supports only remote files via URL.
:::

If your schema changes frequently, you may want to automatically regenerate the output during development. To watch your input file for changes, enable `watch` mode in your configuration or pass the `--watch` flag to the CLI.

### Config

```js
export default {
client: '@hey-api/client-fetch',
input: 'path/to/openapi.json',
output: 'src/client',
watch: true, // [!code ++]
};
```

### CLI

```sh
npx @hey-api/openapi-ts -i path/to/openapi.json -o src/client -c @hey-api/client-fetch -w
```

### Patch Changes

- [#1496](https://github.com/hey-api/openapi-ts/pull/1496) [`1e418ba`](https://github.com/hey-api/openapi-ts/commit/1e418ba760b9903326ec37009651c32e195e24a9) Thanks [@mrlubos](https://github.com/mrlubos)! - docs: split output section into multiple pages

## 0.8.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hey-api/docs",
"version": "0.8.0",
"version": "0.9.0",
"description": "Documentation for OpenaAPI TypeScript.",
"private": true,
"type": "module",
Expand Down
7 changes: 7 additions & 0 deletions examples/openapi-ts-fastify/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @example/openapi-ts-fastify

## 0.0.11

### Patch Changes

- Updated dependencies [[`e2e1410`](https://github.com/hey-api/openapi-ts/commit/e2e1410b22c0c84c40d1b1803e9650d546350cb7)]:
- @hey-api/client-fetch@0.6.0

## 0.0.10

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion examples/openapi-ts-fastify/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@example/openapi-ts-fastify",
"private": true,
"version": "0.0.10",
"version": "0.0.11",
"type": "module",
"scripts": {
"openapi-ts": "openapi-ts",
Expand Down
7 changes: 7 additions & 0 deletions examples/openapi-ts-fetch/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @example/openapi-ts-fetch

## 0.0.40

### Patch Changes

- Updated dependencies [[`e2e1410`](https://github.com/hey-api/openapi-ts/commit/e2e1410b22c0c84c40d1b1803e9650d546350cb7)]:
- @hey-api/client-fetch@0.6.0

## 0.0.39

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion examples/openapi-ts-fetch/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@example/openapi-ts-fetch",
"private": true,
"version": "0.0.39",
"version": "0.0.40",
"type": "module",
"scripts": {
"build": "tsc && vite build",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @example/openapi-ts-tanstack-angular-query-experimental

## 0.0.11

### Patch Changes

- Updated dependencies [[`e2e1410`](https://github.com/hey-api/openapi-ts/commit/e2e1410b22c0c84c40d1b1803e9650d546350cb7)]:
- @hey-api/client-fetch@0.6.0

## 0.0.10

### Patch Changes
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@example/openapi-ts-tanstack-angular-query-experimental",
"version": "0.0.10",
"version": "0.0.11",
"scripts": {
"ng": "ng",
"start": "ng serve",
Expand Down
7 changes: 7 additions & 0 deletions examples/openapi-ts-tanstack-react-query/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @example/openapi-ts-tanstack-react-query

## 0.0.22

### Patch Changes

- Updated dependencies [[`e2e1410`](https://github.com/hey-api/openapi-ts/commit/e2e1410b22c0c84c40d1b1803e9650d546350cb7)]:
- @hey-api/client-fetch@0.6.0

## 0.0.21

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion examples/openapi-ts-tanstack-react-query/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@example/openapi-ts-tanstack-react-query",
"private": true,
"version": "0.0.21",
"version": "0.0.22",
"type": "module",
"scripts": {
"build": "tsc && vite build",
Expand Down
7 changes: 7 additions & 0 deletions examples/openapi-ts-tanstack-svelte-query/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @example/openapi-ts-tanstack-svelte-query

## 0.0.22

### Patch Changes

- Updated dependencies [[`e2e1410`](https://github.com/hey-api/openapi-ts/commit/e2e1410b22c0c84c40d1b1803e9650d546350cb7)]:
- @hey-api/client-fetch@0.6.0

## 0.0.21

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion examples/openapi-ts-tanstack-svelte-query/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@example/openapi-ts-tanstack-svelte-query",
"private": true,
"version": "0.0.21",
"version": "0.0.22",
"type": "module",
"scripts": {
"build": "vite build",
Expand Down
7 changes: 7 additions & 0 deletions examples/openapi-ts-tanstack-vue-query/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @example/openapi-ts-tanstack-vue-query

## 0.0.22

### Patch Changes

- Updated dependencies [[`e2e1410`](https://github.com/hey-api/openapi-ts/commit/e2e1410b22c0c84c40d1b1803e9650d546350cb7)]:
- @hey-api/client-fetch@0.6.0

## 0.0.21

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion examples/openapi-ts-tanstack-vue-query/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@example/openapi-ts-tanstack-vue-query",
"private": true,
"version": "0.0.21",
"version": "0.0.22",
"type": "module",
"scripts": {
"build-only": "vite build",
Expand Down
6 changes: 6 additions & 0 deletions packages/client-fetch/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @hey-api/client-fetch

## 0.6.0

### Minor Changes

- [#1507](https://github.com/hey-api/openapi-ts/pull/1507) [`e2e1410`](https://github.com/hey-api/openapi-ts/commit/e2e1410b22c0c84c40d1b1803e9650d546350cb7) Thanks [@nimobeeren](https://github.com/nimobeeren)! - [BREAKING] return raw response body (of type `ReadableStream`) when `Content-Type` response header is not provided and `parseAs` is set to `auto`

## 0.5.7

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/client-fetch/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hey-api/client-fetch",
"version": "0.5.7",
"version": "0.6.0",
"description": "🚀 Fetch API client for `@hey-api/openapi-ts` codegen.",
"homepage": "https://heyapi.dev/",
"repository": {
Expand Down
35 changes: 35 additions & 0 deletions packages/openapi-ts/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,40 @@
# @hey-api/openapi-ts

## 0.61.0

### Minor Changes

- [#1511](https://github.com/hey-api/openapi-ts/pull/1511) [`4e8064d`](https://github.com/hey-api/openapi-ts/commit/4e8064d9a589e14b42d2b1a329e2436f242884da) Thanks [@mrlubos](https://github.com/mrlubos)! - feat: add watch mode

## Watch Mode

::: warning
Watch mode currently supports only remote files via URL.
:::

If your schema changes frequently, you may want to automatically regenerate the output during development. To watch your input file for changes, enable `watch` mode in your configuration or pass the `--watch` flag to the CLI.

### Config

```js
export default {
client: '@hey-api/client-fetch',
input: 'path/to/openapi.json',
output: 'src/client',
watch: true, // [!code ++]
};
```

### CLI

```sh
npx @hey-api/openapi-ts -i path/to/openapi.json -o src/client -c @hey-api/client-fetch -w
```

### Patch Changes

- [#1512](https://github.com/hey-api/openapi-ts/pull/1512) [`dd0e0a2`](https://github.com/hey-api/openapi-ts/commit/dd0e0a266153e34448fbc3db6b0f864f75483280) Thanks [@mrlubos](https://github.com/mrlubos)! - fix: add `sdk.throwOnError` option

## 0.60.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/openapi-ts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hey-api/openapi-ts",
"version": "0.60.1",
"version": "0.61.0",
"description": "🚀 The OpenAPI to TypeScript codegen. Generate clients, SDKs, validators, and more.",
"homepage": "https://heyapi.dev/",
"repository": {
Expand Down

0 comments on commit 62ebc53

Please sign in to comment.