Skip to content

Commit 0872758

Browse files
authored
release(crates): oxc v0.100.0 (#16331)
### 💥 BREAKING CHANGES - 74cf572 ast: [**BREAKING**] Make `source` field of `TSImportType` a `StringLiteral` (#16114) (copilot-swe-agent) - 43156ae ast: [**BREAKING**] Rename `TSImportType` `argument` field to `source` (#16110) (overlookmotel) - 934d873 napi: [**BREAKING**] Drop `armv7-unknown-linux-musleabihf` support (#16105) (Boshen) ### 🚀 Features - 669afe0 ast: Add `Expression::is_jsx` method (#16154) (Dunqing) - 17a8caa parser: Add diagnostic for JSX identifiers with hyphens (#16133) (camchenry) - 0549ae5 parser: Add diagnostic for expected ident after optional chain (#16132) (camchenry) - db839ae parser: Improve diagnostic for unexpected optional declarations (#16131) (camchenry) - bab4bc8 napi/parser: Add type annotations to parse-raw-worker test (#15998) (camc314) ### 🐛 Bug Fixes - 35ed36c traverse: Fix panic when truncating non-ASCII variable names (#16265) (peter) - 9149a26 linter/plugins, napi/parser: Deep freeze visitor keys (#16293) (overlookmotel) - 6b54dab minifier: Incorrect non-null object condition simplification with `&&` and `||` (#16161) (sapphi-red) - 9cc20a1 minifier: Avoid merging side effectful expressions to next assignment statement if the side effect may change the left hand side reference (#16165) (sapphi-red) - 91eb3f2 ast/estree: Convert `TSImportType` `argument` field to `Literal` (#16109) (overlookmotel) - 1199cee parser: Reject invalid modifiers on parameter properties with binding patterns (#16083) (camc314) - f376325 traverse: Remove `console.log` from build script (#16049) (overlookmotel) ### ⚡ Performance - 82d784f lexer: Reduce bounds checks in `Lexer::get_string` (#16317) (overlookmotel) - cc2f352 span: Add `#[inline]` to `Atom` methods (#16311) (overlookmotel) - ffca070 span: Add `#[repr(transparent)]` to `Atom` (#16310) (overlookmotel) - 02bdf90 linter/plugins, napi/parser: Reuse arrays in visitor keys (#16294) (overlookmotel) ### 📚 Documentation - 891e0b4 parser: Add note about falling back to parse TSType in TSImportType (#16119) (camc314) Co-authored-by: Boshen <1430279+Boshen@users.noreply.github.com>
1 parent b169e52 commit 0872758

File tree

49 files changed

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

49 files changed

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

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

crates/oxc_ast/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.100.0] - 2025-12-01
8+
9+
### 💥 BREAKING CHANGES
10+
11+
- 74cf572 ast: [**BREAKING**] Make `source` field of `TSImportType` a `StringLiteral` (#16114) (copilot-swe-agent)
12+
- 43156ae ast: [**BREAKING**] Rename `TSImportType` `argument` field to `source` (#16110) (overlookmotel)
13+
14+
### 🚀 Features
15+
16+
- 669afe0 ast: Add `Expression::is_jsx` method (#16154) (Dunqing)
17+
18+
### 🐛 Bug Fixes
19+
20+
- 91eb3f2 ast/estree: Convert `TSImportType` `argument` field to `Literal` (#16109) (overlookmotel)
21+
722
## [0.99.0] - 2025-11-24
823

924
### 💥 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.99.0"
3+
version = "0.100.0"
44
authors.workspace = true
55
categories.workspace = true
66
edition.workspace = true

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

crates/oxc_ast_visit/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.100.0] - 2025-12-01
8+
9+
### 💥 BREAKING CHANGES
10+
11+
- 74cf572 ast: [**BREAKING**] Make `source` field of `TSImportType` a `StringLiteral` (#16114) (copilot-swe-agent)
12+
- 43156ae ast: [**BREAKING**] Rename `TSImportType` `argument` field to `source` (#16110) (overlookmotel)
13+
714
## [0.99.0] - 2025-11-24
815

916
### 💥 BREAKING CHANGES

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

0 commit comments

Comments
 (0)