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
46 changes: 23 additions & 23 deletions Cargo.lock

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

46 changes: 23 additions & 23 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -79,29 +79,29 @@ doc_lazy_continuation = "allow" # FIXME

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

# publish = false
oxc_linter = { path = "crates/oxc_linter" }
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.47.1"
version = "0.48.0"
authors.workspace = true
categories.workspace = true
edition.workspace = true
Expand Down
23 changes: 23 additions & 0 deletions crates/oxc_allocator/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,29 @@ 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.48.0] - 2025-01-24

### Features

- 2a2ad53 allocator: Add `Allocator::capacity` and `used_bytes` methods (#8621) (overlookmotel)
- 6801c81 allocator: Add `Allocator::new` and `with_capacity` methods (#8620) (overlookmotel)

### Performance

- 787aaad allocator: Make `String` non-drop (#8617) (overlookmotel)

### Documentation

- c1d243b allocator: Improve docs for `Allocator` (#8623) (overlookmotel)
- 01a5e5d allocator: Improve docs for `HashMap` (#8616) (overlookmotel)
- 87568a1 allocator: Reformat docs (#8615) (overlookmotel)

### Refactor

- ae8db53 allocator: Move `Allocator` into own module (#8656) (overlookmotel)
- 0f85bc6 allocator: Reduce repeat code to prevent `Drop` types in arena (#8655) (overlookmotel)
- de76eb1 allocator: Reorder `Box` methods (#8654) (overlookmotel)

## [0.47.0] - 2025-01-18

- fae4cd2 allocator: [**BREAKING**] Remove `Vec::into_string` (#8571) (overlookmotel)
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.47.1"
version = "0.48.0"
authors.workspace = true
categories.workspace = true
edition.workspace = true
Expand Down
7 changes: 7 additions & 0 deletions crates/oxc_ast/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ 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.48.0] - 2025-01-24

### Refactor

- 997859c ast: Align `#[estree(via)]` behavior (#8599) (sapphi-red)
- ac4f98e span: Derive `Copy` on `Atom` (#8596) (branchseer)

## [0.47.0] - 2025-01-18

- 19d3677 ast: [**BREAKING**] Always return `Array<ImportDeclarationSpecifier>` for `ImportDeclaration.specifiers` (#8560) (sapphi-red)
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.47.1"
version = "0.48.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.47.1"
version = "0.48.0"
authors.workspace = true
categories.workspace = true
edition.workspace = true
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.47.1"
version = "0.48.0"
authors.workspace = true
categories.workspace = true
edition.workspace = true
Expand Down
21 changes: 21 additions & 0 deletions crates/oxc_codegen/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/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0.

## [0.48.0] - 2025-01-24

### Features

- 99607d3 codegen: Print comments in `TSTypeLiteral` (#8679) (Boshen)

### Performance

- d966e0a codegen: Do not check for comments if turned off (#8598) (Boshen)

### Refactor

- db863a3 codegen: Use `Stack` for `binary_expr_stack` (#8663) (Boshen)
- 8cce69a codegen: Remove `match_member_expression` (#8597) (Boshen)
- a3dc4c3 crates: Clean up snapshot files (#8680) (Boshen)
- 23b49a6 linter: Use `cow_to_ascii_lowercase` instead `cow_to_lowercase` (#8678) (Boshen)

### Testing

- 39dbd2d codegen: Fix snapshot file (#8685) (Boshen)

## [0.47.0] - 2025-01-18

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