Skip to content

Commit 704c109

Browse files
authored
release(crates): oxc v0.114.0 (#19429)
### 🚀 Features - 429d876 semantic: Assign ast node ids during semantic build (#19263) (Boshen) - ebb80b3 ast: Add `node_id` field to all AST struct nodes (#18138) (Boshen) ### 🐛 Bug Fixes - bfb15a3 semantic: Make multi_index_vec clone panic-safe (#19299) (Boshen) - 41c50a5 transformer: Ignore invalid JSX pragma identifiers (#19296) (Boshen) - deed3d8 transformer: Remove unnecessary trailing expression in object rest spread assignment (#19259) (Boshen) - 5bdaacc transformer: Propagate source spans for sourcemap correctness (#19258) (Boshen) - 3e0e5ba isolated-declarations: Align readonly class array initializer diagnostics with tsc (#19218) (camc314) ### ⚡ Performance - c169c77 syntax: Optimize `is_identifier_name_patched` (#19386) (sapphi-red) - aa1e1a8 allocator: Inline BitSet accessors (#19331) (Boshen) - 5b90d46 semantic: Improve SoA with multi index vec (#19138) (Boshen) - 99ce2a6 isolated_declarations: Mark all diagnostic functions as `#[cold]` (#19279) (camc314) - dd0220f transformer: Remove TS-only nodes earlier in `enter_statements` (#19166) (Dunqing) - e5baf60 isolated-declarations: Replace hash collections with index-based Vec (#19221) (Dunqing) ### 📚 Documentation - 569aa61 rust: Add missing rustdocs and remove missing_docs lint attrs (#19306) (Boshen)
1 parent 47d6a3e commit 704c109

File tree

55 files changed

+407
-245
lines changed

Some content is hidden

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

55 files changed

+407
-245
lines changed

Cargo.lock

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

Cargo.toml

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

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

139139
# publish = false
140140
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.113.0"
3+
version = "0.114.0"
44
authors.workspace = true
55
categories.workspace = true
66
edition.workspace = true

crates/oxc_allocator/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ 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.114.0] - 2026-02-16
8+
9+
### ⚡ Performance
10+
11+
- aa1e1a8 allocator: Inline BitSet accessors (#19331) (Boshen)
12+
13+
### 📚 Documentation
14+
15+
- 569aa61 rust: Add missing rustdocs and remove missing_docs lint attrs (#19306) (Boshen)
16+
717
## [0.113.0] - 2026-02-10
818

919
### 🚀 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.113.0"
3+
version = "0.114.0"
44
authors.workspace = true
55
categories.workspace = true
66
edition.workspace = true

crates/oxc_ast/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,17 @@ 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.114.0] - 2026-02-16
8+
9+
### 🚀 Features
10+
11+
- 429d876 semantic: Assign ast node ids during semantic build (#19263) (Boshen)
12+
- ebb80b3 ast: Add `node_id` field to all AST struct nodes (#18138) (Boshen)
13+
14+
### 📚 Documentation
15+
16+
- 569aa61 rust: Add missing rustdocs and remove missing_docs lint attrs (#19306) (Boshen)
17+
718
## [0.113.0] - 2026-02-10
819

920
### 🚀 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.113.0"
3+
version = "0.114.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.114.0] - 2026-02-16
8+
9+
### 🚀 Features
10+
11+
- ebb80b3 ast: Add `node_id` field to all AST struct nodes (#18138) (Boshen)
12+
713
## [0.111.0] - 2026-01-26
814

915
### 🚀 Features

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

0 commit comments

Comments
 (0)