Skip to content

Commit 2d6973d

Browse files
authored
chore: release v11.2.1 (#569)
1 parent 644fb96 commit 2d6973d

File tree

6 files changed

+27
-11
lines changed

6 files changed

+27
-11
lines changed

CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [11.2.1](https://github.com/oxc-project/oxc-resolver/compare/oxc_resolver-v11.2.0...oxc_resolver-v11.2.1) - 2025-06-23
10+
11+
### <!-- 1 -->🐛 Bug Fixes
12+
13+
- avoid crash when encountering tsconfig circular extends ([#570](https://github.com/oxc-project/oxc-resolver/pull/570))
14+
- *(napi)* ensure `pnp_manifest` is included with `yarn_pnp` feature ([#555](https://github.com/oxc-project/oxc-resolver/pull/555))
15+
16+
### <!-- 10 -->💼 Other
17+
18+
- *(rust)* `debug = false` in `[profile.dev]` and `[profile.test]` ([#554](https://github.com/oxc-project/oxc-resolver/pull/554))
19+
20+
### <!-- 3 -->📚 Documentation
21+
22+
- add ts config
23+
- update `alias` and `fallback` options type and description ([#557](https://github.com/oxc-project/oxc-resolver/pull/557))
24+
925
## [11.2.0](https://github.com/oxc-project/oxc-resolver/compare/oxc_resolver-v11.1.0...oxc_resolver-v11.2.0) - 2025-06-05
1026

1127
### <!-- 0 -->Features

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.2.0", path = "." }
19+
oxc_resolver = { version = "11.2.1", path = "." }
2020

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

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -189,11 +189,11 @@ See [index.d.ts](https://github.com/oxc-project/oxc-resolver/blob/main/napi/inde
189189

190190
### TypeScript Configuration
191191

192-
| Field | Default | Description |
193-
|---------------------|---------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
194-
| tsconfig | None | TypeScript related config for resolver |
195-
| tsconfig.configFile | | A relative path to the tsconfig file based on `cwd`, or an absolute path of tsconfig file. |
196-
| tsconfig.references | `[]` | - 'auto': inherits from TypeScript config <br/> - `string []`: relative path (based on directory of the referencing tsconfig file) or absolute path of referenced project's tsconfig |
192+
| Field | Default | Description |
193+
| ------------------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
194+
| tsconfig | None | TypeScript related config for resolver |
195+
| tsconfig.configFile | | A relative path to the tsconfig file based on `cwd`, or an absolute path of tsconfig file. |
196+
| tsconfig.references | `[]` | - 'auto': inherits from TypeScript config <br/> - `string []`: relative path (based on directory of the referencing tsconfig file) or absolute path of referenced project's tsconfig |
197197

198198
### Unimplemented Options
199199

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.2.0"
3+
version = "11.2.1"
44
authors.workspace = true
55
categories.workspace = true
66
edition.workspace = true

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oxc-resolver",
3-
"version": "11.2.0",
3+
"version": "11.2.1",
44
"license": "MIT",
55
"description": "Oxc Resolver Node API",
66
"packageManager": "[email protected]",

0 commit comments

Comments
 (0)