Skip to content

Commit 38aea54

Browse files
authored
release(crates): oxc v0.124.0 (#21084)
### 🐛 Bug Fixes - fc7f60c allocator: Revert changes to `get_current_chunk_footer_field_offset` (#20964) (overlookmotel) - 31316c8 semantic: Rebind class expressions before identifier checks (#20916) (camc314) ### ⚡ Performance - fb52383 napi/parser, linter/plugins: Clear buffers and source texts earlier (#21025) (overlookmotel) - 3b7dec4 napi/parser, linter/plugins: Use `utf8Slice` for decoding UTF-8 strings (#21022) (overlookmotel) - 012c924 napi/parser, linter/plugins: Speed up decoding strings in raw transfer (#21021) (overlookmotel) - 55e1e9b napi/parser, linter/plugins: Initialize vars as 0 (#21020) (overlookmotel) - c25ef02 napi/parser, linter/plugins: Simplify branch condition in `deserializeStr` (#21019) (overlookmotel) - 9f494c3 napi/parser, linter/plugins: Raw transfer use `String.fromCharCode` in string decoding (#21018) (overlookmotel) - 91cf105 allocator: Increase initial chunk size from 512B to 16KB (#20968) (overlookmotel) - cbc0c21 allocator: Add `#[cold]` to to error handling functions (#20967) (overlookmotel) - 0503a78 napi/parser, linter/plugins: Faster deserialization of `raw` fields (#20923) (overlookmotel) - a24f75e napi/parser: Optimize string deserialization for non-ASCII sources (#20834) (Joshua Tuddenham) ### 📚 Documentation - c78a57a syntax: Fix typo (#21044) (camc314) - f5e228f allocator: Fix typo in comment (#20972) (overlookmotel) - 7159d51 allocator: Improve doc comment examples for `vec2::Vec` (#20969) (overlookmotel) - b1da750 allocator, data_structures: Correct comments (#20966) (overlookmotel) Co-authored-by: Boshen <[email protected]>
1 parent 629fbc1 commit 38aea54

46 files changed

Lines changed: 305 additions & 251 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Cargo.lock

Lines changed: 30 additions & 30 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -105,38 +105,38 @@ multiple_crate_versions = "allow"
105105

106106
[workspace.dependencies]
107107
# publish = true
108-
oxc = { version = "0.123.0", path = "crates/oxc" } # Main entry point
109-
oxc_allocator = { version = "0.123.0", path = "crates/oxc_allocator" } # Memory management
110-
oxc_ast = { version = "0.123.0", path = "crates/oxc_ast" } # AST definitions
111-
oxc_ast_macros = { version = "0.123.0", path = "crates/oxc_ast_macros" } # AST proc macros
112-
oxc_ast_visit = { version = "0.123.0", path = "crates/oxc_ast_visit" } # AST visitor pattern
113-
oxc_cfg = { version = "0.123.0", path = "crates/oxc_cfg" } # Control flow graph
114-
oxc_codegen = { version = "0.123.0", path = "crates/oxc_codegen", default-features = false } # Code generation
115-
oxc_compat = { version = "0.123.0", path = "crates/oxc_compat" } # Browser compatibility
116-
oxc_data_structures = { version = "0.123.0", path = "crates/oxc_data_structures" } # Shared data structures
117-
oxc_diagnostics = { version = "0.123.0", path = "crates/oxc_diagnostics" } # Error reporting
118-
oxc_ecmascript = { version = "0.123.0", path = "crates/oxc_ecmascript" } # ECMAScript operations
119-
oxc_estree = { version = "0.123.0", path = "crates/oxc_estree" } # ESTree format
120-
oxc_estree_tokens = { version = "0.123.0", path = "crates/oxc_estree_tokens" } # ESTree token conversion
121-
oxc_isolated_declarations = { version = "0.123.0", path = "crates/oxc_isolated_declarations" } # TS declaration generation
122-
oxc_jsdoc = { version = "0.123.0", path = "crates/oxc_jsdoc" } # JSDoc parsing
123-
oxc_mangler = { version = "0.123.0", path = "crates/oxc_mangler" } # Name mangling
124-
oxc_minifier = { version = "0.123.0", path = "crates/oxc_minifier" } # Code minification
125-
oxc_minify_napi = { version = "0.123.0", path = "napi/minify" } # Node.js minifier binding
126-
oxc_napi = { version = "0.123.0", path = "crates/oxc_napi" } # NAPI utilities
127-
oxc_parser = { version = "0.123.0", path = "crates/oxc_parser", features = [
108+
oxc = { version = "0.124.0", path = "crates/oxc" } # Main entry point
109+
oxc_allocator = { version = "0.124.0", path = "crates/oxc_allocator" } # Memory management
110+
oxc_ast = { version = "0.124.0", path = "crates/oxc_ast" } # AST definitions
111+
oxc_ast_macros = { version = "0.124.0", path = "crates/oxc_ast_macros" } # AST proc macros
112+
oxc_ast_visit = { version = "0.124.0", path = "crates/oxc_ast_visit" } # AST visitor pattern
113+
oxc_cfg = { version = "0.124.0", path = "crates/oxc_cfg" } # Control flow graph
114+
oxc_codegen = { version = "0.124.0", path = "crates/oxc_codegen", default-features = false } # Code generation
115+
oxc_compat = { version = "0.124.0", path = "crates/oxc_compat" } # Browser compatibility
116+
oxc_data_structures = { version = "0.124.0", path = "crates/oxc_data_structures" } # Shared data structures
117+
oxc_diagnostics = { version = "0.124.0", path = "crates/oxc_diagnostics" } # Error reporting
118+
oxc_ecmascript = { version = "0.124.0", path = "crates/oxc_ecmascript" } # ECMAScript operations
119+
oxc_estree = { version = "0.124.0", path = "crates/oxc_estree" } # ESTree format
120+
oxc_estree_tokens = { version = "0.124.0", path = "crates/oxc_estree_tokens" } # ESTree token conversion
121+
oxc_isolated_declarations = { version = "0.124.0", path = "crates/oxc_isolated_declarations" } # TS declaration generation
122+
oxc_jsdoc = { version = "0.124.0", path = "crates/oxc_jsdoc" } # JSDoc parsing
123+
oxc_mangler = { version = "0.124.0", path = "crates/oxc_mangler" } # Name mangling
124+
oxc_minifier = { version = "0.124.0", path = "crates/oxc_minifier" } # Code minification
125+
oxc_minify_napi = { version = "0.124.0", path = "napi/minify" } # Node.js minifier binding
126+
oxc_napi = { version = "0.124.0", path = "crates/oxc_napi" } # NAPI utilities
127+
oxc_parser = { version = "0.124.0", path = "crates/oxc_parser", features = [
128128
"regular_expression",
129129
] } # JS/TS parser
130-
oxc_parser_napi = { version = "0.123.0", path = "napi/parser" } # Node.js parser binding
131-
oxc_regular_expression = { version = "0.123.0", path = "crates/oxc_regular_expression" } # Regex parser
132-
oxc_semantic = { version = "0.123.0", path = "crates/oxc_semantic" } # Semantic analysis
133-
oxc_span = { version = "0.123.0", path = "crates/oxc_span" } # Source positions
134-
oxc_str = { version = "0.123.0", path = "crates/oxc_str" } # String types
135-
oxc_syntax = { version = "0.123.0", path = "crates/oxc_syntax" } # Syntax utilities
136-
oxc_transform_napi = { version = "0.123.0", path = "napi/transform" } # Node.js transformer binding
137-
oxc_transformer = { version = "0.123.0", path = "crates/oxc_transformer" } # Code transformation
138-
oxc_transformer_plugins = { version = "0.123.0", path = "crates/oxc_transformer_plugins" } # Transformer plugins
139-
oxc_traverse = { version = "0.123.0", path = "crates/oxc_traverse" } # AST traversal
130+
oxc_parser_napi = { version = "0.124.0", path = "napi/parser" } # Node.js parser binding
131+
oxc_regular_expression = { version = "0.124.0", path = "crates/oxc_regular_expression" } # Regex parser
132+
oxc_semantic = { version = "0.124.0", path = "crates/oxc_semantic" } # Semantic analysis
133+
oxc_span = { version = "0.124.0", path = "crates/oxc_span" } # Source positions
134+
oxc_str = { version = "0.124.0", path = "crates/oxc_str" } # String types
135+
oxc_syntax = { version = "0.124.0", path = "crates/oxc_syntax" } # Syntax utilities
136+
oxc_transform_napi = { version = "0.124.0", path = "napi/transform" } # Node.js transformer binding
137+
oxc_transformer = { version = "0.124.0", path = "crates/oxc_transformer" } # Code transformation
138+
oxc_transformer_plugins = { version = "0.124.0", path = "crates/oxc_transformer_plugins" } # Transformer plugins
139+
oxc_traverse = { version = "0.124.0", path = "crates/oxc_traverse" } # AST traversal
140140

141141
# publish = false
142142
oxc_formatter = { path = "crates/oxc_formatter" } # Code formatting

crates/oxc/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"
3-
version = "0.123.0"
3+
version = "0.124.0"
44
authors.workspace = true
55
categories.workspace = true
66
edition.workspace = true

crates/oxc_allocator/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,23 @@ 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.124.0] - 2026-04-06
8+
9+
### 🐛 Bug Fixes
10+
11+
- fc7f60c allocator: Revert changes to `get_current_chunk_footer_field_offset` (#20964) (overlookmotel)
12+
13+
### ⚡ Performance
14+
15+
- 91cf105 allocator: Increase initial chunk size from 512B to 16KB (#20968) (overlookmotel)
16+
- cbc0c21 allocator: Add `#[cold]` to to error handling functions (#20967) (overlookmotel)
17+
18+
### 📚 Documentation
19+
20+
- f5e228f allocator: Fix typo in comment (#20972) (overlookmotel)
21+
- 7159d51 allocator: Improve doc comment examples for `vec2::Vec` (#20969) (overlookmotel)
22+
- b1da750 allocator, data_structures: Correct comments (#20966) (overlookmotel)
23+
724
## [0.123.0] - 2026-03-30
825

926
### ⚡ Performance

crates/oxc_allocator/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_allocator"
3-
version = "0.123.0"
3+
version = "0.124.0"
44
authors.workspace = true
55
categories.workspace = true
66
edition.workspace = true

crates/oxc_ast/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ 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.124.0] - 2026-04-06
8+
9+
### ⚡ Performance
10+
11+
- 0503a78 napi/parser, linter/plugins: Faster deserialization of `raw` fields (#20923) (overlookmotel)
12+
713
## [0.123.0] - 2026-03-30
814

915
### 🚀 Features

crates/oxc_ast/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_ast"
3-
version = "0.123.0"
3+
version = "0.124.0"
44
authors.workspace = true
55
categories.workspace = true
66
edition.workspace = true

0 commit comments

Comments
 (0)