Skip to content

Commit de45c5e

Browse files
oxc-botBoshen
andauthored
release(oxlint): v0.16.4 (#10155)
## [0.16.4] - 2025-04-01 - da6336c language_server: [**BREAKING**] Remove `enable` configuration, the client should shutdown the server instead (#9990) (Sysix) ### Features - 06e3db9 linter: Support `multipleFileExtensions` option for `unicorn/filename-case` (#10118) (shulaoda) - dbe0e46 linter: Support `ignore` option for `unicorn/filename-case` (#10107) (shulaoda) ### Bug Fixes - 0a33e27 editor: Update `initializationOptions` for a possible restart (#10121) (Sysix) - ac780a2 editor: Repair filewatchers when no custom config provided (#10104) (Sysix) - 4303ace editor: Dont send `didChangeConfiguration` request to the server when it is shutdown (#10084) (Sysix) - 07f2a25 editor: Enable regex parsing in language server (#10035) (camchenry) - fcf7702 language_server: Start from a default oxlint configuration + SafeFix for nested configuration (#10043) (Sysix) - aba3654 linter: Span disable directive correctly on next line (#10141) (Ulrich Stark 🦀) - 2c80858 linter: Enable multi-file analysis for nested configs (#10089) (camchenry) ### Performance - 566be59 linter: Replace `phf_set` with `array` in `eslint/func-names` (#10119) (shulaoda) - 5e14fe9 linter: Inline `PRE_DEFINE_VAR` and use `array` format (#10079) (shulaoda) ### Refactor - 327be53 editor: `LanguageClient` can be undefined (#10112) (Sysix) - 5ec477c editor: Make `onConfigChange` async (#10110) (Sysix) - a278d73 editor: Use warning background when the plugin is deactived (#10085) (Sysix) - c0e5251 language_server: Set `null` as a default value for `configPath` (#10047) (Sysix) - 09c0ac6 linter: Improve `unicorn/filename-case` (#10117) (shulaoda) - d8e49a1 linter: Compute lintable extensions at compile time (#10090) (camchenry) - b3ec235 linter: Use items of `oxc_ast::ast` module directly (#10100) (Ulrich Stark 🦀) - 93e6c0b linter: Use `FormalParameter::has_modifier` to detect parameter properties (#10097) (Ulrich Stark 🦀) - 5d829c2 semantic: Align handling of declaring symbol for function with TypeScript (#10086) (Dunqing) ### Testing - 410b8d6 editor: Use debug build of the language server (#10083) (Sysix) - 500add0 editor: Add test for `oxc.fixAll` command (#10045) (Sysix) Co-authored-by: Boshen <[email protected]>
1 parent e4ab61b commit de45c5e

File tree

10 files changed

+90
-9
lines changed

10 files changed

+90
-9
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

+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.16.4] - 2025-04-01
8+
9+
### Features
10+
11+
- 370266c semantic: Check redeclaration of variable declaration and function declaration in the block scope (#10074) (Dunqing)
12+
13+
### Bug Fixes
14+
15+
- 2c80858 linter: Enable multi-file analysis for nested configs (#10089) (camchenry)
16+
17+
### Refactor
18+
19+
- d8e49a1 linter: Compute lintable extensions at compile time (#10090) (camchenry)
20+
721
## [0.16.3] - 2025-03-25
822

923
### Refactor

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

crates/oxc_language_server/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.16.4] - 2025-04-01
8+
9+
- da6336c language_server: [**BREAKING**] Remove `enable` configuration, the client should shutdown the server instead (#9990) (Sysix)
10+
11+
### Bug Fixes
12+
13+
- 07f2a25 editor: Enable regex parsing in language server (#10035) (camchenry)
14+
- fcf7702 language_server: Start from a default oxlint configuration + SafeFix for nested configuration (#10043) (Sysix)
15+
16+
### Refactor
17+
18+
- c0e5251 language_server: Set `null` as a default value for `configPath` (#10047) (Sysix)
19+
- d8e49a1 linter: Compute lintable extensions at compile time (#10090) (camchenry)
20+
721
## [0.16.3] - 2025-03-25
822

923
### Bug Fixes

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

crates/oxc_linter/CHANGELOG.md

+28
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,34 @@ 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.4] - 2025-04-01
8+
9+
- cd1f035 semantic: [**BREAKING**] Store symbol information as the first entry in `symbol_declarations` when it is redeclared (#10062) (Dunqing)
10+
11+
### Features
12+
13+
- 06e3db9 linter: Support `multipleFileExtensions` option for `unicorn/filename-case` (#10118) (shulaoda)
14+
- dbe0e46 linter: Support `ignore` option for `unicorn/filename-case` (#10107) (shulaoda)
15+
- 84a3490 semantic: Add `symbol_id` for declare function binding (#10078) (Dunqing)
16+
- b804f7c semantic: Introduce `Redeclaraion` for `Scoping::symbol_declarations` (#10059) (Dunqing)
17+
18+
### Bug Fixes
19+
20+
- aba3654 linter: Span disable directive correctly on next line (#10141) (Ulrich Stark 🦀)
21+
22+
### Performance
23+
24+
- 566be59 linter: Replace `phf_set` with `array` in `eslint/func-names` (#10119) (shulaoda)
25+
- 5e14fe9 linter: Inline `PRE_DEFINE_VAR` and use `array` format (#10079) (shulaoda)
26+
27+
### Refactor
28+
29+
- 09c0ac6 linter: Improve `unicorn/filename-case` (#10117) (shulaoda)
30+
- d8e49a1 linter: Compute lintable extensions at compile time (#10090) (camchenry)
31+
- b3ec235 linter: Use items of `oxc_ast::ast` module directly (#10100) (Ulrich Stark 🦀)
32+
- 93e6c0b linter: Use `FormalParameter::has_modifier` to detect parameter properties (#10097) (Ulrich Stark 🦀)
33+
- 5d829c2 semantic: Align handling of declaring symbol for function with TypeScript (#10086) (Dunqing)
34+
735
## [0.16.3] - 2025-03-25
836

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

editors/vscode/CHANGELOG.md

+22
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,28 @@ 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.4] - 2025-04-01
8+
9+
- da6336c language_server: [**BREAKING**] Remove `enable` configuration, the client should shutdown the server instead (#9990) (Sysix)
10+
11+
### Bug Fixes
12+
13+
- 0a33e27 editor: Update `initializationOptions` for a possible restart (#10121) (Sysix)
14+
- ac780a2 editor: Repair filewatchers when no custom config provided (#10104) (Sysix)
15+
- 4303ace editor: Dont send `didChangeConfiguration` request to the server when it is shutdown (#10084) (Sysix)
16+
17+
### Refactor
18+
19+
- 327be53 editor: `LanguageClient` can be undefined (#10112) (Sysix)
20+
- 5ec477c editor: Make `onConfigChange` async (#10110) (Sysix)
21+
- a278d73 editor: Use warning background when the plugin is deactived (#10085) (Sysix)
22+
- c0e5251 language_server: Set `null` as a default value for `configPath` (#10047) (Sysix)
23+
24+
### Testing
25+
26+
- 410b8d6 editor: Use debug build of the language server (#10083) (Sysix)
27+
- 500add0 editor: Add test for `oxc.fixAll` command (#10045) (Sysix)
28+
729
## [0.16.3] - 2025-03-25
830

931
### Testing

editors/vscode/package.json

+5-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.16.3",
5+
"version": "0.16.4",
66
"icon": "icon.png",
77
"publisher": "oxc",
88
"displayName": "Oxc",
@@ -95,7 +95,10 @@
9595
"description": "Traces the communication between VS Code and the language server."
9696
},
9797
"oxc.configPath": {
98-
"type": ["string", "null"],
98+
"type": [
99+
"string",
100+
"null"
101+
],
99102
"scope": "window",
100103
"default": null,
101104
"description": "Path to ESlint configuration. Keep it empty to enable nested configuration."

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

0 commit comments

Comments
 (0)