diff --git a/Cargo.lock b/Cargo.lock index 700f5273ed57f..4eef5b2b8ebb1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1812,7 +1812,7 @@ dependencies = [ [[package]] name = "oxc_linter" -version = "0.15.9" +version = "0.15.10" dependencies = [ "bitflags 2.7.0", "convert_case 0.7.1", @@ -2255,7 +2255,7 @@ dependencies = [ [[package]] name = "oxlint" -version = "0.15.9" +version = "0.15.10" dependencies = [ "bpaf", "cow-utils", diff --git a/apps/oxlint/CHANGELOG.md b/apps/oxlint/CHANGELOG.md index 40c96e90ee12d..eb8fd8eef88ca 100644 --- a/apps/oxlint/CHANGELOG.md +++ b/apps/oxlint/CHANGELOG.md @@ -4,6 +4,16 @@ 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/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0. +## [0.15.10] - 2025-02-06 + +### Features + +- 7e8568b linter: Junit reporter (#8756) (Tapan Prakash) + +### Bug Fixes + +- baf3e4e linter: Correctly replace rule severity with duplicate rule name configurations (#8840) (dalaoshu) + ## [0.15.9] - 2025-02-01 ### Bug Fixes diff --git a/apps/oxlint/Cargo.toml b/apps/oxlint/Cargo.toml index 3a6d70d7ded49..ecee5babf723b 100644 --- a/apps/oxlint/Cargo.toml +++ b/apps/oxlint/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxlint" -version = "0.15.9" +version = "0.15.10" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_linter/CHANGELOG.md b/crates/oxc_linter/CHANGELOG.md index bb779b7fedf1b..9182cb94dd972 100644 --- a/crates/oxc_linter/CHANGELOG.md +++ b/crates/oxc_linter/CHANGELOG.md @@ -4,6 +4,27 @@ 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/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0. +## [0.15.10] - 2025-02-06 + +- b7ff7e1 span: [**BREAKING**] Export `ContentEq` trait from root of `oxc_span` crate (#8869) (overlookmotel) + +### Features + +- d6d80f7 linter: Add suggestion fixer for `eslint/no-iterator` (#8894) (dalaoshu) + +### Bug Fixes + +- baf3e4e linter: Correctly replace rule severity with duplicate rule name configurations (#8840) (dalaoshu) + +### Performance + +- 8a4988d linter: Use parallel iterator directly instead of iter and parallel bridge (#8831) (Cam McHenry) + +### Refactor + +- bb9d763 linter: Remove usage of `url` crate (#8833) (camchenry) +- 4fcf719 linter: Replace MIME guessing with extension check (#8832) (camchenry) + ## [0.15.9] - 2025-02-01 ### Features diff --git a/crates/oxc_linter/Cargo.toml b/crates/oxc_linter/Cargo.toml index 237698f00b8f6..751cc8f238b8d 100644 --- a/crates/oxc_linter/Cargo.toml +++ b/crates/oxc_linter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_linter" -version = "0.15.9" +version = "0.15.10" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/editors/vscode/CHANGELOG.md b/editors/vscode/CHANGELOG.md index 0e3f34d8e5f0e..bbbbb70b8e478 100644 --- a/editors/vscode/CHANGELOG.md +++ b/editors/vscode/CHANGELOG.md @@ -4,6 +4,12 @@ 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/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0. +## [0.15.10] - 2025-02-06 + +### Features + +- f4662a9 oxc_language_server: Implement `oxc.fixAll` workspace command (#8858) (Marek Vospel) + ## [0.15.9] - 2025-02-01 ### Bug Fixes diff --git a/editors/vscode/package.json b/editors/vscode/package.json index 1d9ea2c7cfbc0..bc034e1a0e74e 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": "0.15.9", + "version": "0.15.10", "icon": "icon.png", "publisher": "oxc", "displayName": "Oxc", diff --git a/npm/oxlint/package.json b/npm/oxlint/package.json index a7ba95d6852da..a7753c67ad43b 100644 --- a/npm/oxlint/package.json +++ b/npm/oxlint/package.json @@ -1,6 +1,6 @@ { "name": "oxlint", - "version": "0.15.9", + "version": "0.15.10", "description": "Linter for the JavaScript Oxidation Compiler", "keywords": [], "author": "Boshen and oxc contributors",