Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions apps/oxfmt/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@ All notable changes to this package will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0).

## [0.3.0] - 2025-09-19

### ๐Ÿ› Bug Fixes

- 55775ce oxfmt: Fix up the half-finished lines (#13840) (leaysgur)

### โšก Performance

- 59db021 oxfmt: Walk and format at the same time (#13838) (leaysgur)


## [0.2.0] - 2025-09-16

### ๐Ÿ’ฅ BREAKING CHANGES
Expand Down
2 changes: 1 addition & 1 deletion apps/oxfmt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxfmt"
version = "0.2.0"
version = "0.3.0"
authors.workspace = true
categories.workspace = true
edition.workspace = true
Expand Down
21 changes: 21 additions & 0 deletions crates/oxc_formatter/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,27 @@ All notable changes to this package will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0).

## [0.3.0] - 2025-09-19

### ๐Ÿš€ Features

- 2cead8b formatter: Keep parser options consistent for all formatter usages (#13884) (Dunqing)

### ๐Ÿ› Bug Fixes

- c96f7e9 formatter: Add parentheses for `await` and `yield` inside `PrivateInExpression` (#13863) (Noel Kim (๊น€๋ฏผํ˜))
- eae4845 formatter: Add parentheses for mixed types (#13862) (Noel Kim (๊น€๋ฏผํ˜))
- 57108c0 formatter: Keep computed name in enum (#13848) (Noel Kim (๊น€๋ฏผํ˜))
- 5c3645b formatter: Handle decorators correctly for class expressions in export (#13845) (Dunqing)
- 3cf1a41 formatter: Missing parenthesis for `TSAsExpression` (#13842) (Dunqing)
- 25edd03 formatter: Missing parenthesis for `TSTypeAssertion` (#13841) (Dunqing)
- 72144e9 formatter: Missing trailing semicolon in `TSSignature` (#13823) (Dunqing)
- f643093 formatter: Missing parenthesis for expression of `decorator` (#13813) (Dunqing)
- b43ad49 formatter: Add parentheses for `PrivateInExpression` in super class (#13806) (Noel Kim (๊น€๋ฏผํ˜))
- 7879f85 formatter: Add parentheses inside `UpdateExpression` (#13825) (Noel Kim (๊น€๋ฏผํ˜))
- 7371bad formatter: Add parentheses inside `TSIntersectionType` (#13821) (Noel Kim (๊น€๋ฏผํ˜))


## [0.2.0] - 2025-09-16

### ๐Ÿš€ Features
Expand Down
2 changes: 1 addition & 1 deletion crates/oxc_formatter/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxc_formatter"
version = "0.2.0"
version = "0.3.0"
authors.workspace = true
categories.workspace = true
edition.workspace = true
Expand Down
12 changes: 12 additions & 0 deletions npm/oxfmt/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,16 @@ All notable changes to this package will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0).

## [0.3.0] - 2025-09-19

### ๐Ÿš€ Features

- b52389a node: Bump `engines` field to require Node.js 20.19.0+ for ESM support (#13879) (Copilot)
- 25437db npm/oxfmt: Convert to ES modules (#13877) (Boshen)

### ๐Ÿ“š Documentation

- 2a35745 oxfmt: The current version does not work; DO NOT USE. (#13844) (Boshen)



2 changes: 1 addition & 1 deletion npm/oxfmt/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "oxfmt",
"version": "0.2.0",
"version": "0.3.0",
"type": "module",
"description": "Formatter for the JavaScript Oxidation Compiler",
"keywords": [],
Expand Down
Loading