diff --git a/Cargo.lock b/Cargo.lock index 816b0e517e658..1633f8d7c692b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1816,7 +1816,7 @@ dependencies = [ [[package]] name = "oxc_language_server" -version = "1.4.0" +version = "1.5.0" dependencies = [ "env_logger", "futures", @@ -1837,7 +1837,7 @@ dependencies = [ [[package]] name = "oxc_linter" -version = "1.4.0" +version = "1.5.0" dependencies = [ "bitflags 2.9.1", "constcat", @@ -2318,7 +2318,7 @@ dependencies = [ [[package]] name = "oxlint" -version = "1.4.0" +version = "1.5.0" dependencies = [ "bpaf", "cow-utils", diff --git a/apps/oxlint/CHANGELOG.md b/apps/oxlint/CHANGELOG.md index 63d0afa952de9..a195f4bba9300 100644 --- a/apps/oxlint/CHANGELOG.md +++ b/apps/oxlint/CHANGELOG.md @@ -4,6 +4,13 @@ All notable changes to this package will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0). +## [1.5.0] - 2025-07-02 + +### 🐛 Bug Fixes + +- 4b2c658 oxlint: Make `--version` exit code be `0` (#11986) (camc314) + + ## [1.4.0] - 2025-06-30 ### 🚀 Features diff --git a/apps/oxlint/Cargo.toml b/apps/oxlint/Cargo.toml index bdf93beb65fd4..326b279f7259f 100644 --- a/apps/oxlint/Cargo.toml +++ b/apps/oxlint/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxlint" -version = "1.4.0" +version = "1.5.0" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_language_server/CHANGELOG.md b/crates/oxc_language_server/CHANGELOG.md index 2d1c0e2e0f277..dc264808a38cf 100644 --- a/crates/oxc_language_server/CHANGELOG.md +++ b/crates/oxc_language_server/CHANGELOG.md @@ -5,6 +5,7 @@ All notable changes to this package will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0). + ## [1.3.0] - 2025-06-23 ### 🚀 Features diff --git a/crates/oxc_language_server/Cargo.toml b/crates/oxc_language_server/Cargo.toml index fc5f448c86b73..96772ae923529 100644 --- a/crates/oxc_language_server/Cargo.toml +++ b/crates/oxc_language_server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_language_server" -version = "1.4.0" +version = "1.5.0" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_linter/CHANGELOG.md b/crates/oxc_linter/CHANGELOG.md index c2f7e8d09da18..1db827a048cf1 100644 --- a/crates/oxc_linter/CHANGELOG.md +++ b/crates/oxc_linter/CHANGELOG.md @@ -4,6 +4,24 @@ All notable changes to this package will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0). +## [1.5.0] - 2025-07-02 + +### 🚀 Features + +- 899b8b4 linter: Allow namespace re-export in `import/no-cycle` (#11995) (Boshen) + +### 🐛 Bug Fixes + +- f732589 linter: Panic in `consistent-type-imports` when the source contains a `{` (#12002) (camc314) + +### 🚜 Refactor + +- f7a2ae4 ast: Add `AstKind` for `AssignmentTargetPropertyIdentifier`, `AssignmentTargetPropertyProperty` (#11985) (camc314) +- cfa52c2 ast: Add `AstKind` for `AssignmentTargetRest` (#11984) (camc314) +- 3f91f24 linter: Remove `RulesCache` (#11981) (camc314) +- 54582cb ast: Add `AstKind` for `BindingProperty` (#11974) (camc314) + + ## [1.4.0] - 2025-06-30 ### 🚀 Features diff --git a/crates/oxc_linter/Cargo.toml b/crates/oxc_linter/Cargo.toml index b09c9eb801074..2c09fd630314d 100644 --- a/crates/oxc_linter/Cargo.toml +++ b/crates/oxc_linter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_linter" -version = "1.4.0" +version = "1.5.0" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/editors/vscode/CHANGELOG.md b/editors/vscode/CHANGELOG.md index f1637fe0c2d71..d2b3633aa336f 100644 --- a/editors/vscode/CHANGELOG.md +++ b/editors/vscode/CHANGELOG.md @@ -5,6 +5,7 @@ All notable changes to this package will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0). + ## [1.3.0] - 2025-06-23 ### 🚀 Features diff --git a/editors/vscode/package.json b/editors/vscode/package.json index 240392b51ee23..aeddf9cd7820c 100644 --- a/editors/vscode/package.json +++ b/editors/vscode/package.json @@ -2,7 +2,7 @@ "name": "oxc-vscode", "description": "oxc vscode extension", "license": "MIT", - "version": "1.4.0", + "version": "1.5.0", "icon": "icon.png", "publisher": "oxc", "displayName": "Oxc", diff --git a/npm/oxlint/CHANGELOG.md b/npm/oxlint/CHANGELOG.md index a2c8567b00bd6..9779943a17599 100644 --- a/npm/oxlint/CHANGELOG.md +++ b/npm/oxlint/CHANGELOG.md @@ -10,6 +10,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0). + # Changelog All notable changes to this package will be documented in this file. diff --git a/npm/oxlint/package.json b/npm/oxlint/package.json index 8c1f928220e5e..1e34d68381622 100644 --- a/npm/oxlint/package.json +++ b/npm/oxlint/package.json @@ -1,6 +1,6 @@ { "name": "oxlint", - "version": "1.4.0", + "version": "1.5.0", "description": "Linter for the JavaScript Oxidation Compiler", "keywords": [], "author": "Boshen and oxc contributors",