Skip to content

Commit e590a17

Browse files
committed
chore: release v11.14.0
1 parent 3a9d5e7 commit e590a17

File tree

6 files changed

+85
-58
lines changed

6 files changed

+85
-58
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [11.14.0](https://github.com/oxc-project/oxc-resolver/compare/v11.13.2...v11.14.0) - 2025-11-18
11+
12+
### <!-- 0 -->🚀 Features
13+
14+
- add many.rs example for profiling resolver with many packages ([#836](https://github.com/oxc-project/oxc-resolver/pull/836)) (by @Boshen) - #836
15+
16+
### <!-- 1 -->🐛 Bug Fixes
17+
18+
- do not resolve to `node_modules/pacakge/index` ([#849](https://github.com/oxc-project/oxc-resolver/pull/849)) (by @Boshen) - #849
19+
- use std::fs::canonicalize as a fallback when canonicalize fails ([#835](https://github.com/oxc-project/oxc-resolver/pull/835)) (by @Boshen) - #835
20+
21+
### <!-- 2 -->🚜 Refactor
22+
23+
- remove CachedPathImpl::canonicaling ([#834](https://github.com/oxc-project/oxc-resolver/pull/834)) (by @Boshen) - #834
24+
25+
### <!-- 4 -->⚡ Performance
26+
27+
- do not canonicalize the entry path ([#848](https://github.com/oxc-project/oxc-resolver/pull/848)) (by @Boshen) - #848
28+
- remove Result from `CachedPathImpl::canonicalized` ([#847](https://github.com/oxc-project/oxc-resolver/pull/847)) (by @Boshen) - #847
29+
- fast path for node_modules/package ([#839](https://github.com/oxc-project/oxc-resolver/pull/839)) (by @Boshen) - #839
30+
- cache canonicalization results at every recursion level ([#843](https://github.com/oxc-project/oxc-resolver/pull/843)) (by @Boshen) - #843
31+
- use IdentityHasher for visited set to avoid double hashing ([#837](https://github.com/oxc-project/oxc-resolver/pull/837)) (by @Boshen) - #837
32+
33+
### Contributors
34+
35+
* @Boshen
36+
1037
## [11.13.2](https://github.com/oxc-project/oxc-resolver/compare/v11.13.1...v11.13.2) - 2025-11-12
1138

1239
### <!-- 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.88.0"
1616
description = "ESM / CJS module resolution"
1717

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

2121
[package]
2222
name = "oxc_resolver"
23-
version = "11.13.2"
23+
version = "11.14.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.13.2"
3+
version = "11.14.0"
44
authors.workspace = true
55
categories.workspace = true
66
edition.workspace = true

0 commit comments

Comments
 (0)