Skip to content

Commit 2d80b30

Browse files
authored
Merge branch 'main' into update-release-please
2 parents 176e77d + d10922f commit 2d80b30

24 files changed

Lines changed: 882 additions & 64 deletions

.all-contributorsrc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,13 @@
119119
"avatar_url": "https://avatars.githubusercontent.com/u/172711?v=4",
120120
"profile": "https://tverdohleb.com/",
121121
"contributions": ["bug", "code", "ideas"]
122+
},
123+
{
124+
"login": "hayawata3626",
125+
"name": "Isco",
126+
"avatar_url": "https://avatars.githubusercontent.com/u/15213369?v=4",
127+
"profile": "https://zenn.dev/watahaya",
128+
"contributions": ["code"]
122129
}
123130
],
124131
"contributorsPerLine": 7

.github/workflows/release-please.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ permissions:
77
contents: write
88
issues: write
99
pull-requests: write
10+
id-token: write
1011

1112
name: Run Release Please
1213
jobs:
@@ -41,7 +42,5 @@ jobs:
4142
# need to publish all unpublished versions to NPM here
4243
# See: https://github.com/lerna/lerna/tree/main/commands/publish#bump-from-package
4344
- name: Publish to NPM
44-
if: ${{ steps.release.outputs.release_created }}
45-
env:
46-
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
45+
if: ${{ steps.release.outputs.releases_created }}
4746
run: npx lerna publish from-package --no-push --no-private --no-verify-access --yes

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"cli": "3.1.0",
3-
"plugins/typescript": "11.0.1"
3+
"plugins/typescript": "11.1.0"
44
}

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
6262
3. **Configure the Fetcher** (optional)
6363

64-
After the first step you should see a file called `{namespace}Fetcher.ts` in your ouput directory. This file
64+
After the first step you should see a file called `{namespace}Fetcher.ts` in your ouput directory.
6565

6666
By default it uses the built-in Fetch API, you are free to change this to your fetching library of choice (Axios, Got etc.)
6767

@@ -279,6 +279,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
279279
</tr>
280280
<tr>
281281
<td align="center" valign="top" width="14.28%"><a href="https://tverdohleb.com/"><img src="https://avatars.githubusercontent.com/u/172711?v=4?s=100" width="100px;" alt="Valeriy"/><br /><sub><b>Valeriy</b></sub></a><br /><a href="https://github.com/fabien0102/openapi-codegen/issues?q=author%3Atverdohleb" title="Bug reports">🐛</a> <a href="https://github.com/fabien0102/openapi-codegen/commits?author=tverdohleb" title="Code">💻</a> <a href="#ideas-tverdohleb" title="Ideas, Planning, & Feedback">🤔</a></td>
282+
<td align="center" valign="top" width="14.28%"><a href="https://zenn.dev/watahaya"><img src="https://avatars.githubusercontent.com/u/15213369?v=4?s=100" width="100px;" alt="Isco"/><br /><sub><b>Isco</b></sub></a><br /><a href="https://github.com/fabien0102/openapi-codegen/commits?author=hayawata3626" title="Code">💻</a></td>
282283
</tr>
283284
</tbody>
284285
</table>

plugins/typescript/CHANGELOG.md

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

3+
## [11.1.0](https://github.com/fabien0102/openapi-codegen/compare/typescript-v11.0.1...typescript-v11.1.0) (2025-10-01)
4+
5+
6+
### Features
7+
8+
* add support for union type nodes in shouldExtractNode function ([#318](https://github.com/fabien0102/openapi-codegen/issues/318)) ([c555865](https://github.com/fabien0102/openapi-codegen/commit/c555865557025bb69bf9d5e0dc589a965829ae4f))
9+
* **typescript:** add useTypeImports option ([#314](https://github.com/fabien0102/openapi-codegen/issues/314)) ([6c16829](https://github.com/fabien0102/openapi-codegen/commit/6c168296cae316a8ddf11b85eb8636e587656fd6))
10+
311
## [11.0.1](https://github.com/fabien0102/openapi-codegen/compare/typescript-v11.0.0...typescript-v11.0.1) (2025-02-17)
412

513

plugins/typescript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@openapi-codegen/typescript",
3-
"version": "11.0.1",
3+
"version": "11.1.0",
44
"description": "OpenAPI Codegen typescript generators",
55
"main": "lib/index.js",
66
"types": "lib/index.d.ts",

0 commit comments

Comments
 (0)