Skip to content

Commit d199f50

Browse files
camc314github-actions[bot]
authored andcommitted
chore(release): oxlint) v1.8.0
1 parent 2d9291c commit d199f50

File tree

11 files changed

+56
-8
lines changed

11 files changed

+56
-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: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ 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.8.0] - 2025-07-22
8+
9+
### 🐛 Bug Fixes
10+
11+
- 46e33d5 linter: Improve error handling in config file lookup (#12391) (camc314)
12+
13+
714
## [1.7.0] - 2025-07-16
815

916
### 🚀 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.7.0"
3+
version = "1.8.0"
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.7.0] - 2025-07-16
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.7.0"
3+
version = "1.8.0"
44
authors.workspace = true
55
categories.workspace = true
66
edition.workspace = true

crates/oxc_linter/CHANGELOG.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,44 @@ 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.8.0] - 2025-07-22
8+
9+
### 🚀 Features
10+
11+
- 6d2b549 napi/oxlint: Pass AST in buffer to JS (#12350) (overlookmotel)
12+
- 14f0159 linter/exhaustive-deps: Add auto-fixer (#12354) (Don Isaac)
13+
14+
### 🐛 Bug Fixes
15+
16+
- 99e105f linter: Correct autofix in `unicorn/prefer-number-properties` for Infinity (#12445) (yefan)
17+
- 0b539e3 linter: `unicorn/catch-error-name` wasn't using the ignore property (#12446) (Parbez)
18+
- 05fba9b linter: Don't panic on `TSNonNullExpression` in `unicorn/prefer-array-find` (#12400) (Sysix)
19+
- 4621872 linter: Parse second script block for `svelte` files (#12390) (Sysix)
20+
- fbe7eb4 linter/filename-case: Fix default config when no config is provided (#12389) (camc314)
21+
- fea9df4 linter: Report errors with the correct severity for custom plugins (#12362) (camc314)
22+
- 652c038 linter: Mark correctly enabled default rules for `--rules` (#12163) (Sysix)
23+
- eadc359 linter: Correct source text for vue files having script attributes containig ">" char inside (#12375) (Sysix)
24+
- 54d143a linter/exhaustive-deps: More descriptive messages for always-rerender violations (#12336) (Don Isaac)
25+
- dac4db9 linter/exhaustive-deps: Better diagnostics for missing dependencies (#12337) (Don Isaac)
26+
- 119d23a linter/prefer-array-flat-map: Error for `.flat(1.0)` (#12360) (overlookmotel)
27+
28+
### 🚜 Refactor
29+
30+
- 2d9291c linter/prefer-number-properties: Simplify fixer logic (#12451) (camc314)
31+
- c5dff1e linter, napi/parser: Add `source_len` field to `RawTransferMetadata` (#12383) (overlookmotel)
32+
- 5e3b415 linter: Duplicate `RawTransferMetadata` in `oxc_linter` crate (#12382) (overlookmotel)
33+
- 773fd88 linter: Pass `&Allocator` into `Linter::run_external_rules` (#12374) (overlookmotel)
34+
- b10ed11 linter: Make unwrap unconditional (#12371) (overlookmotel)
35+
- a0631d4 linter: Move running external rules into feature-gated function (#12370) (overlookmotel)
36+
- 4fc4e7c linter: Make feature gates for `oxlint2` feature consistent (#12369) (overlookmotel)
37+
- 50b1786 linter: Clarify usage of `Allocator` and `AllocatorGuard` (#12332) (overlookmotel)
38+
- 26d3a39 linter: Remove `ModuleContentOwner` abstraction (#12331) (overlookmotel)
39+
40+
### 📚 Documentation
41+
42+
- 3c21d94 linter: Correct comment on `RawTransferMetadata2` type (#12428) (overlookmotel)
43+
44+
745
## [1.7.0] - 2025-07-16
846

947
### 🚀 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.7.0"
3+
version = "1.8.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
@@ -8,6 +8,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0).
88

99

1010

11+
1112
## [1.3.0] - 2025-06-23
1213

1314
### 🚀 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.7.0",
5+
"version": "1.8.0",
66
"icon": "icon.png",
77
"publisher": "oxc",
88
"displayName": "Oxc",

npm/oxlint/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.7.0] - 2025-07-16
89

910
### 🚀 Features

0 commit comments

Comments
 (0)