From dbb7ab2d233c592983460c7492c5441a39a3a98e Mon Sep 17 00:00:00 2001 From: Boshen <1430279+Boshen@users.noreply.github.com> Date: Sat, 23 Nov 2024 15:35:21 +0000 Subject: [PATCH] release(oxlint): v0.13.1 --- Cargo.lock | 4 ++-- apps/oxlint/CHANGELOG.md | 11 +++++++++++ apps/oxlint/Cargo.toml | 2 +- crates/oxc_linter/CHANGELOG.md | 24 ++++++++++++++++++++++++ crates/oxc_linter/Cargo.toml | 2 +- editors/vscode/CHANGELOG.md | 6 ++++++ editors/vscode/package.json | 2 +- npm/oxlint/package.json | 2 +- 8 files changed, 47 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8819d68eba28b..88df345f6ea36 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1700,7 +1700,7 @@ dependencies = [ [[package]] name = "oxc_linter" -version = "0.13.0" +version = "0.13.1" dependencies = [ "aho-corasick", "bitflags 2.6.0", @@ -2124,7 +2124,7 @@ dependencies = [ [[package]] name = "oxlint" -version = "0.13.0" +version = "0.13.1" dependencies = [ "bpaf", "glob", diff --git a/apps/oxlint/CHANGELOG.md b/apps/oxlint/CHANGELOG.md index e2d8288b8f84f..e819256866695 100644 --- a/apps/oxlint/CHANGELOG.md +++ b/apps/oxlint/CHANGELOG.md @@ -4,6 +4,17 @@ 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.13.1] - 2024-11-23 + +### Features + +- 9558087 oxlint: Auto detect config file in CLI (#7348) (Alexander S.) + +### Bug Fixes + +- 8507464 linter: Hanging when source has syntax/is flow (#7432) (Cameron) +- e88cf1b linter: Make `overrides` globs relative to config path (#7407) (camchenry) + ## [0.13.0] - 2024-11-21 - 878189c parser,linter: [**BREAKING**] Add `ParserReturn::is_flow_language`; linter ignore flow error (#7373) (Boshen) diff --git a/apps/oxlint/Cargo.toml b/apps/oxlint/Cargo.toml index d4778c1c1d206..677c6718a1eef 100644 --- a/apps/oxlint/Cargo.toml +++ b/apps/oxlint/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxlint" -version = "0.13.0" +version = "0.13.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 cb98251d2976e..581c87bd6a31a 100644 --- a/crates/oxc_linter/CHANGELOG.md +++ b/crates/oxc_linter/CHANGELOG.md @@ -4,6 +4,30 @@ 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.13.1] - 2024-11-23 + +- 6f0fe38 semantic: [**BREAKING**] Correct all `ReferenceFlags::Write` according to the spec (#7388) (Dunqing) + +### Features + +- 4ad26b9 linter: Add `no-promise-in-callback` (#7307) (no-yan) + +### Bug Fixes + +- 8507464 linter: Hanging when source has syntax/is flow (#7432) (Cameron) +- e88cf1b linter: Make `overrides` globs relative to config path (#7407) (camchenry) +- 9002e97 linter: Add proper support for findIndex and findLastIndex for `unicorn/prefer-array-some` (#7405) (Dmitry Zakharov) + +### Documentation + +- 6730e3e linter: Add more examples for `unicorn/prefer-array-some` (#7411) (Dmitry Zakharov) + +### Refactor + +- 6c0d31b linter: Remove useless `const` declaration (#7430) (Song Gao) +- c8adc46 linter/no-unused-vars: Improve implementation to remove using SymbolFlags::Export (#7412) (Dunqing) +- c90537f linter/only-used-in-recursion: Improve implementation to remove using SymbolFlags::Export (#7413) (Dunqing) + ## [0.13.0] - 2024-11-21 - f059b0e ast: [**BREAKING**] Add missing `ChainExpression` from `TSNonNullExpression` (#7377) (Boshen) diff --git a/crates/oxc_linter/Cargo.toml b/crates/oxc_linter/Cargo.toml index 346be12d5b095..02f1651de2022 100644 --- a/crates/oxc_linter/Cargo.toml +++ b/crates/oxc_linter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_linter" -version = "0.13.0" +version = "0.13.1" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/editors/vscode/CHANGELOG.md b/editors/vscode/CHANGELOG.md index 6e3cc8cae01a2..3a8c230473baa 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.13.1] - 2024-11-23 + +### Testing + +- 779f479 editor: Check if workspace configuration is updated (#7403) (Alexander S.) + ## [0.13.0] - 2024-11-21 ### Refactor diff --git a/editors/vscode/package.json b/editors/vscode/package.json index 0e9e4feea9e17..ef9fc2b09e418 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.13.0", + "version": "0.13.1", "icon": "icon.png", "publisher": "oxc", "displayName": "Oxc", diff --git a/npm/oxlint/package.json b/npm/oxlint/package.json index df5014175d31d..16b8c6c8e9b83 100644 --- a/npm/oxlint/package.json +++ b/npm/oxlint/package.json @@ -1,6 +1,6 @@ { "name": "oxlint", - "version": "0.13.0", + "version": "0.13.1", "description": "Linter for the JavaScript Oxidation Compiler", "keywords": [], "author": "Boshen and oxc contributors",