Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions apps/oxlint/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ All notable changes to this package will be documented in this file.

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.

## [0.16.8] - 2025-04-27

### Bug Fixes

- 723b4c6 linter: Cross_module of LintService not being enabled despite enabled import plugin (#10597) (Ulrich Stark)
- 9a02066 oxlint: Current dir as arg (#9382) (Ben Jones)

## [0.16.7] - 2025-04-21

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion apps/oxlint/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxlint"
version = "0.16.7"
version = "0.16.8"
authors.workspace = true
categories.workspace = true
edition.workspace = true
Expand Down
18 changes: 18 additions & 0 deletions crates/oxc_language_server/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,24 @@ All notable changes to this package will be documented in this file.

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.

## [0.16.8] - 2025-04-27

### Bug Fixes

- f3eac51 language_server: Fix max integer values for range position (#10623) (Alexander S.)
- d309e07 language_server: Fix panics when paths contains specials characters like `[` or `]` (#10622) (Alexander S.)
- 91ce77a language_server: Temporary ignore tests that panic on Windows (#10583) (Yuji Sugiura)

### Refactor

- f6c6969 language_server: Make linter independent of `Backend` (#10497) (Sysix)
- db05a15 language_server: Do not request for worspace configuration when the client does not support it (#10507) (Sysix)
- 9f9e0e5 language_server: Move code actions into own file (#10479) (Sysix)

### Testing

- 9f43a58 language_server: Fix broken tests in windows (#10600) (Sysix)

## [0.16.7] - 2025-04-21

### Features
Expand Down
2 changes: 1 addition & 1 deletion crates/oxc_language_server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxc_language_server"
version = "0.16.7"
version = "0.16.8"
authors.workspace = true
categories.workspace = true
edition.workspace = true
Expand Down
19 changes: 19 additions & 0 deletions crates/oxc_linter/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,25 @@ All notable changes to this package will be documented in this file.

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.

## [0.16.8] - 2025-04-27

### Features

- 53394a7 linter: Add auto-fix for eslint/require-await (#10624) (yefan)
- 6908bc3 linter: Add autofix for react/self-closing-comp (#10512) (x6eull)
- e228840 parser: Fast forward lexer to EOF if errors are encountered (#10579) (Boshen)

### Bug Fixes

- 39adefe linter: Handle re-exporting of type correctly in `import/no-cycle` (#10606) (Ulrich Stark)
- e67901b linter: Incorrect fix for prefer start ends with (#10533) (camc314)
- 7c85ae7 linter/no-empty-function: Support 'allow' option (#10605) (Don Isaac)
- a9785e3 parser,linter: Consider typescript declarations for named exports (#10532) (Ulrich Stark)

### Testing

- 8a2b250 linter: Fix incorrect test fixture for prefer-each (#10587) (Boshen)

## [0.16.7] - 2025-04-21

- 7212803 ast: [**BREAKING**] Change `TSInterfaceDeclaration::extends` from `Option<Vec>` to `Vec` (#10472) (overlookmotel)
Expand Down
2 changes: 1 addition & 1 deletion crates/oxc_linter/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxc_linter"
version = "0.16.7"
version = "0.16.8"
authors.workspace = true
categories.workspace = true
edition.workspace = true
Expand Down
14 changes: 14 additions & 0 deletions editors/vscode/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,20 @@ All notable changes to this package will be documented in this file.

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.

## [0.16.8] - 2025-04-27

### Bug Fixes

- 966fb03 editor: Fix memory leaks when server or watchers restarted (#10628) (Sysix)

### Performance

- 3c27d0d editor: Avoid sending `workspace/didChangeConfiguration` request when the server needs a restarts (#10550) (Sysix)

### Refactor

- e903ba2 editor: Split Config to VSCodeConfig and WorkspaceConfig (#10572) (Sysix)

## [0.16.7] - 2025-04-21

### Features
Expand Down
2 changes: 1 addition & 1 deletion editors/vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "oxc-vscode",
"description": "oxc vscode extension",
"license": "MIT",
"version": "0.16.7",
"version": "0.16.8",
"icon": "icon.png",
"publisher": "oxc",
"displayName": "Oxc",
Expand Down
2 changes: 1 addition & 1 deletion npm/oxlint/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oxlint",
"version": "0.16.7",
"version": "0.16.8",
"description": "Linter for the JavaScript Oxidation Compiler",
"keywords": [],
"author": "Boshen and oxc contributors",
Expand Down
Loading