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.

15 changes: 15 additions & 0 deletions apps/oxlint/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,21 @@ 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).

## [1.14.0] - 2025-08-30

### 🚜 Refactor

- 6431033 linter: Move ignore logic to `LintIgnoreMatcher` (#13222) (Sysix)

### πŸ“š Documentation

- 51d3840 linter: Update oxlint CLI help message on `.oxlintrc.json` config file (#13334) (0xCLARITY)

### πŸ§ͺ Testing

- 6eeeb67 oxlint: Add test for ignore patterns referenced by symlink file (#13356) (Sysix)


## [1.13.0] - 2025-08-26

### πŸ’₯ BREAKING CHANGES
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 = "1.13.0"
version = "1.14.0"
authors.workspace = true
categories.workspace = true
edition.workspace = true
Expand Down
16 changes: 16 additions & 0 deletions crates/oxc_language_server/CHANGELOG.md
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It might be worth mentioning that this release might cause an issue with diagnostics disappearing after save, so users know to avoid it.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For anyone looking at this in the future, the aforementioned error doesn't seem to happen with

Identifier
oxc.oxc-vscode
Version
1.13.0
Last Updated
2025-08-31, 12:38:33
Size
10.10MB

Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,22 @@ 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).

## [1.14.0] - 2025-08-30

### πŸ› Bug Fixes

- 902b39b language_server: Split run logic for `oxlint` and `tsgolint` (#13332) (Sysix)
- 2a910c5 language_server: Disable tsgolint test on big endian (#13313) (camc314)

### 🚜 Refactor

- 6431033 linter: Move ignore logic to `LintIgnoreMatcher` (#13222) (Sysix)

### πŸ§ͺ Testing

- 33e0e8b language_server: Dont run tsgolint related test on big-edian (#13342) (Sysix)


## [1.13.0] - 2025-08-26

### πŸ› Bug Fixes
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 = "1.13.0"
version = "1.14.0"
authors.workspace = true
categories.workspace = true
edition.workspace = true
Expand Down
36 changes: 36 additions & 0 deletions crates/oxc_linter/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,42 @@ 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).

## [1.14.0] - 2025-08-30

### πŸ’₯ BREAKING CHANGES

- df8e639 allocator: [**BREAKING**] Put `AllocatorPool` behind `pool` feature (#13373) (overlookmotel)

### πŸš€ Features

- d1c9db5 linter: Convert spans to UTF-16 in JS plugins (#13344) (overlookmotel)
- 9c9f80d linter/grouped-accessor-pairs: Add `enforceForTSTypes` option (#13296) (Copilot)
- 5b91f3c linter: Add `vue/valid-define-emits` (#12545) (Sysix)

### πŸ› Bug Fixes

- c215619 linter: Parse `globalThis.RegExp` for regexp rules (#13395) (Sysix)
- 3c34767 linter: Handle errors from tsgolint (#13252) (camc314)

### 🚜 Refactor

- d499400 linter/jsx-handler-names: Simplify option checks for inline functions and local variables (#13405) (camc314)
- 62da550 linter/no-done-callback: Remove nested if-let stmts (#13400) (camc314)
- c9cb2a4 eslint/arrow-body-style: Clean up implementation and improve documentation (#13389) (Antoine Zanardi)
- 53de36e linter: `ContextSubHost` hold owned `Semantic` (#13338) (overlookmotel)
- e871dab linter: Run linter with `ContextSubHost` (#12769) (Sysix)
- 077abdf linter: Introduce `ContextSubHost` for cross script block analyse (#12724) (Sysix)
- 6431033 linter: Move ignore logic to `LintIgnoreMatcher` (#13222) (Sysix)

### ⚑ Performance

- 827fe1c linter: Use `Cell` instead of `RefCell` (#13330) (overlookmotel)

### πŸ§ͺ Testing

- 13470b2 oxc_linter: Run `from_tsgo_lint_diagnostic` tests only with lsp feature flag (#13396) (Sysix)


## [1.13.0] - 2025-08-26

### πŸš€ Features
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 = "1.13.0"
version = "1.14.0"
authors.workspace = true
categories.workspace = true
edition.workspace = true
Expand Down
1 change: 1 addition & 0 deletions editors/vscode/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ 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).



## [1.12.0] - 2025-08-17

### πŸš€ 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": "1.13.0",
"version": "1.14.0",
"icon": "icon.png",
"publisher": "oxc",
"displayName": "Oxc",
Expand Down
7 changes: 7 additions & 0 deletions npm/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).

## [1.14.0] - 2025-08-30

### πŸš€ Features

- 7fc4aef npm/oxlint: 'oxlint-tsgolint': '>=0.1.4' (Boshen)


## [1.13.0] - 2025-08-26

### πŸ› Bug Fixes
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": "1.13.0",
"version": "1.14.0",
"type": "commonjs",
"description": "Linter for the JavaScript Oxidation Compiler",
"keywords": [],
Expand Down
Loading