diff --git a/Cargo.lock b/Cargo.lock index a41e16b11c262..b6b9bcc012960 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1652,7 +1652,7 @@ dependencies = [ [[package]] name = "oxc_linter" -version = "0.7.1" +version = "0.7.2" dependencies = [ "bitflags 2.6.0", "convert_case", @@ -2016,7 +2016,7 @@ dependencies = [ [[package]] name = "oxlint" -version = "0.7.1" +version = "0.7.2" dependencies = [ "bpaf", "glob", diff --git a/apps/oxlint/CHANGELOG.md b/apps/oxlint/CHANGELOG.md index 5098722986457..4b6d95b505b41 100644 --- a/apps/oxlint/CHANGELOG.md +++ b/apps/oxlint/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.7.2] - 2024-08-15 + +### Documentation + +- 955a4b4 oxlint: Improve cli doc regarding fix and `-D all` (Boshen) + ## [0.7.0] - 2024-08-05 ### Features diff --git a/apps/oxlint/Cargo.toml b/apps/oxlint/Cargo.toml index 8b0cdf14b18c4..972c41a1343ff 100644 --- a/apps/oxlint/Cargo.toml +++ b/apps/oxlint/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxlint" -version = "0.7.1" +version = "0.7.2" publish = false authors.workspace = true description.workspace = true diff --git a/crates/oxc_linter/CHANGELOG.md b/crates/oxc_linter/CHANGELOG.md index f58dd175df14d..cc176b331f5f9 100644 --- a/crates/oxc_linter/CHANGELOG.md +++ b/crates/oxc_linter/CHANGELOG.md @@ -4,6 +4,28 @@ 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.7.2] - 2024-08-15 + +### Features + +- 97e38cd linter: Add fixer for unicorn/prefer-optional-catch-binding (#4867) (heygsc) +- 93ae1c7 linter: Eslint-plugin-react jsx-props-no-spread-multi (#4866) (keita hino) +- 0a23610 linter: Add fixer for unicorn/prefer-array-flat-map (#4844) (heygsc) +- 13c7b1b linter/jsx-a11y: Add fixer for aria-unsupported-elements (#4854) (DonIsaac) +- a6195a6 linter/jsx-a11y: Add fixer for anchor-has-content (#4852) (DonIsaac) +- 4d28d03 task/website: Support render `subschemas.all_of` (#4800) (mysteryven) + +### Bug Fixes + +- 21f5762 codegen: Minify large numbers (#4889) (Boshen) +- a08d7a7 linter/jsx-a11y: Reduce false negatives for html-has-lang (#4855) (DonIsaac) +- a81ce3a linter/no-unused-vars: Do not delete function expressions when fixing (#4848) (DonIsaac) + +### Refactor + +- 56f033c linter: Improve diagnostics for several jsx-a11y rules (#4853) (DonIsaac) +- c53c210 linter/no-unused-vars: Split fixer logic into multiple files (#4847) (DonIsaac) + ## [0.7.1] - 2024-08-12 ### Features diff --git a/crates/oxc_linter/Cargo.toml b/crates/oxc_linter/Cargo.toml index 62d0d416ac526..a7ff6d6eb4389 100644 --- a/crates/oxc_linter/Cargo.toml +++ b/crates/oxc_linter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_linter" -version = "0.7.1" +version = "0.7.2" publish = false authors.workspace = true description.workspace = true diff --git a/editors/vscode/package.json b/editors/vscode/package.json index b5e12bf80043b..c488852fffb1a 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.7.1", + "version": "0.7.2", "icon": "icon.png", "publisher": "oxc", "displayName": "Oxc", diff --git a/npm/oxlint/CHANGELOG.md b/npm/oxlint/CHANGELOG.md index 78f71e88ec04f..d0dc43c47bee0 100644 --- a/npm/oxlint/CHANGELOG.md +++ b/npm/oxlint/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.7.2] - 2024-08-15 + +### Features + +- 4d28d03 task/website: Support render `subschemas.all_of` (#4800) (mysteryven) + ## [0.7.1] - 2024-08-12 ### Features diff --git a/npm/oxlint/package.json b/npm/oxlint/package.json index 654530c2f650c..1d6450cd998ba 100644 --- a/npm/oxlint/package.json +++ b/npm/oxlint/package.json @@ -1,6 +1,6 @@ { "name": "oxlint", - "version": "0.7.1", + "version": "0.7.2", "description": "Linter for the JavaScript Oxidation Compiler", "keywords": [], "author": "Boshen and oxc contributors",