diff --git a/CHANGELOG.md b/CHANGELOG.md index d6c001c9..5aefee17 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,24 @@ # 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-17 + +### ⚡ 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 + +### Contributors + +* @renovate[bot] +* @Boshen +# 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/), diff --git a/Cargo.lock b/Cargo.lock index 650ff444..02b4ec84 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -793,7 +793,7 @@ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" [[package]] name = "oxc_resolver" -version = "11.6.1" +version = "11.6.2" dependencies = [ "cfg-if", "criterion2", @@ -820,7 +820,7 @@ dependencies = [ [[package]] name = "oxc_resolver_napi" -version = "11.6.1" +version = "11.6.2" dependencies = [ "fancy-regex 0.16.1", "mimalloc-safe", diff --git a/Cargo.toml b/Cargo.toml index ca3c49fd..cf3a4580 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 diff --git a/napi/Cargo.toml b/napi/Cargo.toml index c3d2ab4b..fcf42f1d 100644 --- a/napi/Cargo.toml +++ b/napi/Cargo.toml @@ -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 diff --git a/package.json b/package.json index 1770bc4c..f04751ae 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "oxc-resolver", - "version": "11.6.1", + "version": "11.6.2", "license": "MIT", "description": "Oxc Resolver Node API", "packageManager": "pnpm@10.14.0", @@ -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": {