Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,37 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [11.22.0](https://github.com/oxc-project/oxc-resolver/compare/v11.21.3...v11.22.0) - 2026-06-26

### <!-- 0 -->πŸš€ Features

- *(file_system)* make FileSystemOs cheaply cloneable and Debug ([#1230](https://github.com/oxc-project/oxc-resolver/pull/1230)) (by @Boshen)

### <!-- 2 -->🚜 Refactor

- *(package-json)* dedupe simd/serde backends behind JSON traits ([#1229](https://github.com/oxc-project/oxc-resolver/pull/1229)) (by @Boshen)

### <!-- 3 -->πŸ“š Documentation

- *(path)* trim verbose comments in normalize_with ([#1233](https://github.com/oxc-project/oxc-resolver/pull/1233)) (by @Boshen)

### <!-- 4 -->⚑ Performance

- reduce tsconfig paths binary size ([#1250](https://github.com/oxc-project/oxc-resolver/pull/1250)) (by @Boshen)
- avoid UTF-8 validation on alias and .d.ts resolve hot paths ([#1244](https://github.com/oxc-project/oxc-resolver/pull/1244)) (by @Boshen)
- *(alias)* skip UTF-8 validation of resolved path when no alias key matches ([#1240](https://github.com/oxc-project/oxc-resolver/pull/1240)) (by @Boshen)
- *(tsconfig)* reuse cached lstat to avoid redundant stat in get_tsconfig ([#1238](https://github.com/oxc-project/oxc-resolver/pull/1238)) (by @Boshen)
- *(resolve)* compute parent once in package.json scope walk ([#1235](https://github.com/oxc-project/oxc-resolver/pull/1235)) (by @Boshen)
- *(specifier)* SIMD fast-reject of specifiers without query/fragment ([#1234](https://github.com/oxc-project/oxc-resolver/pull/1234)) (by @Boshen)
- *(tsconfig)* cut allocations in glob ownership matching ([#1232](https://github.com/oxc-project/oxc-resolver/pull/1232)) (by @Boshen)
- *(path)* drop Chain<Once, Components> in normalize_with ([#1231](https://github.com/oxc-project/oxc-resolver/pull/1231)) (by @Boshen)
- *(browser-field)* fast-reject non-matching keys before normalize ([#1227](https://github.com/oxc-project/oxc-resolver/pull/1227)) (by @Boshen)

### Contributors

* @Boshen
* @renovate[bot]

## [11.21.3](https://github.com/oxc-project/oxc-resolver/compare/v11.21.2...v11.21.3) - 2026-06-18

### <!-- 1 -->πŸ› Bug Fixes
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ rust-version = "1.88.0"
description = "ESM / CJS module resolution"

[workspace.dependencies]
oxc_resolver = { version = "11.21.3", path = "." }
oxc_resolver = { version = "11.22.0", path = "." }

[package]
name = "oxc_resolver"
version = "11.21.3"
version = "11.22.0"
authors.workspace = true
categories.workspace = true
edition.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion napi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxc_resolver_napi"
version = "11.21.3"
version = "11.22.0"
authors.workspace = true
categories.workspace = true
edition.workspace = true
Expand Down
Loading
Loading