Skip to content
Merged
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
48 changes: 24 additions & 24 deletions Cargo.lock

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

48 changes: 24 additions & 24 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -104,30 +104,30 @@ doc_lazy_continuation = "allow" # FIXME

[workspace.dependencies]
# publish = true
oxc = { version = "0.62.0", path = "crates/oxc" }
oxc_allocator = { version = "0.62.0", path = "crates/oxc_allocator" }
oxc_ast = { version = "0.62.0", path = "crates/oxc_ast" }
oxc_ast_macros = { version = "0.62.0", path = "crates/oxc_ast_macros" }
oxc_ast_visit = { version = "0.62.0", path = "crates/oxc_ast_visit" }
oxc_cfg = { version = "0.62.0", path = "crates/oxc_cfg" }
oxc_codegen = { version = "0.62.0", path = "crates/oxc_codegen" }
oxc_data_structures = { version = "0.62.0", path = "crates/oxc_data_structures" }
oxc_diagnostics = { version = "0.62.0", path = "crates/oxc_diagnostics" }
oxc_ecmascript = { version = "0.62.0", path = "crates/oxc_ecmascript" }
oxc_estree = { version = "0.62.0", path = "crates/oxc_estree" }
oxc_isolated_declarations = { version = "0.62.0", path = "crates/oxc_isolated_declarations" }
oxc_mangler = { version = "0.62.0", path = "crates/oxc_mangler" }
oxc_minifier = { version = "0.62.0", path = "crates/oxc_minifier" }
oxc_napi = { version = "0.62.0", path = "crates/oxc_napi" }
oxc_parser = { version = "0.62.0", path = "crates/oxc_parser", features = ["regular_expression"] }
oxc_parser_napi = { version = "0.62.0", path = "napi/parser" }
oxc_regular_expression = { version = "0.62.0", path = "crates/oxc_regular_expression" }
oxc_semantic = { version = "0.62.0", path = "crates/oxc_semantic" }
oxc_span = { version = "0.62.0", path = "crates/oxc_span" }
oxc_syntax = { version = "0.62.0", path = "crates/oxc_syntax" }
oxc_transform_napi = { version = "0.62.0", path = "napi/transform" }
oxc_transformer = { version = "0.62.0", path = "crates/oxc_transformer" }
oxc_traverse = { version = "0.62.0", path = "crates/oxc_traverse" }
oxc = { version = "0.63.0", path = "crates/oxc" }
oxc_allocator = { version = "0.63.0", path = "crates/oxc_allocator" }
oxc_ast = { version = "0.63.0", path = "crates/oxc_ast" }
oxc_ast_macros = { version = "0.63.0", path = "crates/oxc_ast_macros" }
oxc_ast_visit = { version = "0.63.0", path = "crates/oxc_ast_visit" }
oxc_cfg = { version = "0.63.0", path = "crates/oxc_cfg" }
oxc_codegen = { version = "0.63.0", path = "crates/oxc_codegen" }
oxc_data_structures = { version = "0.63.0", path = "crates/oxc_data_structures" }
oxc_diagnostics = { version = "0.63.0", path = "crates/oxc_diagnostics" }
oxc_ecmascript = { version = "0.63.0", path = "crates/oxc_ecmascript" }
oxc_estree = { version = "0.63.0", path = "crates/oxc_estree" }
oxc_isolated_declarations = { version = "0.63.0", path = "crates/oxc_isolated_declarations" }
oxc_mangler = { version = "0.63.0", path = "crates/oxc_mangler" }
oxc_minifier = { version = "0.63.0", path = "crates/oxc_minifier" }
oxc_napi = { version = "0.63.0", path = "crates/oxc_napi" }
oxc_parser = { version = "0.63.0", path = "crates/oxc_parser", features = ["regular_expression"] }
oxc_parser_napi = { version = "0.63.0", path = "napi/parser" }
oxc_regular_expression = { version = "0.63.0", path = "crates/oxc_regular_expression" }
oxc_semantic = { version = "0.63.0", path = "crates/oxc_semantic" }
oxc_span = { version = "0.63.0", path = "crates/oxc_span" }
oxc_syntax = { version = "0.63.0", path = "crates/oxc_syntax" }
oxc_transform_napi = { version = "0.63.0", path = "napi/transform" }
oxc_transformer = { version = "0.63.0", path = "crates/oxc_transformer" }
oxc_traverse = { version = "0.63.0", path = "crates/oxc_traverse" }

# publish = false
oxc_formatter = { path = "crates/oxc_formatter" }
Expand Down
2 changes: 1 addition & 1 deletion crates/oxc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxc"
version = "0.62.0"
version = "0.63.0"
authors.workspace = true
categories.workspace = true
edition.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions crates/oxc_allocator/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ 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/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0.

## [0.63.0] - 2025-04-08

### Features

- c198578 allocator: Add `TakeIn::take_in_box` method (#10169) (Dunqing)

## [0.62.0] - 2025-04-01

### Features
Expand Down
2 changes: 1 addition & 1 deletion crates/oxc_allocator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxc_allocator"
version = "0.62.0"
version = "0.63.0"
authors.workspace = true
categories.workspace = true
edition.workspace = true
Expand Down
45 changes: 45 additions & 0 deletions crates/oxc_ast/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,51 @@ 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/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0.

## [0.63.0] - 2025-04-08

- a26fd34 ast: [**BREAKING**] Remove `JSXOpeningElement::self_closing` field (#10275) (overlookmotel)

- 5ad41c9 ast: [**BREAKING**] Remove unnecessary `AstBuilder::alloc_*` methods (#10267) (overlookmotel)

- 14ff99c ast: [**BREAKING**] Remove all `AstBuilder::move_xxxx` methods (#10171) (Dunqing)

### Features

- 8bbaedc ast_tools: Derive `Hash` for `AstType` (#10212) (lazytype)

### Bug Fixes

- 08a0d5e ast: Fix `Display` impl for `RegExpFlags` (#10235) (overlookmotel)
- e42c040 ast/estree: Add TS fields to `LabelIdentifier` (#10295) (overlookmotel)
- 06fc07c ast/estree: Fix `TSImportType` (#10200) (therewillbecode)
- 760188e ast/estree: Fix `BindingProperty` (#10193) (therewillbecode)
- db0b2eb ast/estree: Add ts-estree fields to `FormalParametersRest` custom serializer (#10192) (therewillbecode)
- abc9ea4 ast/estree: Better align program span start (#10134) (therewillbecode)
- f547d76 ast/estree: Add `TSEnumBody` to `TSEnumDeclaration.body` (#10017) (Yuji Sugiura)
- 34d5c00 ast/estree: Fix `ExportDefaultDeclaration` node (#10165) (therewillbecode)
- 498b479 ast/estree: Fix `AccessorProperty` node (#10067) (therewillbecode)
- bf90072 ast/estree: Fix `ObjectProperty` node (#10018) (therewillbecode)
- 27768a5 parser: Store lone surrogates in `TemplateElementValue` as escape sequence (#10182) (overlookmotel)

### Performance

- 5b4c2ae ast: Remove `write!` macro where unnecessary (#10234) (overlookmotel)

### Documentation

- 4d33af7 ast: Correct comment (#10176) (overlookmotel)

### Refactor

- 5525206 ast/estree: Simplify static converters (#10197) (overlookmotel)
- b662df4 ast/estree: Alter `Program` start span with converter (#10195) (overlookmotel)

### Styling

- 66a0001 all: Remove unnecessary semi-colons (#10198) (overlookmotel)
- 2dde8be ast: Reformat AST types (#10278) (overlookmotel)
- c290faa ast: Reformat `AstBuilder` doc comments (#10263) (overlookmotel)

## [0.62.0] - 2025-04-01

- 45015ee ast: [**BREAKING**] Remove unused `Function::symbol_id` method (#10061) (Dunqing)
Expand Down
2 changes: 1 addition & 1 deletion crates/oxc_ast/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxc_ast"
version = "0.62.0"
version = "0.63.0"
authors.workspace = true
categories.workspace = true
edition.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/oxc_ast_macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxc_ast_macros"
version = "0.62.0"
version = "0.63.0"
authors.workspace = true
categories.workspace = true
edition.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/oxc_ast_visit/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxc_ast_visit"
version = "0.62.0"
version = "0.63.0"
authors.workspace = true
categories.workspace = true
edition.workspace = true
Expand Down
10 changes: 10 additions & 0 deletions crates/oxc_cfg/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +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/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0.

## [0.63.0] - 2025-04-08

### Performance

- fa0e455 cfg, diagnostics, lexer, syntax, tasks: Remove `write!` macro where unnecessary (#10236) (overlookmotel)

### Styling

- 66a0001 all: Remove unnecessary semi-colons (#10198) (overlookmotel)

## [0.52.0] - 2025-02-21

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion crates/oxc_cfg/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxc_cfg"
version = "0.62.0"
version = "0.63.0"
authors.workspace = true
categories.workspace = true
edition.workspace = true
Expand Down
Loading
Loading