Skip to content

Commit

Permalink
chore: release v3.0.0 (#320)
Browse files Browse the repository at this point in the history
## 🤖 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/).
  • Loading branch information
Boshen authored Dec 12, 2024
1 parent ddc8407 commit 032f1da
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [3.0.0](https://github.com/oxc-project/oxc-resolver/compare/oxc_resolver-v2.1.1...oxc_resolver-v3.0.0) - 2024-12-11

### Added

- [**breaking**] replace `FileSystem::canonicalize` with `FileSystem::read_link` (#331)

### Other

- guard `load_alias` on hot path (#339)

## [2.1.1](https://github.com/oxc-project/oxc-resolver/compare/oxc_resolver-v2.1.0...oxc_resolver-v2.1.1) - 2024-11-22

### Performance
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ resolver = "2"

[package]
name = "oxc_resolver"
version = "2.1.1"
version = "3.0.0"
authors = ["Boshen <boshenc@gmail.com>"]
categories = ["development-tools"]
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion npm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oxc-resolver",
"version": "2.1.1",
"version": "3.0.0",
"description": "Oxc Resolver Node API",
"main": "index.js",
"browser": "browser.js",
Expand Down

0 comments on commit 032f1da

Please sign in to comment.