Skip to content
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
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [10.0.0](https://github.com/oxc-project/oxc-resolver/compare/oxc_resolver-v9.0.2...oxc_resolver-v10.0.0) - 2025-05-20

### <!-- 0 -->Features

- *(napi)* upgrade NAPI-RS to 3.0.0-beta.1 ([#525](https://github.com/oxc-project/oxc-resolver/pull/525))

### <!-- 4 -->Refactor

- [**breaking**] set clippy `avoid-breaking-exported-api = false` ([#519](https://github.com/oxc-project/oxc-resolver/pull/519))

### <!-- 7 -->Chore

- *(deps)* lock file maintenance ([#523](https://github.com/oxc-project/oxc-resolver/pull/523))
- *(deps)* update dependency rust to v1.87.0 ([#520](https://github.com/oxc-project/oxc-resolver/pull/520))
- sync napi cfg on global_allocator
- *(napi)* adjust mimalloc features ([#515](https://github.com/oxc-project/oxc-resolver/pull/515))

## [9.0.1](https://github.com/oxc-project/oxc-resolver/compare/oxc_resolver-v9.0.0...oxc_resolver-v9.0.1) - 2025-05-09

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

[workspace.dependencies]
oxc_resolver = { version = "9.0.2", path = "." }
oxc_resolver = { version = "10.0.0", path = "." }

[package]
name = "oxc_resolver"
version = "9.0.2"
version = "10.0.0"
authors.workspace = true
categories.workspace = true
edition.workspace = true
Expand Down
22 changes: 0 additions & 22 deletions napi/CHANGELOG.md

This file was deleted.

6 changes: 3 additions & 3 deletions napi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxc_resolver_napi"
version = "9.0.2"
version = "10.0.0"
authors.workspace = true
categories.workspace = true
edition.workspace = true
Expand All @@ -22,8 +22,8 @@ doctest = false
[dependencies]
oxc_resolver = { workspace = true }

napi = { version = "3.0.0-beta.1", default-features = false, features = ["napi3", "serde-json"] }
napi-derive = { version = "3.0.0-beta.1" }
napi = { version = "3.0.0-beta", default-features = false, features = ["napi3", "serde-json"] }
napi-derive = { version = "3.0.0-beta" }
tracing-subscriber = { version = "0.3.18", default-features = false, features = ["std", "fmt"] } # Omit the `regex` feature

[target.'cfg(not(any(target_os = "linux", target_os = "freebsd", target_arch = "arm", target_family = "wasm")))'.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oxc-resolver",
"version": "9.0.2",
"version": "10.0.0",
"license": "MIT",
"description": "Oxc Resolver Node API",
"packageManager": "pnpm@10.11.0",
Expand Down
1 change: 1 addition & 0 deletions release-plz.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ changelog_include = ["oxc_resolver_napi"]
[[package]]
name = "oxc_resolver_napi"
version_group = "group"
changelog_update = false
Loading