Skip to content

Commit 9951f16

Browse files
authored
release(crates): oxc v0.111.0 (#18572)
### 💥 BREAKING CHANGES - 22dec6a semantic: [**BREAKING**] Remove `Scoping::scope_build_child_ids` and all related APIs (#18362) (Dunqing) - 30a4899 oxc: [**BREAKING**] Remove `CompilerInterface::semantic_child_scope_ids` (#18361) (Dunqing) - 777fc40 ast: [**BREAKING**] Add `Ident` type (#18354) (Boshen) - af0ca46 span: [**BREAKING**] Use `ModuleKind::CommonJS` for `SourceType::cjs()` (#18276) (sapphi-red) ### 🚀 Features - 0a02026 semantic: Add TS1499 code to diagnostic (#18557) (camc314) - 8b4618f parser: Add TS1500 code to diagnostic (#18547) (camc314) - 866b6b3 parser: Add TS1048 code to diagnostic (#18546) (camc314) - 1117c44 parser: Add TS1054 code to diagnostic (#18541) (camc314) - e4fcdde semantic: Add TS1053 code to diagnostic (#18539) (camc314) - bcbf396 semantic: Add TS1052 code to diagnostic (#18538) (camc314) - 8155edf semantic: Add TS1049 code to diagnostic (#18535) (camc314) - 51d3b3f parser: Add TS1502 code to diagnostic (#18534) (camc314) - 00854e8 semantic: Add TS2337 error code to super call diagnostic (#18531) (camc314) - 993fd2b parser: Parse unambiguous await with better error messages (#18480) (Boshen) - 8db0e78 linter/plugins: Handle BOMs (#18376) (overlookmotel) - 6ac09e2 linter/plugins: Support source text not being at start of buffer (#18375) (overlookmotel) - 2ef5647 ast: Add escape_raw parameter to template_element builders (#18121) (Boshen) ### 🐛 Bug Fixes - 74d0998 semantic: Update error msg for multiple `default` cases in switch stmt (#18526) (camc314) - c205b0d ast: Remove `ThisExpression` from `TSModuleReference` (#18489) (Boshen) - aed3669 parser: Parse HTML-like comments in unambiguous mode (#18442) (Boshen) - c4132fb parser: Validate accessor parameters in interface method signatures (#18391) (Boshen) - b0cd74d semantic: Allow `var` and `function` with same name in static blocks (#18358) (Boshen) - 6037995 semantic: Allow `new.target` in class field initializers (#18349) (Boshen) - 9a15c6a semantic: Do not rely on spans for node comparison in `Function::bind` (#18296) (overlookmotel) ### ⚡ Performance - 6b600c4 semantic: Skip parent lookup for function declarations in `Function::bind` (#18293) (overlookmotel) - c27ad2d semantic: Move check for function declaration out of `is_function_part_of_if_statement` (#18292) (overlookmotel) - 63eb89e semantic: Skip checking redeclarations for function expressions (#18291) (overlookmotel) - 7c12743 semantic: Skip checking unresolved exports in CommonJS files (#18250) (overlookmotel) - 2349031 allocator: Increase initial chunk size from 512B to 16KB (#18234) (Boshen) ### 📚 Documentation - 8ccd853 npm: Update package homepage URLs and add keywords (#18509) (Boshen) - 9b3165f napi/parser: Clarify when to use `parseAsync` vs `parseSync` (#18486) (Boshen) - 1b59f63 napi/parser: Correct typo in README (#18251) (overlookmotel) - 00ff75f mangler: Fix `top_level` option in example (#18233) (overlookmotel) - 2ddc073 semantic: Fix typo in comment (#18238) (overlookmotel) Co-authored-by: Boshen <1430279+Boshen@users.noreply.github.com>
1 parent 736b706 commit 9951f16

File tree

57 files changed

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

57 files changed

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

139139
# publish = false
140140
oxc_formatter = { path = "crates/oxc_formatter" } # Code formatting

crates/oxc/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.111.0] - 2026-01-26
8+
9+
### 💥 BREAKING CHANGES
10+
11+
- 30a4899 oxc: [**BREAKING**] Remove `CompilerInterface::semantic_child_scope_ids` (#18361) (Dunqing)
12+
713
## [0.106.0] - 2025-12-29
814

915
### 🚀 Features

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

crates/oxc_allocator/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.111.0] - 2026-01-26
8+
9+
### ⚡ Performance
10+
11+
- 2349031 allocator: Increase initial chunk size from 512B to 16KB (#18234) (Boshen)
12+
713
## [0.109.0] - 2026-01-19
814

915
### ⚡ 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.110.0"
3+
version = "0.111.0"
44
authors.workspace = true
55
categories.workspace = true
66
edition.workspace = true

crates/oxc_ast/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,20 @@ 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.111.0] - 2026-01-26
8+
9+
### 💥 BREAKING CHANGES
10+
11+
- 777fc40 ast: [**BREAKING**] Add `Ident` type (#18354) (Boshen)
12+
13+
### 🚀 Features
14+
15+
- 2ef5647 ast: Add escape_raw parameter to template_element builders (#18121) (Boshen)
16+
17+
### 🐛 Bug Fixes
18+
19+
- c205b0d ast: Remove `ThisExpression` from `TSModuleReference` (#18489) (Boshen)
20+
721
## [0.109.0] - 2026-01-19
822

923
### 💥 BREAKING CHANGES

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.110.0"
3+
version = "0.111.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.111.0] - 2026-01-26
8+
9+
### 🚀 Features
10+
11+
- 8db0e78 linter/plugins: Handle BOMs (#18376) (overlookmotel)
12+
713
## [0.109.0] - 2026-01-19
814

915
### 💥 BREAKING CHANGES

0 commit comments

Comments
 (0)