Skip to content

Commit f400a11

Browse files
authored
release(oxlint): v0.16.9 (oxc-project#10765)
1 parent 2dc4779 commit f400a11

File tree

10 files changed

+90
-8
lines changed

10 files changed

+90
-8
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/oxlint/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,17 @@ 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.16.9] - 2025-05-02
8+
9+
### Features
10+
11+
- 63f02a8 linter: Add react/forward_ref_uses_ref (#10506) (x6eull)
12+
- eac205f linter: Add unicorn/consistent-assert rule (#10653) (Shota Kitahara)
13+
14+
### Bug Fixes
15+
16+
- e7c2b32 linter: Move `consistent-assert` to `pedantic` (#10665) (camc314)
17+
718
## [0.16.8] - 2025-04-27
819

920
### Bug Fixes

apps/oxlint/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "oxlint"
3-
version = "0.16.8"
3+
version = "0.16.9"
44
authors.workspace = true
55
categories.workspace = true
66
edition.workspace = true

crates/oxc_language_server/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,21 @@ 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.16.9] - 2025-05-02
8+
9+
### Bug Fixes
10+
11+
- 46665bd langage_server: Fix initialize nested configs (#10698) (Sysix)
12+
- 98bcd5f lsp: Incorrect quick fix offset in vue files (#10742) (camc314)
13+
14+
### Testing
15+
16+
- 9ebf3d4 language_server: Refactor tester to use WorkspaceWorker (#10730) (Sysix)
17+
- 5a709ad language_server: Add test for `init_nested_configs` (#10728) (Sysix)
18+
- 2615758 language_server: Fix slow test (#10659) (Alexander S.)
19+
- fd18aaa language_server: Skip slow test (#10658) (overlookmotel)
20+
- f6f1c5c lsp: Include fixed content in lsp snapshots (#10744) (camc314)
21+
722
## [0.16.8] - 2025-04-27
823

924
### Bug Fixes

crates/oxc_language_server/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "oxc_language_server"
3-
version = "0.16.8"
3+
version = "0.16.9"
44
authors.workspace = true
55
categories.workspace = true
66
edition.workspace = true

crates/oxc_linter/CHANGELOG.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,48 @@ 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.16.9] - 2025-05-02
8+
9+
- a0a37e0 ast: [**BREAKING**] `AstBuilder` methods require an `Atom` with correct lifetime (#10735) (overlookmotel)
10+
11+
- 315143a codegen: [**BREAKING**] Remove useless `CodeGenerator` type alias (#10702) (Boshen)
12+
13+
### Features
14+
15+
- 63f02a8 linter: Add react/forward_ref_uses_ref (#10506) (x6eull)
16+
- a3ada34 linter: Implement fixer for unicorn/prefer-number-properties (#10693) (camc314)
17+
- e97a4e0 linter: Add fixer to unicorn/prefer-spread (#10691) (camc314)
18+
- a69a0ee linter: Add eslint/block-scoped-var (#10237) (yefan)
19+
- 387af3a linter: Report vars only used as types (#10664) (camc314)
20+
- eac205f linter: Add unicorn/consistent-assert rule (#10653) (Shota Kitahara)
21+
- 0e6a727 linter: Add autofixer for eslint/radix (#10652) (yefan)
22+
- fb070c4 linter/no-extra-boolean-cast: Implement auto-fixer (#10682) (DonIsaac)
23+
- 432cd77 linter/no-new-wrapper: Implement auto-fixer (#10680) (DonIsaac)
24+
25+
### Bug Fixes
26+
27+
- b38338a linter: Make require post message target origin a fixer a suggestion (#10754) (camc314)
28+
- 48c542d linter: Skip linting vue <script> where `lang` is not js / ts (#10740) (Boshen)
29+
- c9575f6 linter: Fix false positive in react/exhaustive deps (#10727) (camc314)
30+
- d8d8f64 linter: Shorten span of promise/prefer-await-to-then (#10717) (camc314)
31+
- a88e349 linter: Mark `isNan` and `isFinite` as dangerous fixes in `unicorn/prefer-number-properties` (#10706) (Sysix)
32+
- f4ab05f linter: Panic in unicorn/no-useless-spread (#10715) (camc314)
33+
- 06f1717 linter: False positive in no unused vars when importing value used as type (#10690) (camc314)
34+
- 746b318 linter: False positive in typescript/explicit-function-return-type with `satisfies` (#10668) (camc314)
35+
- cce1043 linter: False positive in typescript/explicit-function-return-type (#10667) (camc314)
36+
- c89da93 linter: False positive in eslint/curly on windows (#10671) (camc314)
37+
- 374e19e linter: False positive in react/jsx-curly-brace-presence (#10663) (camc314)
38+
- e7c2b32 linter: Move `consistent-assert` to `pedantic` (#10665) (camc314)
39+
- 344ef88 linter: False positive in `eslint/no-unused-vars` when calling inside sequence expression (#10646) (Ulrich Stark)
40+
- 98bcd5f lsp: Incorrect quick fix offset in vue files (#10742) (camc314)
41+
42+
### Performance
43+
44+
- c753f75 transformer, linter: Use `format_compact_str!` (#10753) (overlookmotel)
45+
46+
### Refactor
47+
48+
749
## [0.16.8] - 2025-04-27
850

951
### Features

crates/oxc_linter/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "oxc_linter"
3-
version = "0.16.8"
3+
version = "0.16.9"
44
authors.workspace = true
55
categories.workspace = true
66
edition.workspace = true

editors/vscode/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
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.16.9] - 2025-05-02
8+
9+
### Bug Fixes
10+
11+
- 4ee95ec editor: Activate extension when astro files are opened too (#10725) (Sysix)
12+
13+
### Documentation
14+
15+
- 275fe71 editor: `oxc.flags` are not related to `oxlint` (#10645) (Sysix)
16+
17+
### Testing
18+
19+
- 1c4f90f editor: Add test for nested config serverity (#10697) (Sysix)
20+
721
## [0.16.8] - 2025-04-27
822

923
### Bug Fixes

editors/vscode/package.json

Lines changed: 1 addition & 1 deletion
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.16.8",
5+
"version": "0.16.9",
66
"icon": "icon.png",
77
"publisher": "oxc",
88
"displayName": "Oxc",

npm/oxlint/package.json

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

0 commit comments

Comments
 (0)