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

## [Unreleased]

## [11.3.0](https://github.com/oxc-project/oxc-resolver/compare/oxc_resolver-v11.2.1...oxc_resolver-v11.3.0) - 2025-06-26

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

- align yarn pnp implementation ([#576](https://github.com/oxc-project/oxc-resolver/pull/576)) (by @Boshen) - #576
- *(resolver)* allow `exports` field in `require('../directory')` ([#572](https://github.com/oxc-project/oxc-resolver/pull/572)) (by @Boshen)
- *(napi)* add `ResolveResult::builtin` information ([#575](https://github.com/oxc-project/oxc-resolver/pull/575)) (by @Boshen)

### <!-- 3 -->📚 Documentation

- document `allowPackageExportsInDirectoryResolve` (by @Boshen)

### Contributors

* @Boshen

## [11.2.1](https://github.com/oxc-project/oxc-resolver/compare/oxc_resolver-v11.2.0...oxc_resolver-v11.2.1) - 2025-06-23

### <!-- 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 = "11.2.1", path = "." }
oxc_resolver = { version = "11.3.0", path = "." }

[package]
name = "oxc_resolver"
version = "11.2.1"
version = "11.3.0"
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

According to the PR description, there are breaking API changes in both oxc_resolver and oxc_resolver_napi. The semver check failures indicate that:

  1. ResolveOptions struct has new required fields
  2. A field was removed from ResolveOptions
  3. ResolveResult has a new required field

Following semantic versioning principles, these breaking changes require a major version bump to 12.0.0 rather than the minor version bump to 11.3.0 shown here. This ensures downstream consumers are properly notified of the incompatible API changes.

Suggested change
version = "11.3.0"
version = "12.0.0"

Spotted by Diamond

Is this helpful? React 👍 or 👎 to let us know.

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.2.1"
version = "11.3.0"
authors.workspace = true
categories.workspace = true
edition.workspace = true
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": "11.2.1",
"version": "11.3.0",
"license": "MIT",
"description": "Oxc Resolver Node API",
"packageManager": "pnpm@10.12.1",
Expand Down
Loading