Skip to content

Commit 9c5a377

Browse files
authored
release(oxlint): v1.11.1 (#12928)
1 parent b9f200f commit 9c5a377

File tree

11 files changed

+65
-8
lines changed

11 files changed

+65
-8
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: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,23 @@ 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.11.1] - 2025-08-09
8+
9+
### 🐛 Bug Fixes
10+
11+
- 7fc907f linter: Resolve configured rules for every file linted by `tsgolint` (#12886) (camchenry)
12+
13+
### 🚜 Refactor
14+
15+
- c072e01 all: Add missing lifetimes in function return types (#12895) (overlookmotel)
16+
17+
### 🧪 Testing
18+
19+
- 9d946aa oxlint: Skip `--type--aware` test for `big-endian` (#12911) (Sysix)
20+
- 695fbdd oxlint: Fix `--type-aware` test on `big-endian` and skip for `windows` (#12910) (Sysix)
21+
- 38118ab oxlint: Fix `--type-aware` snapshot + add non tsgolint rule (#12909) (Sysix)
22+
23+
724
## [1.11.0] - 2025-08-07
825

926
### 🚀 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.11.0"
3+
version = "1.11.1"
44
authors.workspace = true
55
categories.workspace = true
66
edition.workspace = true

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.11.0] - 2025-08-07
89

910
### 🚜 Refactor

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.11.0"
3+
version = "1.11.1"
44
authors.workspace = true
55
categories.workspace = true
66
edition.workspace = true

crates/oxc_linter/CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,33 @@ 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.11.1] - 2025-08-09
8+
9+
### 🐛 Bug Fixes
10+
11+
- c8e200c linter: `react/jsx-curly-brace-presence` report for JSXAttributeItem with quote char inside (#12888) (Sysix)
12+
- dac0f33 linter: `react/jsx-curly-brace-presence` report for JSXAttributeItem with padding space (#12887) (Sysix)
13+
14+
### 🚜 Refactor
15+
16+
- 51aaafd rust: Enable `unnecessary_unwrap` lint (#12908) (camc314)
17+
- 106e7a7 linter/expect-expect: Use visitor pattern to detect `expect` calls (#12906) (camc314)
18+
- 238b183 linter: Use `fast-glob` instead of `globset` for `GlobSet` (#12870) (shulaoda)
19+
- c072e01 all: Add missing lifetimes in function return types (#12895) (overlookmotel)
20+
- 9e3963f linter: Allow marking rule as a tsgolint rule (#12890) (Cam McHenry)
21+
- 6437a3b linter/label-has-associated-control: Remove unnecessary globset (#12863) (shulaoda)
22+
- 78c311c linter/no-unassigned-import: Use `fast-glob` instead of `globset` (#12867) (shulaoda)
23+
- fcdb91d linter/no-restricted-imports: Use `fast-glob` instead of `globset` (#12868) (shulaoda)
24+
25+
### ⚡ Performance
26+
27+
- d94209b linter/new-cap: Remove unneeded clone (#12883) (camc314)
28+
29+
### 🧪 Testing
30+
31+
- 281f939 linter/expect-expect: Add test case for `expect` call in for loop (#12907) (camc314)
32+
33+
734
## [1.11.0] - 2025-08-07
835

936
### 🚀 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.11.0"
3+
version = "1.11.1"
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
@@ -5,6 +5,7 @@ All notable changes to this package will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0).
66

77

8+
89
## [1.10.0] - 2025-08-06
910

1011
### 🚀 Features

editors/vscode/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "oxc-vscode",
33
"description": "oxc vscode extension",
44
"license": "MIT",
5-
"version": "1.11.0",
5+
"version": "1.11.1",
66
"icon": "icon.png",
77
"publisher": "oxc",
88
"displayName": "Oxc",

npm/oxlint/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,17 @@ 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.11.1] - 2025-08-09
8+
9+
### 🐛 Bug Fixes
10+
11+
- 8c57153 npm/oxlint: Fix `oxlint-tsgolint` version range for yarn (Boshen)
12+
13+
### 🚜 Refactor
14+
15+
- 238b183 linter: Use `fast-glob` instead of `globset` for `GlobSet` (#12870) (shulaoda)
16+
17+
718
## [1.11.0] - 2025-08-07
819

920
### 🚀 Features

0 commit comments

Comments
 (0)