Skip to content

Commit 53ff349

Browse files
oxc-botBoshen
andauthored
Release oxlint v0.9.1 (#5316)
## [0.9.1] - 2024-08-29 ### Features - 6633972 linter: Add fixer for `no-empty` (#5276) (camc314) - a58e448 linter/eslint: Add fixer to `no-var` (#5144) (camc314) - a6e9769 linter/jsx-a11y: Add `label-has-associated-control` (#5163) (Billy Levin) - c8e8532 linter/unicorn: Add fixer to `throw-new-error` (#5275) (camc314) - 7ccde4b linter/unicorn: Add fixer to `prefer-date-now` (#5147) (camc314) ### Bug Fixes - 76e86f8 linter: Eslint-plugin-unicorn prefer-spread wrong linter suggestion on variables of type string (#5265) (Arian94) - b39544e linter/jest: Fixer for `prefer-jest-mocked` creates invalid LHS expressions (#5243) (camc314) - 9953fa5 linter/no-null: Incorrect fixer for `NullLiteral` within `ReturnStatement` (#5247) (Dunqing) - 318479e linter/no-unused-vars: Mark the class/function in the new expression as used (#5306) (magic-akari) ### Refactor - fa1d460 linter: Clean up Fixer and Message (#5308) (DonIsaac) Co-authored-by: Boshen <[email protected]>
1 parent fdef8ae commit 53ff349

File tree

6 files changed

+29
-6
lines changed

6 files changed

+29
-6
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.9.0"
3+
version = "0.9.1"
44
publish = false
55
authors.workspace = true
66
description.workspace = true

crates/oxc_linter/CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,29 @@ 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.9.1] - 2024-08-29
8+
9+
- 234a24c ast: [**BREAKING**] Merge `UsingDeclaration` into `VariableDeclaration` (#5270) (Kevin Deng 三咲智子)
10+
11+
### Features
12+
13+
- 6633972 linter: Add fixer for `no-empty` (#5276) (camc314)
14+
- a58e448 linter/eslint: Add fixer to `no-var` (#5144) (camc314)
15+
- a6e9769 linter/jsx-a11y: Add `label-has-associated-control` (#5163) (Billy Levin)
16+
- c8e8532 linter/unicorn: Add fixer to `throw-new-error` (#5275) (camc314)
17+
- 7ccde4b linter/unicorn: Add fixer to `prefer-date-now` (#5147) (camc314)
18+
19+
### Bug Fixes
20+
21+
- 76e86f8 linter: Eslint-plugin-unicorn prefer-spread wrong linter suggestion on variables of type string (#5265) (Arian94)
22+
- b39544e linter/jest: Fixer for `prefer-jest-mocked` creates invalid LHS expressions (#5243) (camc314)
23+
- 9953fa5 linter/no-null: Incorrect fixer for `NullLiteral` within `ReturnStatement` (#5247) (Dunqing)
24+
- 318479e linter/no-unused-vars: Mark the class/function in the new expression as used (#5306) (magic-akari)
25+
26+
### Refactor
27+
28+
- fa1d460 linter: Clean up Fixer and Message (#5308) (DonIsaac)
29+
730
## [0.9.0] - 2024-08-26
831

932
- 5946748 linter: [**BREAKING**] Parse and display syntax errors for regular expressions (#5214) (Boshen)

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.9.0"
3+
version = "0.9.1"
44
publish = false
55
authors.workspace = true
66
description.workspace = true

editors/vscode/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "oxc vscode extension",
44
"packageManager": "[email protected]",
55
"license": "MIT",
6-
"version": "0.9.0",
6+
"version": "0.9.1",
77
"icon": "icon.png",
88
"publisher": "oxc",
99
"displayName": "Oxc",

npm/oxlint/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oxlint",
3-
"version": "0.9.0",
3+
"version": "0.9.1",
44
"description": "Linter for the JavaScript Oxidation Compiler",
55
"keywords": [],
66
"author": "Boshen and oxc contributors",

0 commit comments

Comments
 (0)