diff --git a/Cargo.lock b/Cargo.lock index 79d07be61c620..b775599da0ae8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1499,7 +1499,7 @@ dependencies = [ [[package]] name = "oxc_linter" -version = "0.5.1" +version = "0.5.2" dependencies = [ "convert_case", "dashmap 6.0.1", @@ -1840,7 +1840,7 @@ dependencies = [ [[package]] name = "oxlint" -version = "0.5.1" +version = "0.5.2" dependencies = [ "bpaf", "glob", diff --git a/apps/oxlint/Cargo.toml b/apps/oxlint/Cargo.toml index b9b57d7c671f3..c876c64b520db 100644 --- a/apps/oxlint/Cargo.toml +++ b/apps/oxlint/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxlint" -version = "0.5.1" +version = "0.5.2" publish = false authors.workspace = true description.workspace = true diff --git a/crates/oxc_linter/CHANGELOG.md b/crates/oxc_linter/CHANGELOG.md index 32b78022fc432..2d168ab5403f5 100644 --- a/crates/oxc_linter/CHANGELOG.md +++ b/crates/oxc_linter/CHANGELOG.md @@ -4,6 +4,23 @@ 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.5.2] - 2024-07-01 + +### Features + +- dc6d45e ast,codegen: Add `TSParenthesizedType` and print type parentheses correctly (#3979) (Boshen) +- b257d53 linter: Support report `@typescript-eslint/consistent-type-imports` (#3895) (mysteryven) +- 2114475 linter: Implement @typescript-eslint/no-dynamic-delete (#3971) (kaykdm) +- 10a3c9a linter/eslint-plugin-react: Implement no-set-state (#3975) (Jelle van der Waa) + +### Bug Fixes + +- dbbb6fc linter: Global variable check should always check builtin variables (#3973) (Boshen) + +### Performance + +- 1eac3d2 semantic: Use `Atom<'a>` for `Reference`s (#3972) (Don Isaac) + ## [0.5.1] - 2024-06-29 ### Features diff --git a/crates/oxc_linter/Cargo.toml b/crates/oxc_linter/Cargo.toml index a8a4e0feb6907..18badc9523522 100644 --- a/crates/oxc_linter/Cargo.toml +++ b/crates/oxc_linter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_linter" -version = "0.5.1" +version = "0.5.2" publish = false authors.workspace = true description.workspace = true diff --git a/editors/vscode/package.json b/editors/vscode/package.json index cba82a7750b07..46de3a2434565 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.5.1", + "version": "0.5.2", "icon": "icon.png", "publisher": "oxc", "displayName": "Oxc", diff --git a/npm/oxlint/package.json b/npm/oxlint/package.json index d7ad2f354efef..c096b664df7cf 100644 --- a/npm/oxlint/package.json +++ b/npm/oxlint/package.json @@ -1,6 +1,6 @@ { "name": "oxlint", - "version": "0.5.1", + "version": "0.5.2", "description": "Linter for the JavaScript Oxidation Compiler", "keywords": [], "author": "Boshen and oxc contributors",