Skip to content

Commit b66ad0b

Browse files
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 <Boshen@users.noreply.github.com>
1 parent 02ea19a commit b66ad0b

File tree

6 files changed

+22
-8
lines changed

6 files changed

+22
-8
lines changed

Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/oxlint/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "oxlint"
3-
version = "0.5.1"
3+
version = "0.5.2"
44
publish = false
55
authors.workspace = true
66
description.workspace = true

crates/oxc_linter/CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,20 @@ All notable changes to this package will be documented in this file.
44

55
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.
66

7+
## [0.5.2] - 2024-07-02
8+
9+
### Features
10+
11+
- b257d53 linter: Support report `@typescript-eslint/consistent-type-imports` (#3895) (mysteryven)
12+
- 2114475 linter: Implement @typescript-eslint/no-dynamic-delete (#3971) (kaykdm)
13+
- 10a3c9a linter/eslint-plugin-react: Implement no-set-state (#3975) (Jelle van der Waa)
14+
15+
### Bug Fixes
16+
17+
- 432d6d9 linter: Find disabled directives using the message's `Span`. (#4010) (rzvxa)
18+
- dbbb6fc linter: Global variable check should always check builtin variables (#3973) (Boshen)
19+
20+
721
## [0.5.1] - 2024-06-29
822

923
### Features

crates/oxc_linter/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "oxc_linter"
3-
version = "0.5.1"
3+
version = "0.5.2"
44
publish = false
55
authors.workspace = true
66
description.workspace = true

editors/vscode/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "oxc-vscode",
33
"description": "oxc vscode extension",
44
"license": "MIT",
5-
"version": "0.5.1",
5+
"version": "0.5.2",
66
"icon": "icon.png",
77
"publisher": "oxc",
88
"displayName": "Oxc",
@@ -130,4 +130,4 @@
130130
"vsce": {
131131
"dependencies": false
132132
}
133-
}
133+
}

npm/oxlint/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oxlint",
3-
"version": "0.5.1",
3+
"version": "0.5.2",
44
"description": "Linter for the JavaScript Oxidation Compiler",
55
"keywords": [],
66
"author": "Boshen and oxc contributors",
@@ -25,4 +25,4 @@
2525
"configuration_schema.json",
2626
"README.md"
2727
]
28-
}
28+
}

0 commit comments

Comments
 (0)