Skip to content

chore: release v11.6.2 #637

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 20, 2025
Merged
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
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,33 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [11.6.2](https://github.com/oxc-project/oxc-resolver/compare/v11.6.1...v11.6.2) - 2025-08-20

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

- allow resolving `package?query#fragment` for packages with exports field ([#655](https://github.com/oxc-project/oxc-resolver/pull/655)) (by @sapphi-red) - #655

### <!-- 4 -->⚡ Performance

- improve `pattern_key_compare` ([#639](https://github.com/oxc-project/oxc-resolver/pull/639)) (by @Boshen) - #639
- most specifiers don't have escaped characters ([#636](https://github.com/oxc-project/oxc-resolver/pull/636)) (by @Boshen) - #636

### <!-- 6 -->🧪 Testing

- make tests pass on Windows ([#654](https://github.com/oxc-project/oxc-resolver/pull/654)) (by @sapphi-red) - #654

### Contributors

* @sapphi-red
* @renovate[bot]
* @Boshen

## [11.6.0](https://github.com/oxc-project/oxc-resolver/compare/v11.5.2...v11.6.0) - 2025-07-18

### <!-- 0 -->🚀 Features
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.85.0"
description = "ESM / CJS module resolution"

[workspace.dependencies]
oxc_resolver = { version = "11.6.1", path = "." }
oxc_resolver = { version = "11.6.2", path = "." }

[package]
name = "oxc_resolver"
version = "11.6.1"
version = "11.6.2"
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.6.1"
version = "11.6.2"
authors.workspace = true
categories.workspace = true
edition.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oxc-resolver",
"version": "11.6.1",
"version": "11.6.2",
"license": "MIT",
"description": "Oxc Resolver Node API",
"packageManager": "[email protected]",
Expand All @@ -24,7 +24,7 @@
"test": "vitest run -r ./napi",
"build:debug": "napi build --platform --manifest-path napi/Cargo.toml",
"build": "pnpm run build:debug --features allocator --release",
"postinstall": "napi-postinstall oxc-resolver 11.6.1 check",
"postinstall": "napi-postinstall oxc-resolver 11.6.2 check",
"postbuild:debug": "node napi/patch.mjs"
},
"dependencies": {
Expand Down
Loading