Skip to content

Conversation

@Boshen
Copy link
Member

@Boshen Boshen commented Sep 19, 2025

DO NOT MERGE. I (@overlookmotel) triggered the pre-release workflow, just to test #13895.

[1.17.0] - 2025-09-19

🚀 Features

🐛 Bug Fixes

🚜 Refactor

⚡ Performance

🧪 Testing

Copilot AI review requested due to automatic review settings September 19, 2025 09:27
@Boshen Boshen self-assigned this Sep 19, 2025
@github-actions
Copy link
Contributor

github-actions bot commented Sep 19, 2025

Oxlint Ecosystem CI

suite result
${{ matrix.repository }} undefined

@graphite-app
Copy link
Contributor

graphite-app bot commented Sep 19, 2025

How to use the Graphite Merge Queue

Add either label to this PR to merge it via the merge queue:

  • 0-merge - adds this PR to the back of the merge queue
  • hotfix - for urgent hot fixes, skip the queue and merge this PR next

You must have a Graphite account in order to use the merge queue. Sign up using this link.

An organization admin has enabled the Graphite Merge Queue in this repository.

Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue.

@github-actions github-actions bot added A-linter Area - Linter A-cli Area - CLI A-editor Area - Editor and Language Server labels Sep 19, 2025
Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull Request Overview

This PR releases oxlint v1.17.0, updating version numbers across all packages and documentation. The release includes new linter features, bug fixes, performance improvements, and significant architectural changes like converting oxlint to a NAPI app.

Key Changes:

  • Version bump from 1.16.0 to 1.17.0 across all packages
  • Update changelog files with v1.17.0 release notes
  • Update native binding version checks to match new version

Reviewed Changes

Copilot reviewed 12 out of 13 changed files in this pull request and generated 1 comment.

Show a summary per file
File Description
npm/oxlint/package.json Version bump to 1.17.0
npm/oxlint/CHANGELOG.md Added v1.17.0 release notes
editors/vscode/package.json Version bump to 1.17.0
editors/vscode/CHANGELOG.md Added empty section for v1.17.0
crates/oxc_linter/Cargo.toml Version bump to 1.17.0
crates/oxc_linter/CHANGELOG.md Added v1.17.0 release notes
crates/oxc_language_server/Cargo.toml Version bump to 1.17.0
crates/oxc_language_server/CHANGELOG.md Added v1.17.0 release notes
apps/oxlint/src-js/bindings.js Updated native binding version checks to 1.17.0
apps/oxlint/package.json Version bump to 1.17.0
apps/oxlint/Cargo.toml Version bump to 1.17.0
apps/oxlint/CHANGELOG.md Added v1.17.0 release notes

Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.

Comment on lines +38 to +68
## [1.17.0] - 2025-09-19

### 🚀 Features

- b52389a node: Bump `engines` field to require Node.js 20.19.0+ for ESM support (#13879) (Copilot)
- c75ae8c linter/plugins: Add options to `Context` (#13810) (overlookmotel)
- 53d04dd linter: Convert `oxlint` to NAPI app (#13723) (overlookmotel)

### 🐛 Bug Fixes

- dd3843f linter: Set package version in `package.json` (#13890) (overlookmotel)
- fac7624 linter/plugins: Improve error for no JS plugins (#13858) (overlookmotel)

### 🚜 Refactor

- ac3e9e9 napi/parser: Move JS code into `src-js` directory (#13899) (overlookmotel)
- 7e0d736 linter/plugins: Rename `--experimental-js-plugins` to `--js-plugins` (#13860) (overlookmotel)
- 6245c8c linter/plugins: Make `Context` properties getters (#13809) (overlookmotel)
- a2342a6 linter/plugins: Import named in tests (#13807) (overlookmotel)

### ⚡ Performance

- a79af0a linter: Replace `for (... of ...)` loops (#13913) (overlookmotel)

### 🧪 Testing

- f51240e linter/plugins: Tests for different import styles (#13859) (overlookmotel)
- 407c95e linter/plugins: Check `this` is undefined in visit functions (#13811) (overlookmotel)
- f023a22 linter/plugins: Include stack trace in plugin loading errors (#13808) (overlookmotel)


Copy link

Copilot AI Sep 19, 2025

Choose a reason for hiding this comment

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

The changelog contains a duplicate entry for version 1.17.0. Remove the second occurrence starting at line 38.

Suggested change
## [1.17.0] - 2025-09-19
### 🚀 Features
- b52389a node: Bump `engines` field to require Node.js 20.19.0+ for ESM support (#13879) (Copilot)
- c75ae8c linter/plugins: Add options to `Context` (#13810) (overlookmotel)
- 53d04dd linter: Convert `oxlint` to NAPI app (#13723) (overlookmotel)
### 🐛 Bug Fixes
- dd3843f linter: Set package version in `package.json` (#13890) (overlookmotel)
- fac7624 linter/plugins: Improve error for no JS plugins (#13858) (overlookmotel)
### 🚜 Refactor
- ac3e9e9 napi/parser: Move JS code into `src-js` directory (#13899) (overlookmotel)
- 7e0d736 linter/plugins: Rename `--experimental-js-plugins` to `--js-plugins` (#13860) (overlookmotel)
- 6245c8c linter/plugins: Make `Context` properties getters (#13809) (overlookmotel)
- a2342a6 linter/plugins: Import named in tests (#13807) (overlookmotel)
### ⚡ Performance
- a79af0a linter: Replace `for (... of ...)` loops (#13913) (overlookmotel)
### 🧪 Testing
- f51240e linter/plugins: Tests for different import styles (#13859) (overlookmotel)
- 407c95e linter/plugins: Check `this` is undefined in visit functions (#13811) (overlookmotel)
- f023a22 linter/plugins: Include stack trace in plugin loading errors (#13808) (overlookmotel)

Copilot uses AI. Check for mistakes.
Comment on lines +38 to +68
## [1.17.0] - 2025-09-19

### 🚀 Features

- b52389a node: Bump `engines` field to require Node.js 20.19.0+ for ESM support (#13879) (Copilot)
- c75ae8c linter/plugins: Add options to `Context` (#13810) (overlookmotel)
- 53d04dd linter: Convert `oxlint` to NAPI app (#13723) (overlookmotel)

### 🐛 Bug Fixes

- dd3843f linter: Set package version in `package.json` (#13890) (overlookmotel)
- fac7624 linter/plugins: Improve error for no JS plugins (#13858) (overlookmotel)

### 🚜 Refactor

- ac3e9e9 napi/parser: Move JS code into `src-js` directory (#13899) (overlookmotel)
- 7e0d736 linter/plugins: Rename `--experimental-js-plugins` to `--js-plugins` (#13860) (overlookmotel)
- 6245c8c linter/plugins: Make `Context` properties getters (#13809) (overlookmotel)
- a2342a6 linter/plugins: Import named in tests (#13807) (overlookmotel)

### ⚡ Performance

- a79af0a linter: Replace `for (... of ...)` loops (#13913) (overlookmotel)

### 🧪 Testing

- f51240e linter/plugins: Tests for different import styles (#13859) (overlookmotel)
- 407c95e linter/plugins: Check `this` is undefined in visit functions (#13811) (overlookmotel)
- f023a22 linter/plugins: Include stack trace in plugin loading errors (#13808) (overlookmotel)


Copy link
Contributor

Choose a reason for hiding this comment

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

There appears to be a duplicate changelog entry for version 1.17.0 in the apps/oxlint/CHANGELOG.md file. The exact same release notes are repeated twice (lines 7-37 and lines 38-68). To maintain a clean and accurate changelog, please remove the second occurrence of the 1.17.0 release section.

Spotted by Diamond

Fix in Graphite


Is this helpful? React 👍 or 👎 to let us know.

@codspeed-hq
Copy link

codspeed-hq bot commented Sep 19, 2025

CodSpeed Instrumentation Performance Report

Merging #13921 will not alter performance

Comparing release/oxlint-1758274019 (d700662) with main (15eb326)1

Summary

✅ 37 untouched

Footnotes

  1. No successful run was found on main (bd2fa90) during the generation of this report, so 15eb326 was used instead as the comparison base. There might be some changes unrelated to this pull request in this report.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

A-cli Area - CLI A-editor Area - Editor and Language Server A-linter Area - Linter

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants