Skip to content

Commit c90ab78

Browse files
release(crates): oxc v0.104.0 (#17096)
### 🚀 Features - d209c21 allocator: Add cap to FixedSizeAllocatorPool and block when exhausted (#17023) (Cameron) - fb2af91 allocator: Add bitset utils (#17042) (zhaoting zhou) - c16082c tasks/compat_data: Integrate `node-compat-table` (#16831) (Boshen) - 5586823 span: Extract TS declaration file check to its own function (#17037) (camchenry) - 3d2b492 minifier: Fold iife arrow functions in call expressions (#16477) (Armano) - 67e9f9e codegen: Keep comments on the export specifiers (#16943) (夕舞八弦) - cb515fa parser: Improve error message for `yield` as identifier usage (#16950) (sapphi-red) - dcc856b parser: Add help for `new_dynamic_import` error (#16949) (sapphi-red) - c3c79f8 parser: Improve import attribute value error message (#16948) (sapphi-red) - 291b57b ast_tools: Generate TS declaration files for deserializer and walk files (#16912) (camc314) - 74eae13 minifier: Remove unused import specifiers (#16797) (camc314) ### 🐛 Bug Fixes - fb9e193 linter: OOM problems with custom plugins (#17082) (overlookmotel) - e59132b parser/napi: Fix lazy deser (#17069) (overlookmotel) - a92faf0 ast_tools: Support `u128` in `assert_layouts` generator (#17050) (overlookmotel) - 47b4c2f minifier/docs: Correct hyperlink path in OPTIMIZATIONS.md (#16986) (GRK) - 3002649 transformer/typescript: Remove unused import equals declaration (#16776) (Dunqing) - 5a2af88 regular_expression: Correct named capture group reference error (#16952) (sapphi-red) ### ⚡ Performance - b657bb6 allocator: Reduce time `Mutex` lock is held in `FixedSizeAllocatorPool::get` (#17079) (overlookmotel) - 1f3b19b ast: `#[ast]` macro use `#[repr(transparent)]` for single-field structs (#17052) (overlookmotel) - 225f229 parser: Use SmallVec for duplicate default export detection (#16801) (camc314) ### 📚 Documentation - a9c419f traverse: Update safety comments (#16944) (overlookmotel) Co-authored-by: overlookmotel <[email protected]>
1 parent 3c39d46 commit c90ab78

File tree

48 files changed

+333
-242
lines changed

Some content is hidden

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

48 files changed

+333
-242
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -103,33 +103,33 @@ multiple_crate_versions = "allow"
103103

104104
[workspace.dependencies]
105105
# publish = true
106-
oxc = { version = "0.103.0", path = "crates/oxc" } # Main entry point
107-
oxc_allocator = { version = "0.103.0", path = "crates/oxc_allocator" } # Memory management
108-
oxc_ast = { version = "0.103.0", path = "crates/oxc_ast" } # AST definitions
109-
oxc_ast_macros = { version = "0.103.0", path = "crates/oxc_ast_macros" } # AST proc macros
110-
oxc_ast_visit = { version = "0.103.0", path = "crates/oxc_ast_visit" } # AST visitor pattern
111-
oxc_cfg = { version = "0.103.0", path = "crates/oxc_cfg" } # Control flow graph
112-
oxc_codegen = { version = "0.103.0", path = "crates/oxc_codegen" } # Code generation
113-
oxc_compat = { version = "0.103.0", path = "crates/oxc_compat" } # Browser compatibility
114-
oxc_data_structures = { version = "0.103.0", path = "crates/oxc_data_structures" } # Shared data structures
115-
oxc_diagnostics = { version = "0.103.0", path = "crates/oxc_diagnostics" } # Error reporting
116-
oxc_ecmascript = { version = "0.103.0", path = "crates/oxc_ecmascript" } # ECMAScript operations
117-
oxc_estree = { version = "0.103.0", path = "crates/oxc_estree" } # ESTree format
118-
oxc_isolated_declarations = { version = "0.103.0", path = "crates/oxc_isolated_declarations" } # TS declaration generation
119-
oxc_mangler = { version = "0.103.0", path = "crates/oxc_mangler" } # Name mangling
120-
oxc_minifier = { version = "0.103.0", path = "crates/oxc_minifier" } # Code minification
121-
oxc_minify_napi = { version = "0.103.0", path = "napi/minify" } # Node.js minifier binding
122-
oxc_napi = { version = "0.103.0", path = "crates/oxc_napi" } # NAPI utilities
123-
oxc_parser = { version = "0.103.0", path = "crates/oxc_parser", features = ["regular_expression"] } # JS/TS parser
124-
oxc_parser_napi = { version = "0.103.0", path = "napi/parser" } # Node.js parser binding
125-
oxc_regular_expression = { version = "0.103.0", path = "crates/oxc_regular_expression" } # Regex parser
126-
oxc_semantic = { version = "0.103.0", path = "crates/oxc_semantic" } # Semantic analysis
127-
oxc_span = { version = "0.103.0", path = "crates/oxc_span" } # Source positions
128-
oxc_syntax = { version = "0.103.0", path = "crates/oxc_syntax" } # Syntax utilities
129-
oxc_transform_napi = { version = "0.103.0", path = "napi/transform" } # Node.js transformer binding
130-
oxc_transformer = { version = "0.103.0", path = "crates/oxc_transformer" } # Code transformation
131-
oxc_transformer_plugins = { version = "0.103.0", path = "crates/oxc_transformer_plugins" } # Transformer plugins
132-
oxc_traverse = { version = "0.103.0", path = "crates/oxc_traverse" } # AST traversal
106+
oxc = { version = "0.104.0", path = "crates/oxc" } # Main entry point
107+
oxc_allocator = { version = "0.104.0", path = "crates/oxc_allocator" } # Memory management
108+
oxc_ast = { version = "0.104.0", path = "crates/oxc_ast" } # AST definitions
109+
oxc_ast_macros = { version = "0.104.0", path = "crates/oxc_ast_macros" } # AST proc macros
110+
oxc_ast_visit = { version = "0.104.0", path = "crates/oxc_ast_visit" } # AST visitor pattern
111+
oxc_cfg = { version = "0.104.0", path = "crates/oxc_cfg" } # Control flow graph
112+
oxc_codegen = { version = "0.104.0", path = "crates/oxc_codegen" } # Code generation
113+
oxc_compat = { version = "0.104.0", path = "crates/oxc_compat" } # Browser compatibility
114+
oxc_data_structures = { version = "0.104.0", path = "crates/oxc_data_structures" } # Shared data structures
115+
oxc_diagnostics = { version = "0.104.0", path = "crates/oxc_diagnostics" } # Error reporting
116+
oxc_ecmascript = { version = "0.104.0", path = "crates/oxc_ecmascript" } # ECMAScript operations
117+
oxc_estree = { version = "0.104.0", path = "crates/oxc_estree" } # ESTree format
118+
oxc_isolated_declarations = { version = "0.104.0", path = "crates/oxc_isolated_declarations" } # TS declaration generation
119+
oxc_mangler = { version = "0.104.0", path = "crates/oxc_mangler" } # Name mangling
120+
oxc_minifier = { version = "0.104.0", path = "crates/oxc_minifier" } # Code minification
121+
oxc_minify_napi = { version = "0.104.0", path = "napi/minify" } # Node.js minifier binding
122+
oxc_napi = { version = "0.104.0", path = "crates/oxc_napi" } # NAPI utilities
123+
oxc_parser = { version = "0.104.0", path = "crates/oxc_parser", features = ["regular_expression"] } # JS/TS parser
124+
oxc_parser_napi = { version = "0.104.0", path = "napi/parser" } # Node.js parser binding
125+
oxc_regular_expression = { version = "0.104.0", path = "crates/oxc_regular_expression" } # Regex parser
126+
oxc_semantic = { version = "0.104.0", path = "crates/oxc_semantic" } # Semantic analysis
127+
oxc_span = { version = "0.104.0", path = "crates/oxc_span" } # Source positions
128+
oxc_syntax = { version = "0.104.0", path = "crates/oxc_syntax" } # Syntax utilities
129+
oxc_transform_napi = { version = "0.104.0", path = "napi/transform" } # Node.js transformer binding
130+
oxc_transformer = { version = "0.104.0", path = "crates/oxc_transformer" } # Code transformation
131+
oxc_transformer_plugins = { version = "0.104.0", path = "crates/oxc_transformer_plugins" } # Transformer plugins
132+
oxc_traverse = { version = "0.104.0", path = "crates/oxc_traverse" } # AST traversal
133133

134134
# publish = false
135135
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.103.0"
3+
version = "0.104.0"
44
authors.workspace = true
55
categories.workspace = true
66
edition.workspace = true

crates/oxc_allocator/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,21 @@ 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.104.0] - 2025-12-19
8+
9+
### 🚀 Features
10+
11+
- d209c21 allocator: Add cap to FixedSizeAllocatorPool and block when exhausted (#17023) (Cameron)
12+
- fb2af91 allocator: Add bitset utils (#17042) (zhaoting zhou)
13+
14+
### 🐛 Bug Fixes
15+
16+
- fb9e193 linter: OOM problems with custom plugins (#17082) (overlookmotel)
17+
18+
### ⚡ Performance
19+
20+
- b657bb6 allocator: Reduce time `Mutex` lock is held in `FixedSizeAllocatorPool::get` (#17079) (overlookmotel)
21+
722
## [0.99.0] - 2025-11-24
823

924
### 🚀 Features

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.103.0"
3+
version = "0.104.0"
44
authors.workspace = true
55
categories.workspace = true
66
edition.workspace = true

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.103.0"
3+
version = "0.104.0"
44
authors.workspace = true
55
categories.workspace = true
66
edition.workspace = true

crates/oxc_ast_macros/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.104.0] - 2025-12-19
8+
9+
### ⚡ Performance
10+
11+
- 1f3b19b ast: `#[ast]` macro use `#[repr(transparent)]` for single-field structs (#17052) (overlookmotel)
12+
713
## [0.99.0] - 2025-11-24
814

915
### 💥 BREAKING CHANGES

crates/oxc_ast_macros/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_macros"
3-
version = "0.103.0"
3+
version = "0.104.0"
44
authors.workspace = true
55
categories.workspace = true
66
edition.workspace = true

crates/oxc_ast_visit/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_visit"
3-
version = "0.103.0"
3+
version = "0.104.0"
44
authors.workspace = true
55
categories.workspace = true
66
edition.workspace = true

crates/oxc_cfg/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_cfg"
3-
version = "0.103.0"
3+
version = "0.104.0"
44
authors.workspace = true
55
categories.workspace = true
66
edition.workspace = true

0 commit comments

Comments
 (0)