diff --git a/Cargo.lock b/Cargo.lock index 2d940ce14398a..c27aeae878482 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1694,7 +1694,7 @@ dependencies = [ [[package]] name = "oxc_linter" -version = "0.13.1" +version = "0.13.2" dependencies = [ "aho-corasick", "bitflags 2.6.0", @@ -2118,7 +2118,7 @@ dependencies = [ [[package]] name = "oxlint" -version = "0.13.1" +version = "0.13.2" dependencies = [ "bpaf", "glob", diff --git a/apps/oxlint/Cargo.toml b/apps/oxlint/Cargo.toml index 677c6718a1eef..2322d5aba1632 100644 --- a/apps/oxlint/Cargo.toml +++ b/apps/oxlint/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxlint" -version = "0.13.1" +version = "0.13.2" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_linter/CHANGELOG.md b/crates/oxc_linter/CHANGELOG.md index 581c87bd6a31a..0e698250af4e6 100644 --- a/crates/oxc_linter/CHANGELOG.md +++ b/crates/oxc_linter/CHANGELOG.md @@ -4,6 +4,25 @@ 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.2] - 2024-11-26 + +### Features + +- 7236d14 eslint/jsx_a11y: Implement anchor_ambiguous_text (#5729) (Jelle van der Waa) +- 79ab8cc lint-unicorn: Add rule prefer set has (#7075) (jordan boyer) +- 87c893f linter: Add the eslint/no_duplicate_imports rule (#7309) (Guillaume Piedigrossi) +- 0b9da38 linter: Implement `unicorn/prefer-negative-index` (#6920) (Brian Liu) +- f0643c4 linter: Implement `jsx-no-script-url` (#6995) (Radu Baston) +- 00060ca linter: Implement eslint/no-object-constructor (#7345) (Naoya Yoshizawa) + +### Bug Fixes + +- db6558f linter: False positive in `eslint/prefer-object-has-own` (#7463) (dalaoshu) + +### Refactor + +- d7d0735 semantic: Remove `SymbolFlags::TypeLiteral` (#7415) (Dunqing) + ## [0.13.1] - 2024-11-23 - 6f0fe38 semantic: [**BREAKING**] Correct all `ReferenceFlags::Write` according to the spec (#7388) (Dunqing) diff --git a/crates/oxc_linter/Cargo.toml b/crates/oxc_linter/Cargo.toml index 02f1651de2022..736656e2df457 100644 --- a/crates/oxc_linter/Cargo.toml +++ b/crates/oxc_linter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_linter" -version = "0.13.1" +version = "0.13.2" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/editors/vscode/CHANGELOG.md b/editors/vscode/CHANGELOG.md index 3a8c230473baa..2d012dcef19e7 100644 --- a/editors/vscode/CHANGELOG.md +++ b/editors/vscode/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/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0. +## [0.13.2] - 2024-11-26 + +- b04041d vscode: [**BREAKING**] Use `.oxlintrc.json` as default value for `oxc.configPath` (#7442) (Alexander S.) + +### Bug Fixes + + ## [0.13.1] - 2024-11-23 ### Testing diff --git a/editors/vscode/package.json b/editors/vscode/package.json index ebdc62ad69535..e4443f3c44971 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.1", + "version": "0.13.2", "icon": "icon.png", "publisher": "oxc", "displayName": "Oxc", diff --git a/npm/oxlint/package.json b/npm/oxlint/package.json index 16b8c6c8e9b83..b6927b635b462 100644 --- a/npm/oxlint/package.json +++ b/npm/oxlint/package.json @@ -1,6 +1,6 @@ { "name": "oxlint", - "version": "0.13.1", + "version": "0.13.2", "description": "Linter for the JavaScript Oxidation Compiler", "keywords": [], "author": "Boshen and oxc contributors",