Skip to content
Closed
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).

## [2.0.0] - 2025-08-26

### 💥 BREAKING CHANGES

- 63abd7c oxlint: [**BREAKING**] Do not ignore hidden dot directories by default (#13194) (Sysix)

### 🐛 Bug Fixes

- 648e939 linter: Parse `ignorePatterns` with gitignore syntax (#13221) (Sysix)

### 🚜 Refactor

- c138fad linter: Avoid fs reads in `TsGoLintState` when `--silent` is used (#13199) (Sysix)


## [1.12.0] - 2025-08-17

### 🚀 Features
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.12.0"
version = "2.0.0"
authors.workspace = true
categories.workspace = true
edition.workspace = true
Expand Down
7 changes: 7 additions & 0 deletions crates/oxc_language_server/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).

## [2.0.0] - 2025-08-26

### 🐛 Bug Fixes

- 648e939 linter: Parse `ignorePatterns` with gitignore syntax (#13221) (Sysix)


## [1.12.0] - 2025-08-17

### 🚀 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 = "1.12.0"
version = "2.0.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).

## [2.0.0] - 2025-08-26

### 🚀 Features

- 70f0143 linter: Add jest/padding-around-test-blocks rule (#12985) (Peter Cardenas)
- a56f0da linter: Add profiling support for tsgolint via environment variables (#13238) (no-yan)
- cc7f088 linter: Add react/jsx-handler-names rule (#13079) (Takuji Shimokawa)
- c6c5075 linter/always-return: Implement promise rule always-return (#13178) (Li Wei)

### 🐛 Bug Fixes

- fd14b39 linter/array-callback-return: False postive with throw stmt in callback (#13264) (camc314)
- 648e939 linter: Parse `ignorePatterns` with gitignore syntax (#13221) (Sysix)
- a1b52c8 linter/no-unused-private-class-members: Fix false positive with await expression (#13249) (camc314)
- d80c07c linter/explicit-module-boundary-types: False positve with arrow fn in exported fn body (#13232) (camc314)
- 06ec43c linter: Enhance handling of disable directives for next-line and line spans (#13157) (camc314)
- 163dbea linter/prefer-for-of: False positive with diff member expression (#13201) (camc314)
- ada4e84 linter/prefer-await-to-then: False positive with Promise call as return arg (#13189) (camc314)
- 63d12d3 linter: Handle arrow function expressions in static blocks for no-unused-private-class-members (#13181) (camc314)

### 🚜 Refactor

- 2761300 linter: Include `tsgolint` suggestion for `Message::from_tsgo_lint_diagnostic` (#13255) (Sysix)
- c138fad linter: Avoid fs reads in `TsGoLintState` when `--silent` is used (#13199) (Sysix)
- 845c6de linter: Store `source_text` of already opened files for `TsGoLintState` (#13197) (Sysix)

### 📚 Documentation

- 7fcc51e linter: Fix doc code block in `eslint/func-style` rule (#13171) (leaysgur)
- deddc8c linter/no-console: Correct typo in correct code example (#13182) (camc314)

### 🧪 Testing

- 30c54a3 linter: Add test for `Message::from_tsgo_lint_diagnostic` (#13254) (Sysix)


## [1.12.0] - 2025-08-17

### 🚀 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.12.0"
version = "2.0.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 @@ -4,6 +4,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.12.0",
"version": "2.0.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).

## [2.0.0] - 2025-08-26

### 🐛 Bug Fixes

- 02c779f npm/oxlint: Make `oxlint-tsgolint` truly optional (#13153) (Boshen)




## [1.11.1] - 2025-08-09
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.12.0",
"version": "2.0.0",
"type": "commonjs",
"description": "Linter for the JavaScript Oxidation Compiler",
"keywords": [],
Expand Down
Loading