From 394b9719720268c6fab5d1aab2a8783bf600acc3 Mon Sep 17 00:00:00 2001 From: Boshen <1430279+Boshen@users.noreply.github.com> Date: Fri, 13 Dec 2024 12:58:51 +0000 Subject: [PATCH] release(oxlint): v0.15.1 --- Cargo.lock | 4 ++-- apps/oxlint/Cargo.toml | 2 +- crates/oxc_linter/CHANGELOG.md | 8 ++++++++ crates/oxc_linter/Cargo.toml | 2 +- editors/vscode/CHANGELOG.md | 6 ++++++ editors/vscode/package.json | 2 +- npm/oxlint/package.json | 2 +- 7 files changed, 20 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d3cd6715dd986..088fc81e7d32a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1671,7 +1671,7 @@ dependencies = [ [[package]] name = "oxc_linter" -version = "0.15.0" +version = "0.15.1" dependencies = [ "bitflags 2.6.0", "convert_case", @@ -2101,7 +2101,7 @@ dependencies = [ [[package]] name = "oxlint" -version = "0.15.0" +version = "0.15.1" dependencies = [ "bpaf", "glob", diff --git a/apps/oxlint/Cargo.toml b/apps/oxlint/Cargo.toml index ce6623c231540..9bb5db0ccfb7c 100644 --- a/apps/oxlint/Cargo.toml +++ b/apps/oxlint/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxlint" -version = "0.15.0" +version = "0.15.1" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_linter/CHANGELOG.md b/crates/oxc_linter/CHANGELOG.md index 702f428e4754d..f25c04e13e2b2 100644 --- a/crates/oxc_linter/CHANGELOG.md +++ b/crates/oxc_linter/CHANGELOG.md @@ -4,6 +4,14 @@ 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.1] - 2024-12-13 + +### Bug Fixes + +- 2b187e5 linter: Fix configuration casing for `typescript/no_this_alias` (#7836) (Boshen) +- 06e6d38 linter: Fix unicorn/prefer-query-selector to use the correct replacement for getElementsByClassName (#7796) (Nicholas Rayburn) +- 7a83230 semantic: Missing reference when `export default` references a type alias binding (#7813) (Dunqing) + ## [0.15.0] - 2024-12-10 - 39b9c5d linter: [**BREAKING**] Remove unmaintained security plugin (#7773) (Boshen) diff --git a/crates/oxc_linter/Cargo.toml b/crates/oxc_linter/Cargo.toml index 710bd8feaeb02..a43f141e76677 100644 --- a/crates/oxc_linter/Cargo.toml +++ b/crates/oxc_linter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_linter" -version = "0.15.0" +version = "0.15.1" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/editors/vscode/CHANGELOG.md b/editors/vscode/CHANGELOG.md index 2d012dcef19e7..dffdf85f44541 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.1] - 2024-12-13 + +### Features + +- 38b1c2e editor: Create a command to apply all auto-fixes for the current active text editor (#7672) (Nicholas Rayburn) + ## [0.13.2] - 2024-11-26 - b04041d vscode: [**BREAKING**] Use `.oxlintrc.json` as default value for `oxc.configPath` (#7442) (Alexander S.) diff --git a/editors/vscode/package.json b/editors/vscode/package.json index cf8d1e14c1b48..5acff3c2d2396 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.0", + "version": "0.15.1", "icon": "icon.png", "publisher": "oxc", "displayName": "Oxc", diff --git a/npm/oxlint/package.json b/npm/oxlint/package.json index d85b7721555a3..cd7e590926d27 100644 --- a/npm/oxlint/package.json +++ b/npm/oxlint/package.json @@ -1,6 +1,6 @@ { "name": "oxlint", - "version": "0.15.0", + "version": "0.15.1", "description": "Linter for the JavaScript Oxidation Compiler", "keywords": [], "author": "Boshen and oxc contributors",