Skip to content

Commit f3b75c3

Browse files
committed
release(oxfmt): v0.7.0 (#14851)
## [0.7.0] - 2025-10-21 ### 🚀 Features - 6dfcd80 oxfmt: Search both .json and .jsonc config file (#14848) (leaysgur) - aa024d9 formatter: Wrap parenthesis for `AssignmentExpression` that are inside `ComputedMemberExpression` (#14834) (Dunqing) ### 🐛 Bug Fixes - 88fb768 formatter: Correct handling of ignore comment for `TSUnionType` and `TSMappedType` (#14824) (Dunqing) - f7727c7 formatter: Ignore comment doesn't work for the expression statement (#14817) (Dunqing) - 7a420a1 oxfmt: Handle `.d.ts` file correctly (#14835) (leaysgur) ### 🚜 Refactor - 6fa7420 oxfmt: Use custom ignore builder (#14850) (leaysgur) - 9d914a3 formatter: Improve comments handling (#14816) (Dunqing) - f52863d formatter: Improve handling of type cast node (#14815) (Dunqing)
1 parent 6fa7420 commit f3b75c3

File tree

7 files changed

+39
-5
lines changed

7 files changed

+39
-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: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,21 @@ 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.7.0] - 2025-10-21
8+
9+
### 🚀 Features
10+
11+
- 6dfcd80 oxfmt: Search both .json and .jsonc config file (#14848) (leaysgur)
12+
13+
### 🐛 Bug Fixes
14+
15+
- 7a420a1 oxfmt: Handle `.d.ts` file correctly (#14835) (leaysgur)
16+
17+
### 🚜 Refactor
18+
19+
- 6fa7420 oxfmt: Use custom ignore builder (#14850) (leaysgur)
20+
21+
722
## [0.6.0] - 2025-10-20
823

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

crates/oxc_formatter/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,24 @@ 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.7.0] - 2025-10-21
8+
9+
### 🚀 Features
10+
11+
- aa024d9 formatter: Wrap parenthesis for `AssignmentExpression` that are inside `ComputedMemberExpression` (#14834) (Dunqing)
12+
13+
### 🐛 Bug Fixes
14+
15+
- 88fb768 formatter: Correct handling of ignore comment for `TSUnionType` and `TSMappedType` (#14824) (Dunqing)
16+
- f7727c7 formatter: Ignore comment doesn't work for the expression statement (#14817) (Dunqing)
17+
- 7a420a1 oxfmt: Handle `.d.ts` file correctly (#14835) (leaysgur)
18+
19+
### 🚜 Refactor
20+
21+
- 9d914a3 formatter: Improve comments handling (#14816) (Dunqing)
22+
- f52863d formatter: Improve handling of type cast node (#14815) (Dunqing)
23+
24+
725
## [0.6.0] - 2025-10-20
826

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

npm/oxfmt/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
## [0.6.0] - 2025-10-20
89

910
### 🚀 Features

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.6.0",
3+
"version": "0.7.0",
44
"type": "module",
55
"description": "Formatter for the JavaScript Oxidation Compiler",
66
"keywords": [],

0 commit comments

Comments
 (0)