From 419ace93d132ca8226062e9c4e1cf1cbf533770e Mon Sep 17 00:00:00 2001 From: Boshen Date: Thu, 25 Apr 2024 00:56:18 +0800 Subject: [PATCH] Release v1.7.0 --- CHANGELOG.md | 22 ++++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- npm/package.json | 2 +- 4 files changed, 25 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 18143748..706d4dd5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.7.0](https://github.com/oxc-project/oxc_resolver/compare/oxc_resolver-v1.6.7...oxc_resolver-v1.7.0) - 2024-04-24 + +### Added +- add `imports_fields` option ([#138](https://github.com/oxc-project/oxc_resolver/pull/138)) +- substitute path that starts with `${configDir}/` in tsconfig.compilerOptions.paths ([#136](https://github.com/oxc-project/oxc_resolver/pull/136)) + +### Fixed +- RootsPlugin debug_assert on windows ([#145](https://github.com/oxc-project/oxc_resolver/pull/145)) +- RootsPlugin should fall through if it fails to resolve the roots ([#144](https://github.com/oxc-project/oxc_resolver/pull/144)) +- lazily read package.json.exports for shared resolvers ([#137](https://github.com/oxc-project/oxc_resolver/pull/137)) + +### Other +- remove `PartialEq` and `Eq` from `Specifier` ([#148](https://github.com/oxc-project/oxc_resolver/pull/148)) +- add test case for tsconfig paths alias fall through ([#147](https://github.com/oxc-project/oxc_resolver/pull/147)) +- use `cargo shear` +- fix test not failing the jobs property ([#146](https://github.com/oxc-project/oxc_resolver/pull/146)) +- lazily read package.json.browser_fields for shared resolvers ([#142](https://github.com/oxc-project/oxc_resolver/pull/142)) +- avoid an extra allocation in `load_extensions` +- ignore code coverage for `Display` on `ResolveOptions` ([#140](https://github.com/oxc-project/oxc_resolver/pull/140)) +- remove the browser field lookup in `resolve_esm_match` ([#141](https://github.com/oxc-project/oxc_resolver/pull/141)) +- remove the extra `condition_names` from `package_exports_resolve` + ## [1.6.7](https://github.com/oxc-project/oxc_resolver/compare/oxc_resolver-v1.6.6...oxc_resolver-v1.6.7) - 2024-04-22 ### Fixed diff --git a/Cargo.lock b/Cargo.lock index b48d751a..343936a8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -422,7 +422,7 @@ dependencies = [ [[package]] name = "oxc_resolver" -version = "1.6.7" +version = "1.7.0" dependencies = [ "criterion2", "dashmap", diff --git a/Cargo.toml b/Cargo.toml index 2f8fb711..3c6aac6e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["napi"] resolver = "2" [package] -version = "1.6.7" +version = "1.7.0" name = "oxc_resolver" authors = ["Boshen "] categories = ["development-tools"] diff --git a/npm/package.json b/npm/package.json index 06718b77..da474123 100644 --- a/npm/package.json +++ b/npm/package.json @@ -1,6 +1,6 @@ { "name": "oxc-resolver", - "version": "1.6.7", + "version": "1.7.0", "description": "Oxc Resolver Node API", "main": "index.js", "browser": "browser.js",