fork of hey-api/openapi-ts because I need some additional things
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #3362 from hey-api/changeset-release/main

ci: release

authored by

Lubos and committed by
GitHub
1f6fb21a e9357b50

+61 -59
-5
.changeset/afraid-bears-relax.md
··· 1 - --- 2 - "@hey-api/openapi-ts": patch 3 - --- 4 - 5 - **plugin(@hey-api/transformers)**: fix: false positive warning for discriminated `oneOf` schemas
-5
.changeset/fix-nuxt-async-data-options.md
··· 1 - --- 2 - "@hey-api/openapi-ts": patch 3 - --- 4 - 5 - **plugin(@hey-api/client-nuxt)**: fix: forward `asyncDataOptions` to `useFetch` and `useLazyFetch`
-5
.changeset/fluffy-words-dress.md
··· 1 - --- 2 - "@hey-api/shared": minor 3 - --- 4 - 5 - **utils**: rename `isTopLevelComponentRef` to `isTopLevelComponent`
-5
.changeset/little-lobsters-think.md
··· 1 - --- 2 - "@hey-api/openapi-ts": patch 3 - --- 4 - 5 - **output**: detect `importFileExtension` from tsconfig `module` option
-5
.changeset/lovely-moons-taste.md
··· 1 - --- 2 - "@hey-api/openapi-ts": patch 3 - --- 4 - 5 - **plugin(@hey-api/typescript)**: fix: deduplicate enum keys to avoid name collision
-5
.changeset/rare-glasses-smile.md
··· 1 - --- 2 - "@hey-api/openapi-ts": patch 3 - --- 4 - 5 - **plugin(@hey-api/client-nuxt)**: unwrap `ComputedRef` body before initial serialization
-5
.changeset/rude-wolves-pump.md
··· 1 - --- 2 - "@hey-api/openapi-ts": patch 3 - --- 4 - 5 - **plugin(@angular/common)**: use generics for HttpRequests
-5
.changeset/shy-falcons-press.md
··· 1 - --- 2 - "@hey-api/openapi-ts": patch 3 - --- 4 - 5 - **plugin(@hey-api/transformers)**: fix: handle `$ref` keywords in `allOf` compositions
-5
.changeset/slick-queens-buy.md
··· 1 - --- 2 - "@hey-api/json-schema-ref-parser": minor 3 - --- 4 - 5 - **feat**: clean up dependencies
-5
.changeset/smart-comics-talk.md
··· 1 - --- 2 - "@hey-api/openapi-ts": patch 3 - --- 4 - 5 - **internal**: use shared schema processor
-5
.changeset/smooth-maps-repeat.md
··· 1 - --- 2 - "@hey-api/json-schema-ref-parser": patch 3 - --- 4 - 5 - **fix**: pass seen references through crawl stack
+11
packages/json-schema-ref-parser/CHANGELOG.md
··· 1 + # @hey-api/json-schema-ref-parser 2 + 3 + ## 1.3.0 4 + 5 + ### Minor Changes 6 + 7 + - **feat**: clean up dependencies ([#3386](https://github.com/hey-api/openapi-ts/pull/3386)) ([`e979b78`](https://github.com/hey-api/openapi-ts/commit/e979b789a052f7bbcfe4474ff8db2f733e23f2bb)) by [@mrlubos](https://github.com/mrlubos) 8 + 9 + ### Patch Changes 10 + 11 + - **fix**: pass seen references through crawl stack ([#3387](https://github.com/hey-api/openapi-ts/pull/3387)) ([`072a9ae`](https://github.com/hey-api/openapi-ts/commit/072a9ae7f336d5c3e5d70085ded21366eeed186d)) by [@mrlubos](https://github.com/mrlubos)
+1 -1
packages/json-schema-ref-parser/package.json
··· 1 1 { 2 2 "name": "@hey-api/json-schema-ref-parser", 3 - "version": "1.2.4", 3 + "version": "1.3.0", 4 4 "description": "Parse, Resolve, and Dereference JSON Schema $ref pointers", 5 5 "keywords": [ 6 6 "$ref",
+9
packages/openapi-python/CHANGELOG.md
··· 1 1 # @hey-api/openapi-python 2 2 3 + ## 0.0.7 4 + 5 + ### Patch Changes 6 + 7 + ### Updated Dependencies: 8 + 9 + - @hey-api/shared@0.2.0 10 + - @hey-api/json-schema-ref-parser@1.3.0 11 + 3 12 ## 0.0.6 4 13 5 14 ### Patch Changes
+1 -1
packages/openapi-python/package.json
··· 1 1 { 2 2 "name": "@hey-api/openapi-python", 3 - "version": "0.0.6", 3 + "version": "0.0.7", 4 4 "private": true, 5 5 "description": "🐍 OpenAPI to Python codegen.", 6 6 "keywords": [
+25
packages/openapi-ts/CHANGELOG.md
··· 1 1 # @hey-api/openapi-ts 2 2 3 + ## 0.92.4 4 + 5 + ### Patch Changes 6 + 7 + - **plugin(@hey-api/transformers)**: fix: false positive warning for discriminated `oneOf` schemas ([#3379](https://github.com/hey-api/openapi-ts/pull/3379)) ([`1f7c262`](https://github.com/hey-api/openapi-ts/commit/1f7c262f17b45093ae19d060ae26270c91b3ad41)) by [@copilot-swe-agent](https://github.com/apps/copilot-swe-agent) 8 + 9 + - **plugin(@hey-api/client-nuxt)**: fix: forward `asyncDataOptions` to `useFetch` and `useLazyFetch` ([#3382](https://github.com/hey-api/openapi-ts/pull/3382)) ([`a4b7399`](https://github.com/hey-api/openapi-ts/commit/a4b73998e1985f236aee1bbe76611e8d3413f4c6)) by [@rigtigeEmil](https://github.com/rigtigeEmil) 10 + 11 + - **output**: detect `importFileExtension` from tsconfig `module` option ([#3380](https://github.com/hey-api/openapi-ts/pull/3380)) ([`4cbc307`](https://github.com/hey-api/openapi-ts/commit/4cbc307862e4357a42afe8fb595036f86279babd)) by [@copilot-swe-agent](https://github.com/apps/copilot-swe-agent) 12 + 13 + - **plugin(@hey-api/typescript)**: fix: deduplicate enum keys to avoid name collision ([#3376](https://github.com/hey-api/openapi-ts/pull/3376)) ([`54138b6`](https://github.com/hey-api/openapi-ts/commit/54138b6771618d464f3b930fdf7af23290c00076)) by [@spikesagal](https://github.com/spikesagal) 14 + 15 + - **plugin(@hey-api/client-nuxt)**: unwrap `ComputedRef` body before initial serialization ([#3361](https://github.com/hey-api/openapi-ts/pull/3361)) ([`ca52649`](https://github.com/hey-api/openapi-ts/commit/ca52649a2f479478cc2842677c21c1bcfac69160)) by [@rigtigeEmil](https://github.com/rigtigeEmil) 16 + 17 + - **plugin(@angular/common)**: use generics for HttpRequests ([#3384](https://github.com/hey-api/openapi-ts/pull/3384)) ([`a94f50f`](https://github.com/hey-api/openapi-ts/commit/a94f50fef84f2387b9ca686ff47370030007e7a2)) by [@quartepie](https://github.com/quartepie) 18 + 19 + - **plugin(@hey-api/transformers)**: fix: handle `$ref` keywords in `allOf` compositions ([#3374](https://github.com/hey-api/openapi-ts/pull/3374)) ([`4b781aa`](https://github.com/hey-api/openapi-ts/commit/4b781aa18bc9f5bfde302c0359bfe9f3ad3effa7)) by [@copilot-swe-agent](https://github.com/apps/copilot-swe-agent) 20 + 21 + - **internal**: use shared schema processor ([#3370](https://github.com/hey-api/openapi-ts/pull/3370)) ([`27cd91f`](https://github.com/hey-api/openapi-ts/commit/27cd91f530bd77da6ea95df1704b2947917b4626)) by [@mrlubos](https://github.com/mrlubos) 22 + 23 + ### Updated Dependencies: 24 + 25 + - @hey-api/shared@0.2.0 26 + - @hey-api/json-schema-ref-parser@1.3.0 27 + 3 28 ## 0.92.3 4 29 5 30 ### Patch Changes
+1 -1
packages/openapi-ts/package.json
··· 1 1 { 2 2 "name": "@hey-api/openapi-ts", 3 - "version": "0.92.3", 3 + "version": "0.92.4", 4 4 "description": "🌀 OpenAPI to TypeScript codegen. Production-ready SDKs, Zod schemas, TanStack Query hooks, and 20+ plugins. Used by Vercel, OpenCode, and PayPal.", 5 5 "keywords": [ 6 6 "angular",
+12
packages/shared/CHANGELOG.md
··· 1 1 # @hey-api/shared 2 2 3 + ## 0.2.0 4 + 5 + ### Minor Changes 6 + 7 + - **utils**: rename `isTopLevelComponentRef` to `isTopLevelComponent` ([#3370](https://github.com/hey-api/openapi-ts/pull/3370)) ([`27cd91f`](https://github.com/hey-api/openapi-ts/commit/27cd91f530bd77da6ea95df1704b2947917b4626)) by [@mrlubos](https://github.com/mrlubos) 8 + 9 + ### Patch Changes 10 + 11 + ### Updated Dependencies: 12 + 13 + - @hey-api/json-schema-ref-parser@1.3.0 14 + 3 15 ## 0.1.2 4 16 5 17 ### Patch Changes
+1 -1
packages/shared/package.json
··· 1 1 { 2 2 "name": "@hey-api/shared", 3 - "version": "0.1.2", 3 + "version": "0.2.0", 4 4 "description": "Temporary home for cross-package utilities. Contents will migrate to proper packages as architecture stabilizes.", 5 5 "homepage": "https://heyapi.dev/", 6 6 "bugs": {