diff --git a/Cargo.lock b/Cargo.lock index 02afbcce22142..0880746545faa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1693,7 +1693,7 @@ dependencies = [ [[package]] name = "oxc_linter" -version = "0.15.4" +version = "0.15.5" dependencies = [ "bitflags 2.6.0", "convert_case", @@ -2128,7 +2128,7 @@ dependencies = [ [[package]] name = "oxlint" -version = "0.15.4" +version = "0.15.5" dependencies = [ "bpaf", "glob", diff --git a/apps/oxlint/CHANGELOG.md b/apps/oxlint/CHANGELOG.md index 1088d6aa57e42..2af5c73d1de78 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.5] - 2025-01-02 + +### Bug Fixes + +- 2b14a6f linter: Fix `ignorePattern` config for windows (#8214) (Alexander S.) + +### Testing + +- cb709c9 linter: Fix some oxlint tests on windows (#8204) (Cameron) + ## [0.15.4] - 2024-12-30 ### Bug Fixes diff --git a/apps/oxlint/Cargo.toml b/apps/oxlint/Cargo.toml index 6f3611b7ac023..676ebf59fe45a 100644 --- a/apps/oxlint/Cargo.toml +++ b/apps/oxlint/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxlint" -version = "0.15.4" +version = "0.15.5" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_linter/CHANGELOG.md b/crates/oxc_linter/CHANGELOG.md index 9beb0ea8a295d..d2dd4943368d1 100644 --- a/crates/oxc_linter/CHANGELOG.md +++ b/crates/oxc_linter/CHANGELOG.md @@ -4,6 +4,18 @@ 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.5] - 2025-01-02 + +### Features + +- 0e168b8 linter: Catch more cases in const-comparisons (#8215) (Cameron) +- bde44a3 linter: Add `statement_span` to `ModuleRecord/ImportEntry` (#8195) (Alexander S.) +- ccaa9f7 linter: Implement `eslint/new-cap` (#8146) (Alexander S.) + +### Bug Fixes + +- 2b14a6f linter: Fix `ignorePattern` config for windows (#8214) (Alexander S.) + ## [0.15.4] - 2024-12-30 - ed75e42 semantic: [**BREAKING**] Make SymbolTable fields `pub(crate)` instead of `pub` (#7999) (Boshen) diff --git a/crates/oxc_linter/Cargo.toml b/crates/oxc_linter/Cargo.toml index 5a9afa00ad115..9eb0a54a63f19 100644 --- a/crates/oxc_linter/Cargo.toml +++ b/crates/oxc_linter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_linter" -version = "0.15.4" +version = "0.15.5" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/editors/vscode/package.json b/editors/vscode/package.json index 6f19f93c39b89..fb064967f6826 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.4", + "version": "0.15.5", "icon": "icon.png", "publisher": "oxc", "displayName": "Oxc", diff --git a/npm/oxlint/package.json b/npm/oxlint/package.json index 57fb4d8cfcd52..943f9d5f1f994 100644 --- a/npm/oxlint/package.json +++ b/npm/oxlint/package.json @@ -1,6 +1,6 @@ { "name": "oxlint", - "version": "0.15.4", + "version": "0.15.5", "description": "Linter for the JavaScript Oxidation Compiler", "keywords": [], "author": "Boshen and oxc contributors",