Skip to content

Commit 032f1da

Browse files
authored
chore: release v3.0.0 (#320)
## 🤖 New release * `oxc_resolver`: 2.1.1 -> 3.0.0 (⚠️ API breaking changes) ### ⚠️ `oxc_resolver` breaking changes ``` --- failure trait_method_added: pub trait method added --- Description: A non-sealed public trait added a new method without a default implementation, which breaks downstream implementations of the trait ref: https://doc.rust-lang.org/cargo/reference/semver.html#trait-new-item-no-default impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.37.0/src/lints/trait_method_added.ron Failed in: trait method oxc_resolver::FileSystem::read_link in file /tmp/.tmptmsXac/oxc-resolver/src/file_system.rs:52 --- failure trait_method_missing: pub trait method removed or renamed --- Description: A trait method is no longer callable, and may have been renamed or removed entirely. ref: https://doc.rust-lang.org/cargo/reference/semver.html#major-any-change-to-trait-item-signatures impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.37.0/src/lints/trait_method_missing.ron Failed in: method canonicalize of trait FileSystem, previously in file /tmp/.tmpa9nJqt/oxc_resolver/src/file_system.rs:62 ``` <details><summary><i><b>Changelog</b></i></summary><p> <blockquote> ## [3.0.0](oxc_resolver-v2.1.1...oxc_resolver-v3.0.0) - 2024-12-12 ### Added - [**breaking**] replace `FileSystem::canonicalize` with `FileSystem::read_link` (#331) - faster and stable path hash for the cache (#328) ### Other - guard `load_alias` on hot path (#339) - use `as_os_str` for `Hash` and `PartialEq` operations (#338) - run clippy with `--all-targets` (#333) - increase hash size (#329) - add dprint (#326) - update dependencies - *(deps)* update rust crates - update README logo </blockquote> </p></details> --- This PR was generated with [release-plz](https://github.com/release-plz/release-plz/).
1 parent ddc8407 commit 032f1da

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [3.0.0](https://github.com/oxc-project/oxc-resolver/compare/oxc_resolver-v2.1.1...oxc_resolver-v3.0.0) - 2024-12-11
10+
11+
### Added
12+
13+
- [**breaking**] replace `FileSystem::canonicalize` with `FileSystem::read_link` (#331)
14+
15+
### Other
16+
17+
- guard `load_alias` on hot path (#339)
18+
919
## [2.1.1](https://github.com/oxc-project/oxc-resolver/compare/oxc_resolver-v2.1.0...oxc_resolver-v2.1.1) - 2024-11-22
1020

1121
### Performance

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 = "2.1.1"
7+
version = "3.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": "2.1.1",
3+
"version": "3.0.0",
44
"description": "Oxc Resolver Node API",
55
"main": "index.js",
66
"browser": "browser.js",

0 commit comments

Comments
 (0)