From b66ad0b675fd22859951c6061c2c520d5bbd03b7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 2 Jul 2024 22:07:52 +0800 Subject: [PATCH] Release oxlint v0.6.0 (#4029) ## [0.6.0] - 2024-07-02 - c98d8aa ast: [**BREAKING**] Rename `visit_arrow_expression` to `visit_arrow_function_expression`. (#3995) (rzvxa) ### 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 - 432d6d9 linter: Find disabled directives using the message's `Span`. (#4010) (rzvxa) - dbbb6fc linter: Global variable check should always check builtin variables (#3973) (Boshen) ### Performance - 1eac3d2 semantic: Use `Atom<'a>` for `Reference`s (#3972) (Don Isaac) ### Refactor Co-authored-by: Boshen --- Cargo.lock | 4 ++-- apps/oxlint/Cargo.toml | 2 +- crates/oxc_linter/CHANGELOG.md | 14 ++++++++++++++ crates/oxc_linter/Cargo.toml | 2 +- editors/vscode/package.json | 4 ++-- npm/oxlint/package.json | 4 ++-- 6 files changed, 22 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ac10ae4bed122..99572f00a4985 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1500,7 +1500,7 @@ dependencies = [ [[package]] name = "oxc_linter" -version = "0.5.1" +version = "0.5.2" dependencies = [ "convert_case", "dashmap 6.0.1", @@ -1841,7 +1841,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..b9b93e5194e38 100644 --- a/crates/oxc_linter/CHANGELOG.md +++ b/crates/oxc_linter/CHANGELOG.md @@ -4,6 +4,20 @@ 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-02 + +### Features + +- 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 + +- 432d6d9 linter: Find disabled directives using the message's `Span`. (#4010) (rzvxa) +- dbbb6fc linter: Global variable check should always check builtin variables (#3973) (Boshen) + + ## [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..95428328685da 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", @@ -130,4 +130,4 @@ "vsce": { "dependencies": false } -} \ No newline at end of file +} diff --git a/npm/oxlint/package.json b/npm/oxlint/package.json index d7ad2f354efef..08d04129d0ea6 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", @@ -25,4 +25,4 @@ "configuration_schema.json", "README.md" ] -} \ No newline at end of file +}