···11----
22-'@hey-api/openapi-ts': minor
33----
44-55-feat(parser): replace `plugin.subscribe()` with `plugin.forEach()`
66-77-### Added `plugin.forEach()` method
88-99-This method replaces the `.subscribe()` method. Additionally, `.forEach()` is executed immediately, which means we don't need the `before` and `after` events – simply move your code before and after the `.forEach()` block.
1010-1111-```ts
1212-plugin.forEach('operation', 'schema', (event) => {
1313- // do something with event
1414-});
1515-```
···11----
22-'@hey-api/openapi-ts': minor
33----
44-55-feat(tanstack-query): add name and case options
66-77-### Updated TanStack Query options
88-99-The TanStack Query plugin options have been expanded to support more naming and casing patterns. As a result, the following options have been renamed.
1010-1111-- `queryOptionsNameBuilder` renamed to `queryOptions`
1212-- `infiniteQueryOptionsNameBuilder` renamed to `infiniteQueryOptions`
1313-- `mutationOptionsNameBuilder` renamed to `mutationOptions`
1414-- `queryKeyNameBuilder` renamed to `queryKeys`
1515-- `infiniteQueryKeyNameBuilder` renamed to `infiniteQueryKeys`
-5
.changeset/soft-bulldogs-cover.md
···11----
22-'@hey-api/openapi-ts': patch
33----
44-55-fix(validators): handle additional properties object when no other properties are defined
-5
.changeset/strong-donkeys-give.md
···11----
22-'@hey-api/openapi-ts': patch
33----
44-55-fix(parser): add `meta` and `version` options to input.patch
···11# @hey-api/openapi-ts
2233+## 0.75.0
44+55+### Minor Changes
66+77+- [#2215](https://github.com/hey-api/openapi-ts/pull/2215) [`82e56e9`](https://github.com/hey-api/openapi-ts/commit/82e56e926e90d8575302db7fa4843b3663ac3971) Thanks [@mrlubos](https://github.com/mrlubos)! - feat(parser): replace `plugin.subscribe()` with `plugin.forEach()`
88+99+ ### Added `plugin.forEach()` method
1010+1111+ This method replaces the `.subscribe()` method. Additionally, `.forEach()` is executed immediately, which means we don't need the `before` and `after` events – simply move your code before and after the `.forEach()` block.
1212+1313+ ```ts
1414+ plugin.forEach('operation', 'schema', (event) => {
1515+ // do something with event
1616+ });
1717+ ```
1818+1919+- [#2218](https://github.com/hey-api/openapi-ts/pull/2218) [`e5ff024`](https://github.com/hey-api/openapi-ts/commit/e5ff024d4ff2c715276fda88269e7c1668cb929e) Thanks [@mrlubos](https://github.com/mrlubos)! - feat(tanstack-query): add name and case options
2020+2121+ ### Updated TanStack Query options
2222+2323+ The TanStack Query plugin options have been expanded to support more naming and casing patterns. As a result, the following options have been renamed.
2424+2525+ - `queryOptionsNameBuilder` renamed to `queryOptions`
2626+ - `infiniteQueryOptionsNameBuilder` renamed to `infiniteQueryOptions`
2727+ - `mutationOptionsNameBuilder` renamed to `mutationOptions`
2828+ - `queryKeyNameBuilder` renamed to `queryKeys`
2929+ - `infiniteQueryKeyNameBuilder` renamed to `infiniteQueryKeys`
3030+3131+### Patch Changes
3232+3333+- [#2219](https://github.com/hey-api/openapi-ts/pull/2219) [`4df6fa0`](https://github.com/hey-api/openapi-ts/commit/4df6fa0540c4e0e0adce485cb813ea57bf97b908) Thanks [@mrlubos](https://github.com/mrlubos)! - fix: make output pass stricter tsconfig configurations"
3434+3535+- [#2213](https://github.com/hey-api/openapi-ts/pull/2213) [`2ffb612`](https://github.com/hey-api/openapi-ts/commit/2ffb61253b302d746c4f08beae9daeec345343f6) Thanks [@mrlubos](https://github.com/mrlubos)! - fix(validators): handle additional properties object when no other properties are defined
3636+3737+- [#2216](https://github.com/hey-api/openapi-ts/pull/2216) [`1456f87`](https://github.com/hey-api/openapi-ts/commit/1456f878cbe7ad7d2894a3ba8dddcc8b79d04920) Thanks [@mrlubos](https://github.com/mrlubos)! - fix(parser): add `meta` and `version` options to input.patch
3838+3939+- [#2210](https://github.com/hey-api/openapi-ts/pull/2210) [`5b1362a`](https://github.com/hey-api/openapi-ts/commit/5b1362ae8bebf9aef846140e1400270131cbe64f) Thanks [@mrlubos](https://github.com/mrlubos)! - fix(cli): correctly detect watch mode
4040+341## 0.74.0
442543### Minor Changes
+1-1
packages/openapi-ts/package.json
···11{
22 "name": "@hey-api/openapi-ts",
33- "version": "0.74.0",
33+ "version": "0.75.0",
44 "description": "🚀 The OpenAPI to TypeScript codegen. Generate clients, SDKs, validators, and more.",
55 "homepage": "https://heyapi.dev/",
66 "repository": {