Skip to content

Commit b7fb7ba

Browse files
authored
release(oxlint): v1.18.0 (#14082)
1 parent 56db8fa commit b7fb7ba

File tree

13 files changed

+120
-59
lines changed

13 files changed

+120
-59
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/oxlint/CHANGELOG.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,52 @@ 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).
66

7+
## [1.18.0] - 2025-09-24
8+
9+
### 🐛 Bug Fixes
10+
11+
- 314c27d linter/plugins: `definePlugin` apply `defineRule` to rules (#14065) (overlookmotel)
12+
- 7bd01ed linter/plugins: `defineRule` call `createOnce` lazily (#14062) (overlookmotel)
13+
- fb3e7e3 linter/plugins: `defineRule` accept visitor with no `before` / `after` hooks (#14060) (overlookmotel)
14+
15+
### 🚜 Refactor
16+
17+
- 3a706a7 linter: Rename `LintRunner` to `CliRunner` (#14050) (camc314)
18+
19+
### ⚡ Performance
20+
21+
- ce538c7 linter/plugins: Load methods of globals into local vars (#14073) (overlookmotel)
22+
23+
### 🧪 Testing
24+
25+
- 2fd4b1e linter/plugins: Rename test (#14064) (overlookmotel)
26+
- f2b3934 linter/plugins: Test returning `false` from `before` hook skips visitation in ESLint (#14061) (overlookmotel)
27+
- b109419 linter/plugins: Align ESLint plugin with Oxlint (#14059) (overlookmotel)
28+
29+
30+
## [1.18.0] - 2025-09-24
31+
32+
### 🐛 Bug Fixes
33+
34+
- 314c27d linter/plugins: `definePlugin` apply `defineRule` to rules (#14065) (overlookmotel)
35+
- 7bd01ed linter/plugins: `defineRule` call `createOnce` lazily (#14062) (overlookmotel)
36+
- fb3e7e3 linter/plugins: `defineRule` accept visitor with no `before` / `after` hooks (#14060) (overlookmotel)
37+
38+
### 🚜 Refactor
39+
40+
- 3a706a7 linter: Rename `LintRunner` to `CliRunner` (#14050) (camc314)
41+
42+
### ⚡ Performance
43+
44+
- ce538c7 linter/plugins: Load methods of globals into local vars (#14073) (overlookmotel)
45+
46+
### 🧪 Testing
47+
48+
- 2fd4b1e linter/plugins: Rename test (#14064) (overlookmotel)
49+
- f2b3934 linter/plugins: Test returning `false` from `before` hook skips visitation in ESLint (#14061) (overlookmotel)
50+
- b109419 linter/plugins: Align ESLint plugin with Oxlint (#14059) (overlookmotel)
51+
52+
753
## [1.17.0] - 2025-09-23
854

955
### 🚀 Features

apps/oxlint/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "oxlint"
3-
version = "1.17.0"
3+
version = "1.18.0"
44
authors.workspace = true
55
categories.workspace = true
66
edition.workspace = true

apps/oxlint/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oxlint",
3-
"version": "1.17.0",
3+
"version": "1.18.0",
44
"type": "module",
55
"main": "dist/index.js",
66
"bin": "dist/cli.js",

apps/oxlint/src-js/bindings.js

Lines changed: 50 additions & 50 deletions
Large diffs are not rendered by default.

crates/oxc_language_server/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ 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).
66

7+
78
## [1.17.0] - 2025-09-23
89

910
### 🚀 Features

crates/oxc_language_server/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "oxc_language_server"
3-
version = "1.17.0"
3+
version = "1.18.0"
44
authors.workspace = true
55
categories.workspace = true
66
edition.workspace = true

crates/oxc_linter/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,18 @@ 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).
66

7+
## [1.18.0] - 2025-09-24
8+
9+
### 🐛 Bug Fixes
10+
11+
- 444fcf0 linter: Fix false positive in `vue/no-required-prop-with-default` (#14066) (yefan)
12+
- 2186b28 linter: Fix Arc<ModuleRecord> memory leak and lifecycle issues (#14049) (Boshen)
13+
14+
### ⚡ Performance
15+
16+
- c2f7459 language_server: Avoid cloning on message conversion (#14058) (Sysix)
17+
18+
719
## [1.17.0] - 2025-09-23
820

921
### 🚀 Features

crates/oxc_linter/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "oxc_linter"
3-
version = "1.17.0"
3+
version = "1.18.0"
44
authors.workspace = true
55
categories.workspace = true
66
edition.workspace = true

editors/vscode/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ 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).
66

7+
78
## [1.17.0] - 2025-09-23
89

910
### 🚀 Features

0 commit comments

Comments
 (0)