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

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

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

[workspace.dependencies]
# publish = true
oxc = { version = "0.70.0", path = "crates/oxc" }
oxc_allocator = { version = "0.70.0", path = "crates/oxc_allocator" }
oxc_ast = { version = "0.70.0", path = "crates/oxc_ast" }
oxc_ast_macros = { version = "0.70.0", path = "crates/oxc_ast_macros" }
oxc_ast_visit = { version = "0.70.0", path = "crates/oxc_ast_visit" }
oxc_cfg = { version = "0.70.0", path = "crates/oxc_cfg" }
oxc_codegen = { version = "0.70.0", path = "crates/oxc_codegen" }
oxc_data_structures = { version = "0.70.0", path = "crates/oxc_data_structures" }
oxc_diagnostics = { version = "0.70.0", path = "crates/oxc_diagnostics" }
oxc_ecmascript = { version = "0.70.0", path = "crates/oxc_ecmascript" }
oxc_estree = { version = "0.70.0", path = "crates/oxc_estree" }
oxc_isolated_declarations = { version = "0.70.0", path = "crates/oxc_isolated_declarations" }
oxc_mangler = { version = "0.70.0", path = "crates/oxc_mangler" }
oxc_minifier = { version = "0.70.0", path = "crates/oxc_minifier" }
oxc_napi = { version = "0.70.0", path = "crates/oxc_napi" }
oxc_parser = { version = "0.70.0", path = "crates/oxc_parser", features = ["regular_expression"] }
oxc_parser_napi = { version = "0.70.0", path = "napi/parser" }
oxc_regular_expression = { version = "0.70.0", path = "crates/oxc_regular_expression" }
oxc_semantic = { version = "0.70.0", path = "crates/oxc_semantic" }
oxc_span = { version = "0.70.0", path = "crates/oxc_span" }
oxc_syntax = { version = "0.70.0", path = "crates/oxc_syntax" }
oxc_transform_napi = { version = "0.70.0", path = "napi/transform" }
oxc_transformer = { version = "0.70.0", path = "crates/oxc_transformer" }
oxc_transformer_plugins = { version = "0.70.0", path = "crates/oxc_transformer_plugins" }
oxc_traverse = { version = "0.70.0", path = "crates/oxc_traverse" }
oxc = { version = "0.71.0", path = "crates/oxc" }
oxc_allocator = { version = "0.71.0", path = "crates/oxc_allocator" }
oxc_ast = { version = "0.71.0", path = "crates/oxc_ast" }
oxc_ast_macros = { version = "0.71.0", path = "crates/oxc_ast_macros" }
oxc_ast_visit = { version = "0.71.0", path = "crates/oxc_ast_visit" }
oxc_cfg = { version = "0.71.0", path = "crates/oxc_cfg" }
oxc_codegen = { version = "0.71.0", path = "crates/oxc_codegen" }
oxc_data_structures = { version = "0.71.0", path = "crates/oxc_data_structures" }
oxc_diagnostics = { version = "0.71.0", path = "crates/oxc_diagnostics" }
oxc_ecmascript = { version = "0.71.0", path = "crates/oxc_ecmascript" }
oxc_estree = { version = "0.71.0", path = "crates/oxc_estree" }
oxc_isolated_declarations = { version = "0.71.0", path = "crates/oxc_isolated_declarations" }
oxc_mangler = { version = "0.71.0", path = "crates/oxc_mangler" }
oxc_minifier = { version = "0.71.0", path = "crates/oxc_minifier" }
oxc_napi = { version = "0.71.0", path = "crates/oxc_napi" }
oxc_parser = { version = "0.71.0", path = "crates/oxc_parser", features = ["regular_expression"] }
oxc_parser_napi = { version = "0.71.0", path = "napi/parser" }
oxc_regular_expression = { version = "0.71.0", path = "crates/oxc_regular_expression" }
oxc_semantic = { version = "0.71.0", path = "crates/oxc_semantic" }
oxc_span = { version = "0.71.0", path = "crates/oxc_span" }
oxc_syntax = { version = "0.71.0", path = "crates/oxc_syntax" }
oxc_transform_napi = { version = "0.71.0", path = "napi/transform" }
oxc_transformer = { version = "0.71.0", path = "crates/oxc_transformer" }
oxc_transformer_plugins = { version = "0.71.0", path = "crates/oxc_transformer_plugins" }
oxc_traverse = { version = "0.71.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.70.0"
version = "0.71.0"
authors.workspace = true
categories.workspace = true
edition.workspace = true
Expand Down
27 changes: 27 additions & 0 deletions crates/oxc_allocator/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,33 @@ 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.71.0] - 2025-05-20

### Features

- c60382d allocator/vec2: Change `len` and `cap` fields from `usize` to `u32` (#10884) (Dunqing)

### Performance

- a6057c7 allocator/vec: Remove `SetLenOnDrop` (#11079) (overlookmotel)
- 7e69c08 allocator/vec: Remove `alloc_guard` from `RawVec::from_raw_parts_in` + clarify safety docs (#11073) (overlookmotel)
- 5dcd0f1 allocator/vec2: Reorder `RawVec` fields (#11050) (Dunqing)

### Documentation

- 7c84a56 allocator/vec: Correct safety comments for `RawVec::append_elements` (#11072) (overlookmotel)

### Refactor

- f081757 allocator/vec: Simplify comparison macros (#11178) (overlookmotel)
- b4b7d09 allocator/vec: Remove `RawVec::with_capacity_zeroed_in` (#11177) (overlookmotel)
- 44630a9 allocator/vec: Re-order arguments to `RawVec::from_raw_parts_in` (#11176) (overlookmotel)
- 31c5169 allocator/vec: Rename vars and lifetimes (#11175) (overlookmotel)
- aa76a16 allocator/vec: Re-order methods (#11080) (overlookmotel)
- 2f05c54 allocator/vec: Limit scope of `#[expect(clippy::cast_possible_truncation)]` (#11074) (overlookmotel)
- fc2f040 allocator/vec: Clarify comment (#11071) (overlookmotel)
- 7d54577 allocator/vec2: Move `len` field from `Vec` to `RawVec` (#10883) (Dunqing)

## [0.69.0] - 2025-05-09

### Bug Fixes
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.70.0"
version = "0.71.0"
authors.workspace = true
categories.workspace = true
edition.workspace = true
Expand Down
36 changes: 36 additions & 0 deletions crates/oxc_ast/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,42 @@ 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.71.0] - 2025-05-20

- 1a4fec0 codegen: [**BREAKING**] A legal comment can also be a jsdoc comment (#11158) (Boshen)

- 5d9344f rust: [**BREAKING**] Clippy avoid-breaking-exported-api = false (#11088) (Boshen)

### Features

- c60382d allocator/vec2: Change `len` and `cap` fields from `usize` to `u32` (#10884) (Dunqing)
- d47b305 ast/estree: Add `phase` field to `ImportExpression` in ESTree AST (#11165) (overlookmotel)
- 1bc8d29 ast/estree: Add `phase` field to `ImportDeclaration` in ESTree AST (#11157) (overlookmotel)
- 9e90e00 ast_tools: Introduce `#[js_only]` attr for struct fields and converters (#11160) (overlookmotel)

### Bug Fixes


### Performance

- 6571b9b ast: Use bitflags for storing comment newline state (#11096) (camchenry)
- 2b0a69f ast: Re-order struct fields to reduce padding (#11056) (overlookmotel)
- b9e51e2 ast: Reduce size of `Comment` to 16 bytes (#11062) (camchenry)

### Documentation

- e92bf1f napi: Update docs for `oxc-parser` (#11156) (overlookmotel)

### Refactor

- 20a4a8c ast: Shorten `CommentNewlines` methods (#11152) (overlookmotel)
- 58c7de6 ast: Rename `CommentNewlines` fields (#11151) (overlookmotel)
- e5438dc ast: Inline `Comment` newline flags setters (#11150) (overlookmotel)

### Styling

- b3519ca ast: Remove dummy comment (#11162) (overlookmotel)

## [0.70.0] - 2025-05-15

### Features
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.70.0"
version = "0.71.0"
authors.workspace = true
categories.workspace = true
edition.workspace = true
Expand Down
Loading
Loading