Skip to content

Commit 8f0784f

Browse files
oxc-botBoshen
andauthored
chore: release v11.7.0 (#661)
## 🤖 New release * `oxc_resolver`: 11.6.2 -> 11.7.0 * `oxc_resolver_napi`: 11.6.2 -> 11.7.0 <details><summary><i><b>Changelog</b></i></summary><p> ## `oxc_resolver` <blockquote> ## [11.7.0](v11.6.2...v11.7.0) - 2025-08-25 ### <!-- 0 -->🚀 Features - *(tsconfig)* support `files` / `include` / `exclude` ([#659](#659)) (by @shulaoda) - feat(tsconfig) support `allowJs` in `compilerOptions` ([#658](#658)) (by @shulaoda) - #658 - *(tsconfig)* complete inheritance of `compilerOptions` fields ([#657](#657)) (by @shulaoda) ### <!-- 1 -->🐛 Bug Fixes - *(tsconfig)* respect Yarn PnP when resolving `extends` paths ([#656](#656)) (by @shulaoda) ### <!-- 6 -->🧪 Testing - *(tsconfig)* tweak jsx `extends` tests ([#666](#666)) (by @shulaoda) ### <!-- 9 -->💼 Other - Add comprehensive tests for tsconfig extends functionality ([#660](#660)) (by @Copilot) - #660 ### Contributors * @shulaoda * @renovate[bot] * @Copilot </blockquote> </p></details> --- This PR was generated with [release-plz](https://github.com/release-plz/release-plz/). --------- Co-authored-by: Boshen <[email protected]>
1 parent 7c9388f commit 8f0784f

File tree

7 files changed

+86
-53
lines changed

7 files changed

+86
-53
lines changed

.github/workflows/release.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,13 @@ jobs:
4646
GITHUB_TOKEN: ${{ secrets.OXC_BOT_PAT }}
4747
CARGO_REGISTRY_TOKEN: ${{ steps.auth.outputs.token }}
4848

49+
- uses: oxc-project/setup-rust@cd82e1efec7fef815e2c23d296756f31c7cdc03d # v1.0.0
50+
with:
51+
cache-key: warm
52+
- uses: ./.github/actions/pnpm
53+
- name: update napi/index.js
54+
run: pnpm run build
55+
4956
- name: Bump package.json
5057
if: ${{ steps.release-plz.outputs.prs_created }}
5158
env:

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,32 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [11.7.0](https://github.com/oxc-project/oxc-resolver/compare/v11.6.2...v11.7.0) - 2025-08-25
11+
12+
### <!-- 0 -->🚀 Features
13+
14+
- *(tsconfig)* support `files` / `include` / `exclude` ([#659](https://github.com/oxc-project/oxc-resolver/pull/659)) (by @shulaoda)
15+
- feat(tsconfig) support `allowJs` in `compilerOptions` ([#658](https://github.com/oxc-project/oxc-resolver/pull/658)) (by @shulaoda) - #658
16+
- *(tsconfig)* complete inheritance of `compilerOptions` fields ([#657](https://github.com/oxc-project/oxc-resolver/pull/657)) (by @shulaoda)
17+
18+
### <!-- 1 -->🐛 Bug Fixes
19+
20+
- *(tsconfig)* respect Yarn PnP when resolving `extends` paths ([#656](https://github.com/oxc-project/oxc-resolver/pull/656)) (by @shulaoda)
21+
22+
### <!-- 6 -->🧪 Testing
23+
24+
- *(tsconfig)* tweak jsx `extends` tests ([#666](https://github.com/oxc-project/oxc-resolver/pull/666)) (by @shulaoda)
25+
26+
### <!-- 9 -->💼 Other
27+
28+
- Add comprehensive tests for tsconfig extends functionality ([#660](https://github.com/oxc-project/oxc-resolver/pull/660)) (by @Copilot) - #660
29+
30+
### Contributors
31+
32+
* @shulaoda
33+
* @renovate[bot]
34+
* @Copilot
35+
1036
## [11.6.2](https://github.com/oxc-project/oxc-resolver/compare/v11.6.1...v11.6.2) - 2025-08-20
1137

1238
### <!-- 1 -->🐛 Bug Fixes

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ rust-version = "1.85.0"
1616
description = "ESM / CJS module resolution"
1717

1818
[workspace.dependencies]
19-
oxc_resolver = { version = "11.6.2", path = "." }
19+
oxc_resolver = { version = "11.7.0", path = "." }
2020

2121
[package]
2222
name = "oxc_resolver"
23-
version = "11.6.2"
23+
version = "11.7.0"
2424
authors.workspace = true
2525
categories.workspace = true
2626
edition.workspace = true

napi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "oxc_resolver_napi"
3-
version = "11.6.2"
3+
version = "11.7.0"
44
authors.workspace = true
55
categories.workspace = true
66
edition.workspace = true

napi/index.js

Lines changed: 46 additions & 46 deletions
Large diffs are not rendered by default.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oxc-resolver",
3-
"version": "11.6.2",
3+
"version": "11.7.0",
44
"license": "MIT",
55
"description": "Oxc Resolver Node API",
66
"packageManager": "[email protected]",
@@ -24,7 +24,7 @@
2424
"test": "vitest run -r ./napi",
2525
"build:debug": "napi build --platform --manifest-path napi/Cargo.toml",
2626
"build": "pnpm run build:debug --features allocator --release",
27-
"postinstall": "napi-postinstall oxc-resolver 11.6.2 check",
27+
"postinstall": "napi-postinstall oxc-resolver 11.7.0 check",
2828
"postbuild:debug": "node napi/patch.mjs"
2929
},
3030
"dependencies": {

0 commit comments

Comments
 (0)