Skip to content

Commit 1642bb9

Browse files
authored
chore: release v4.0.0 (#357)
## 🤖 New release * `oxc_resolver`: 3.0.3 -> 4.0.0 (⚠️ API breaking changes) ### ⚠️ `oxc_resolver` breaking changes ``` --- failure inherent_method_missing: pub method removed or renamed --- Description: A publicly-visible method or associated fn is no longer available under its prior name. It may have been renamed or removed entirely. ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.37.0/src/lints/inherent_method_missing.ron Failed in: ResolverGeneric::new_with_file_system, previously in file /tmp/.tmpKVx03E/oxc_resolver/src/lib.rs:138 --- failure struct_missing: pub struct removed or renamed --- Description: A publicly-visible struct cannot be imported by its prior path. A `pub use` may have been removed, or the struct itself may have been renamed or removed entirely. ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.37.0/src/lints/struct_missing.ron Failed in: struct oxc_resolver::PackageJson, previously in file /tmp/.tmpKVx03E/oxc_resolver/src/package_json.rs:14 ``` <details><summary><i><b>Changelog</b></i></summary><p> <blockquote> ## [4.0.0](oxc_resolver-v3.0.3...oxc_resolver-v4.0.0) - 2025-01-20 ### <!-- 0 -->Features - [**breaking**] generic fs cache `type Resolver = ResolverGeneric<FsCache<FileSystemOs>>` (#358) ### <!-- 2 -->Performance - use papaya instead of dashmap (#356) </blockquote> </p></details> --- This PR was generated with [release-plz](https://github.com/release-plz/release-plz/).
1 parent 7777d62 commit 1642bb9

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [4.0.0](https://github.com/oxc-project/oxc-resolver/compare/oxc_resolver-v3.0.3...oxc_resolver-v4.0.0) - 2025-01-20
10+
11+
### <!-- 0 -->Features
12+
13+
- [**breaking**] generic fs cache `type Resolver = ResolverGeneric<FsCache<FileSystemOs>>` (#358)
14+
- [**breaking**] `PackageJson` and `TsConfig` traits (#360)
15+
16+
### <!-- 2 -->Performance
17+
18+
- use papaya instead of dashmap (#356)
19+
920
## [3.0.3](https://github.com/oxc-project/oxc-resolver/compare/oxc_resolver-v3.0.2...oxc_resolver-v3.0.3) - 2024-12-14
1021

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

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ resolver = "2"
44

55
[package]
66
name = "oxc_resolver"
7-
version = "3.0.3"
7+
version = "4.0.0"
88
authors = ["Boshen <[email protected]>"]
99
categories = ["development-tools"]
1010
edition = "2021"

npm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oxc-resolver",
3-
"version": "3.0.3",
3+
"version": "4.0.0",
44
"description": "Oxc Resolver Node API",
55
"main": "index.js",
66
"browser": "browser.js",

0 commit comments

Comments
 (0)