Skip to content

Commit 28cacac

Browse files
authored
release(oxfmt): v0.3.0 (#13909)
1 parent fa74c94 commit 28cacac

File tree

7 files changed

+49
-5
lines changed

7 files changed

+49
-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: 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+
## [0.3.0] - 2025-09-19
8+
9+
### 🐛 Bug Fixes
10+
11+
- 55775ce oxfmt: Fix up the half-finished lines (#13840) (leaysgur)
12+
13+
### ⚡ Performance
14+
15+
- 59db021 oxfmt: Walk and format at the same time (#13838) (leaysgur)
16+
17+
718
## [0.2.0] - 2025-09-16
819

920
### 💥 BREAKING CHANGES

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

crates/oxc_formatter/CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,27 @@ 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.3.0] - 2025-09-19
8+
9+
### 🚀 Features
10+
11+
- 2cead8b formatter: Keep parser options consistent for all formatter usages (#13884) (Dunqing)
12+
13+
### 🐛 Bug Fixes
14+
15+
- c96f7e9 formatter: Add parentheses for `await` and `yield` inside `PrivateInExpression` (#13863) (Noel Kim (김민혁))
16+
- eae4845 formatter: Add parentheses for mixed types (#13862) (Noel Kim (김민혁))
17+
- 57108c0 formatter: Keep computed name in enum (#13848) (Noel Kim (김민혁))
18+
- 5c3645b formatter: Handle decorators correctly for class expressions in export (#13845) (Dunqing)
19+
- 3cf1a41 formatter: Missing parenthesis for `TSAsExpression` (#13842) (Dunqing)
20+
- 25edd03 formatter: Missing parenthesis for `TSTypeAssertion` (#13841) (Dunqing)
21+
- 72144e9 formatter: Missing trailing semicolon in `TSSignature` (#13823) (Dunqing)
22+
- f643093 formatter: Missing parenthesis for expression of `decorator` (#13813) (Dunqing)
23+
- b43ad49 formatter: Add parentheses for `PrivateInExpression` in super class (#13806) (Noel Kim (김민혁))
24+
- 7879f85 formatter: Add parentheses inside `UpdateExpression` (#13825) (Noel Kim (김민혁))
25+
- 7371bad formatter: Add parentheses inside `TSIntersectionType` (#13821) (Noel Kim (김민혁))
26+
27+
728
## [0.2.0] - 2025-09-16
829

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

npm/oxfmt/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,16 @@ 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.3.0] - 2025-09-19
8+
9+
### 🚀 Features
10+
11+
- b52389a node: Bump `engines` field to require Node.js 20.19.0+ for ESM support (#13879) (Copilot)
12+
- 25437db npm/oxfmt: Convert to ES modules (#13877) (Boshen)
13+
14+
### 📚 Documentation
15+
16+
- 2a35745 oxfmt: The current version does not work; DO NOT USE. (#13844) (Boshen)
17+
18+
719

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

0 commit comments

Comments
 (0)