Skip to content

Commit 1e86aa0

Browse files
Boshengithub-actions[bot]
authored andcommitted
Release oxlint
1 parent cc922f4 commit 1e86aa0

File tree

8 files changed

+72
-7
lines changed

8 files changed

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

crates/oxc_linter/CHANGELOG.md

+53
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,59 @@ 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.7.1] - 2024-08-12
8+
9+
### Features
10+
11+
- 3d40528 linter: Add fix emoji to rules table and doc pages (#4715) (DonIsaac)
12+
- d2734f3 linter: Start fixer for no-unused-vars (#4718) (DonIsaac)
13+
- 070ae53 linter: Add fixer for unicorn prefer-string-replace-all (#4801) (camc314)
14+
- b3c3125 linter: Overhaul unicorn/no-useless-spread (#4791) (DonIsaac)
15+
- 5992b75 linter: Implement `eslint-plugin-promise/no-return-in-finally, prefer-await-to-then` rule (#4318) (Jelle van der Waa)
16+
- b259f47 linter: Add fixer for unicorn/no-length-as-slice-end (#4780) (heygsc)
17+
- abd83fa linter: Add fixer for jsx_ally/no_aria_hidden_on_focusable (#4772) (heygsc)
18+
- b20e335 linter: Add fixer for eslint/no-eq-null (#4758) (heygsc)
19+
- 2f6c3b9 linter: Add fixer for eslint/no-compare-neg-zero (#4748) (heygsc)
20+
- eaddc8f linter: Add fixer for eslint/func_names (#4714) (DonIsaac)
21+
- 80557a9 linter: Add fixer for eslint/for-direction (#4679) (heygsc)
22+
- c3c5766 linter/eslint-plugin-promise: Implement valid-params (#4598) (Jelle van der Waa)
23+
- c509a21 linter/eslint-plugin-vitest: Implement prefer-to-be-falsy (#4770) (dalaoshu)
24+
- 41f861f linter/eslint-plugin-vitest: Implement prefer-to-be-truthy (#4755) (dalaoshu)
25+
- cc922f4 vscode: Provide config's schema to oxlint config files (#4826) (Don Isaac)
26+
- f629514 website: Auto-generate rule docs pages (#4640) (DonIsaac)
27+
28+
### Bug Fixes
29+
30+
- b22ed45 linter: Improve prefer_namespace_keyword rule (#4751) (Burlin)
31+
- db68a6c linter: Fixer for eslint/for-direction (#4727) (heygsc)
32+
- 6273994 linter: Block in eslint/no_cond_assign (#4721) (heygsc)
33+
- b9d6aa5 linter: Fix false positives in no-confusing-non-null-assertion (#4665) (Renée)
34+
- cbf08d2 linter: Skip no-multi-str on jsx attributes (#4666) (heygsc)
35+
- a6f9f96 linter: No unused errors should be warnings (Boshen)
36+
- 7345bc9 linter/func-names: Handle ts accessibility when reporting missing names (#4713) (DonIsaac)
37+
38+
### Performance
39+
40+
- d191823 linter: Optmize allocations in jest fn parsing (#4787) (lucab)
41+
- e3abdfa linter: Reduce String allocations and clones (#4673) (DonIsaac)
42+
43+
### Documentation
44+
45+
- 4b7dfd6 linter: Correct docs for no-unused-vars (#4716) (Don Isaac)
46+
47+
### Refactor
48+
49+
- 096ac7b linter: Clean up jsx-a11y/anchor-is-valid (#4831) (DonIsaac)
50+
- 15a0fd4 linter: Use Option to reduce nested level in `eslint/getter-return` (#4814) (IWANABETHATGUY)
51+
- 63f274c linter: Simplify NoObjCalls resolution logic (#4765) (lucab)
52+
- 6708680 linter: Replace Windows-style line breaks with Unix-style in test fixture (#4768) (overlookmotel)
53+
- e285903 linter: Clean up eslint/func_names (#4710) (DonIsaac)
54+
55+
### Testing
56+
57+
- 8f2a566 linter: Ensure rule docs have valid syntax (#4644) (DonIsaac)
58+
- 4dd29db linter: Add fixer test for unicorn/no-zero-fractions (#4783) (heygsc)
59+
760
## [0.7.0] - 2024-08-05
861

962
- 85a7cea semantic: [**BREAKING**] Remove name from `reference` (#4329) (Dunqing)

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

editors/vscode/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ 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.7.1] - 2024-08-12
8+
9+
### Features
10+
11+
- cc922f4 vscode: Provide config's schema to oxlint config files (#4826) (Don Isaac)
12+
713
## [0.2.6] - 2024-01-26
814

915
### Features

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.7.0",
5+
"version": "0.7.1",
66
"icon": "icon.png",
77
"publisher": "oxc",
88
"displayName": "Oxc",
@@ -154,4 +154,4 @@
154154
"vsce": {
155155
"dependencies": false
156156
}
157-
}
157+
}

npm/oxlint/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ 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.7.1] - 2024-08-12
8+
9+
### Features
10+
11+
- cc922f4 vscode: Provide config's schema to oxlint config files (#4826) (Don Isaac)
12+
713
## [0.7.0] - 2024-08-05
814

915
### Bug Fixes

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.7.0",
3+
"version": "0.7.1",
44
"description": "Linter for the JavaScript Oxidation Compiler",
55
"keywords": [],
66
"author": "Boshen and oxc contributors",

0 commit comments

Comments
 (0)