Skip to content

Commit 646c2ab

Browse files
committed
release(oxfmt): v0.8.0 (#14889)
## [0.8.0] - 2025-10-22 ### 🚀 Features - 381e08c oxfmt: More friendly JSON schema (#14879) (leaysgur) - 006708d oxfmt: Support `ignorePatterns` in oxfmtrc (#14875) (leaysgur) ### 🐛 Bug Fixes - 64b8226 formatter: Corrct printing leading own line comments before method body (#14886) (Dunqing) - 6ce1162 formatter: Remove a redundant space for TSMappedType (#14885) (Dunqing) - 5b962a7 formatter: Remove redundant leading space when only the rest part of the array exists (#14884) (Dunqing) - 8301d8f formatter: No need to wrap parenthesis for ObjectExpression when it is an expression of a template literal (#14883) (Dunqing) - 9397472 formatter: Should not wrap parenthesis for ComputedMemberExpression when it is not an option or it doesn't contain a call expression (#14882) (Dunqing) - 3e62277 formatter: Should not add a soft line for the arrow function inside ExpressionContainer with a trailing comment (#14878) (Dunqing) - 990916a formatter: Correct handling of leading own line before arrow function body (#14877) (Dunqing) - 4a499b5 formatter: Correct printing trailing comments for if statement with non-block consequent (#14857) (Dunqing) ### 🧪 Testing - 868ff99 formatter: Fix tests using TS syntax with `.js` (#14880) (leaysgur)
1 parent e3d65c3 commit 646c2ab

File tree

7 files changed

+43
-5
lines changed

7 files changed

+43
-5
lines changed

Cargo.lock

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

apps/oxfmt/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+
## [0.8.0] - 2025-10-22
8+
9+
### 🚀 Features
10+
11+
- 006708d oxfmt: Support `ignorePatterns` in oxfmtrc (#14875) (leaysgur)
12+
13+
714
## [0.7.0] - 2025-10-21
815

916
### 🚀 Features

apps/oxfmt/Cargo.toml

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

crates/oxc_formatter/CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,29 @@ 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+
## [0.8.0] - 2025-10-22
8+
9+
### 🚀 Features
10+
11+
- 381e08c oxfmt: More friendly JSON schema (#14879) (leaysgur)
12+
- 006708d oxfmt: Support `ignorePatterns` in oxfmtrc (#14875) (leaysgur)
13+
14+
### 🐛 Bug Fixes
15+
16+
- 64b8226 formatter: Corrct printing leading own line comments before method body (#14886) (Dunqing)
17+
- 6ce1162 formatter: Remove a redundant space for TSMappedType (#14885) (Dunqing)
18+
- 5b962a7 formatter: Remove redundant leading space when only the rest part of the array exists (#14884) (Dunqing)
19+
- 8301d8f formatter: No need to wrap parenthesis for ObjectExpression when it is an expression of a template literal (#14883) (Dunqing)
20+
- 9397472 formatter: Should not wrap parenthesis for ComputedMemberExpression when it is not an option or it doesn't contain a call expression (#14882) (Dunqing)
21+
- 3e62277 formatter: Should not add a soft line for the arrow function inside ExpressionContainer with a trailing comment (#14878) (Dunqing)
22+
- 990916a formatter: Correct handling of leading own line before arrow function body (#14877) (Dunqing)
23+
- 4a499b5 formatter: Correct printing trailing comments for if statement with non-block consequent (#14857) (Dunqing)
24+
25+
### 🧪 Testing
26+
27+
- 868ff99 formatter: Fix tests using TS syntax with `.js` (#14880) (leaysgur)
28+
29+
730
## [0.7.0] - 2025-10-21
831

932
### 🚀 Features

crates/oxc_formatter/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_formatter"
3-
version = "0.7.0"
3+
version = "0.8.0"
44
authors.workspace = true
55
categories.workspace = true
66
edition.workspace = true

npm/oxfmt/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ 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+
## [0.8.0] - 2025-10-22
8+
9+
### 🚀 Features
10+
11+
- 381e08c oxfmt: More friendly JSON schema (#14879) (leaysgur)
12+
- 006708d oxfmt: Support `ignorePatterns` in oxfmtrc (#14875) (leaysgur)
13+
14+
715

816
## [0.6.0] - 2025-10-20
917

npm/oxfmt/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oxfmt",
3-
"version": "0.7.0",
3+
"version": "0.8.0",
44
"type": "module",
55
"description": "Formatter for the JavaScript Oxidation Compiler",
66
"keywords": [],

0 commit comments

Comments
 (0)