Skip to content

Commit 7282e9c

Browse files
authored
release(crates): oxc v0.109.0 (#18222)
1 parent 808b7c3 commit 7282e9c

File tree

57 files changed

+455
-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.

57 files changed

+455
-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,35 +103,35 @@ multiple_crate_versions = "allow"
103103

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

136136
# publish = false
137137
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.108.0"
3+
version = "0.109.0"
44
authors.workspace = true
55
categories.workspace = true
66
edition.workspace = true

crates/oxc_allocator/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ 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.109.0] - 2026-01-19
8+
9+
### ⚡ Performance
10+
11+
- 46cd73d allocator: Add #[cold] annotations to error handling functions (#18181) (Boshen)
12+
- 8da684e allocator: Type-erase RawVec::finish_grow inner function (#18175) (Boshen)
13+
714
## [0.106.0] - 2025-12-29
815

916
### 🚀 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.108.0"
3+
version = "0.109.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.109.0] - 2026-01-19
8+
9+
### 💥 BREAKING CHANGES
10+
11+
- 9135b0b ast: [**BREAKING**] Move scope from `TSEnumDeclaration` to `TSEnumBody` (#18058) (Boshen)
12+
713
## [0.108.0] - 2026-01-12
814

915
### ⚡ Performance

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

crates/oxc_ast_macros/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.109.0] - 2026-01-19
8+
9+
### 💥 BREAKING CHANGES
10+
11+
- 9135b0b ast: [**BREAKING**] Move scope from `TSEnumDeclaration` to `TSEnumBody` (#18058) (Boshen)
12+
13+
### 🐛 Bug Fixes
14+
15+
- 7a0ca99 linter/plugins: Use correct ScriptKind for tokens (#17185) (Peter Wagenet)
16+
717
## [0.104.0] - 2025-12-19
818

919
### ⚡ Performance

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

crates/oxc_ast_visit/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.109.0] - 2026-01-19
8+
9+
### 💥 BREAKING CHANGES
10+
11+
- 9135b0b ast: [**BREAKING**] Move scope from `TSEnumDeclaration` to `TSEnumBody` (#18058) (Boshen)
12+
713
## [0.103.0] - 2025-12-15
814

915
### 🚀 Features

0 commit comments

Comments
 (0)