Skip to content

Commit 1c32047

Browse files
authored
release(oxlint): v0.16.1 (#9903)
1 parent 22aec2d commit 1c32047

File tree

10 files changed

+84
-8
lines changed

10 files changed

+84
-8
lines changed

Cargo.lock

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

apps/oxlint/CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,24 @@ 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.1] - 2025-03-20
8+
9+
### Features
10+
11+
- 8e3d9be linter: Support `--report-unused-disable-directive` (#9223) (1zumii)
12+
13+
### Bug Fixes
14+
15+
- e6f7c74 linter: Import and fix tests for typescript::no_unnecessary_parameter_property_assignment (#9720) (Ulrich Stark)
16+
17+
### Performance
18+
19+
- 84fa538 minify: Use mimalloc-safe to replace mimalloc (#9810) (LongYinan)
20+
21+
### Refactor
22+
23+
- b34cf94 oxlint: Remove `jemallocator` (#9823) (Boshen)
24+
725
## [0.16.0] - 2025-03-16
826

927
- 225e266 linter: [**BREAKING**] Enable `--experimental-nested-config` by default and add `--disable-nested-config` option (#9760) (camchenry)

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.16.0"
3+
version = "0.16.1"
44
authors.workspace = true
55
categories.workspace = true
66
edition.workspace = true

crates/oxc_language_server/CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,19 @@ 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.1] - 2025-03-20
8+
9+
- b3ce925 data_structures: [**BREAKING**] Put all parts behind features (#9849) (overlookmotel)
10+
11+
### Features
12+
13+
- 0973356 editor: Support nested configs (#9743) (Nicholas Rayburn)
14+
- ea7e3f0 oxc_language_server: Support nested configs (#9739) (Nicholas Rayburn)
15+
16+
### Documentation
17+
18+
- 8bc70b3 language_server: Tell about Initialization options + didChangeWatchedFiles for nested configuration (#9876) (Alexander S.)
19+
720
## [0.15.14] - 2025-03-11
821

922
### Features

crates/oxc_language_server/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "oxc_language_server"
3-
version = "0.16.0"
3+
version = "0.16.1"
44
authors.workspace = true
55
categories.workspace = true
66
edition.workspace = true

crates/oxc_linter/CHANGELOG.md

+39
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,45 @@ 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.1] - 2025-03-20
8+
9+
- ce6808a parser: [**BREAKING**] Rename `type_parameters` to `type_arguments` where needed (#9815) (hi-ogawa)
10+
11+
### Features
12+
13+
- 8e3d9be linter: Support `--report-unused-disable-directive` (#9223) (1zumii)
14+
- 62c0132 linter: Add import/no-empty-named-blocks rule (#9710) (yefan)
15+
- ea7e3f0 oxc_language_server: Support nested configs (#9739) (Nicholas Rayburn)
16+
17+
### Bug Fixes
18+
19+
- e9565c9 linter: Parse vue custom tag that starts with script (#9887) (Boshen)
20+
- e6f7c74 linter: Import and fix tests for typescript::no_unnecessary_parameter_property_assignment (#9720) (Ulrich Stark)
21+
- 4e39ba0 linter: Ignore modules with invalid source (#9801) (branchseer)
22+
- 73fe248 linter/no_case_declarations: Fix span of error for `await using` (#9854) (overlookmotel)
23+
- 2e023ab linter/react: `exhaustive-deps` report longest dependency (#9891) (overlookmotel)
24+
- a113f7e parser: Error when `}` and `>` appear in `JSXText` (#9777) (Boshen)
25+
- 3d4c5f3 semantic: Correctly visit `IfStmt` `test` when building cfg (#9864) (camc314)
26+
- bc8bc08 semantic: Use correct scope flags for using declarations (#9751) (camc314)
27+
28+
### Performance
29+
30+
- d44ab9b linter: Return early in loop in `promise/no-nesting` (#9808) (therewillbecode)
31+
- 2b65ed2 linter/no_unescaped_entities: Optimize string search and error generation (#9832) (overlookmotel)
32+
33+
### Documentation
34+
35+
- e408db8 linter: Improve docs for `unicorn/no-abusive-eslint-disable` (#9834) (shulaoda)
36+
- 187fe39 linter: Add correctness examples to `typescript-prefer-as-const` (#9805) (therewillbecode)
37+
38+
### Refactor
39+
40+
- 723fdfb linter: Improve `jest-prefer-hooks-in-order` (#9892) (therewillbecode)
41+
- 544a090 linter: Remove not implemented rule `constructor-super` (#9877) (Sysix)
42+
- 8bdac56 linter: Improve `ast_util::is_method_call` (#9874) (shulaoda)
43+
- a68e45c linter: Improve `unicorn/no-anonymous-default-export` (#9847) (dalaoshu)
44+
- 6407200 linter: Improve `unicorn/new-for-builtins` (#9804) (dalaoshu)
45+
746
## [0.16.0] - 2025-03-16
847

948
### 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.16.0"
3+
version = "0.16.1"
44
authors.workspace = true
55
categories.workspace = true
66
edition.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.16.1] - 2025-03-20
8+
9+
### Features
10+
11+
- 0973356 editor: Support nested configs (#9743) (Nicholas Rayburn)
12+
713
## [0.16.0] - 2025-03-16
814

915
### Features

editors/vscode/package.json

+1-1
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.0",
5+
"version": "0.16.1",
66
"icon": "icon.png",
77
"publisher": "oxc",
88
"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.16.0",
3+
"version": "0.16.1",
44
"description": "Linter for the JavaScript Oxidation Compiler",
55
"keywords": [],
66
"author": "Boshen and oxc contributors",

0 commit comments

Comments
 (0)