mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
release(crates): v0.29.0 (#5763)
## [0.29.0] - 2024-09-13 -71116a1index: [**BREAKING**] Remove ability to index `IndexVec` with `usize` (#5733) (overlookmotel) -c3dd2a0ast: [**BREAKING**] Revert: reduce byte size of `TaggedTemplateExpression::quasi` by `Boxing` it (#5679) (#5715) (overlookmotel) ### Features -953fe17ast: Provide `NONE` type for AST builder calls (#5737) (overlookmotel) -a362f51index: Add `IndexVec::shrink_to` (#5713) (overlookmotel) -e968e9fminifier: Constant fold nullish coalescing operator (#5761) (Boshen) -6bc13f6minifier: Add `MinimizeConditions` pass (#5747) (Boshen) -805fbacoxc_cfg: Better control flow graph dot dot repr (#5731) (IWANABETHATGUY) -f3baa49semantic: Add `SemanticBuilder::with_stats` (#5757) (overlookmotel) -7fa0cb3semantic: Expose `Stats` (#5755) (overlookmotel) ### Bug Fixes -8ff013aminifier: Handle dce CallExpression::callee (#5752) (Boshen) -608b7d3napi/transformer: Refresh plugin doesn't work even after passing the refresh option (#5702) (Dunqing) -042afa9syntax: Correctly check for valid `RedeclarationId`s (#5759) (overlookmotel) - 77d9170 transformer/react: IsStaticChildren should be false when there is only one child (#5745) (Dunqing) ### Performance -333e2e0index: Remove `Idx` bounds-checks from `first` + `last` methods (#5726) (overlookmotel) -d18c896rust: Use `cow_utils` instead (#5664) (dalaoshu) ### Refactor -2890c98minifier: Add tests for `remove_syntax` (#5749) (Boshen) -9a9d8f6minifier: Replace `self.ast` with `ctx.ast` (#5748) (Boshen) -746f7b3minifier: Align code with closure compiler (#5717) (Boshen) -21e2df5minifier: Replace `VisitMut` with `Traverse` for inject and define plugins (#5705) (Boshen) -4bdc202rust: Remove some #[allow(unused)] (#5716) (Boshen) -a35fb14semantic: `Stats::assert_accurate` take `self` (#5758) (overlookmotel) -4b896f1semantic: Make `Stats` `Copy` (#5756) (overlookmotel) -b4b460fsemantic: `Stats` store counts as `u32` (#5754) (overlookmotel) -667170csemantic: Rename `Counts` to `Stats` (#5753) (overlookmotel) -cc0408bsemantic: S/AstNodeId/NodeId (#5740) (Boshen) -7dfcdfcsemantic: Remove `more-asserts` dependency (#5739) (overlookmotel) -6436524semantic: Fix dead code warning in release mode (#5728) (overlookmotel) -e02621dsemantic: Re-order use statements (#5712) (overlookmotel) -ac6203csemantic: Move `Counts` code into counter module (#5710) (overlookmotel) -339fcfcsemantic: Rename `Counts` in transform checker (#5709) (overlookmotel) -d8ec781semantic: Remove `record_ast_node` call for `Program` (#5701) (overlookmotel) ### Styling -1857ff0semantic: Rename vars for node IDs (#5699) (overlookmotel) Co-authored-by: Boshen <1430279+Boshen@users.noreply.github.com>
This commit is contained in:
parent
e968e9ffd0
commit
bd48dfbf8b
39 changed files with 218 additions and 69 deletions
42
Cargo.lock
generated
42
Cargo.lock
generated
|
|
@ -1397,7 +1397,7 @@ checksum = "caff54706df99d2a78a5a4e3455ff45448d81ef1bb63c22cd14052ca0e993a3f"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "oxc"
|
name = "oxc"
|
||||||
version = "0.28.0"
|
version = "0.29.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"oxc_allocator",
|
"oxc_allocator",
|
||||||
"oxc_ast",
|
"oxc_ast",
|
||||||
|
|
@ -1436,7 +1436,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "oxc_allocator"
|
name = "oxc_allocator"
|
||||||
version = "0.28.0"
|
version = "0.29.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"allocator-api2",
|
"allocator-api2",
|
||||||
"bumpalo",
|
"bumpalo",
|
||||||
|
|
@ -1446,7 +1446,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "oxc_ast"
|
name = "oxc_ast"
|
||||||
version = "0.28.0"
|
version = "0.29.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bitflags 2.6.0",
|
"bitflags 2.6.0",
|
||||||
"num-bigint",
|
"num-bigint",
|
||||||
|
|
@ -1463,7 +1463,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "oxc_ast_macros"
|
name = "oxc_ast_macros"
|
||||||
version = "0.28.0"
|
version = "0.29.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote",
|
||||||
|
|
@ -1510,7 +1510,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "oxc_cfg"
|
name = "oxc_cfg"
|
||||||
version = "0.28.0"
|
version = "0.29.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bitflags 2.6.0",
|
"bitflags 2.6.0",
|
||||||
"itertools",
|
"itertools",
|
||||||
|
|
@ -1521,7 +1521,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "oxc_codegen"
|
name = "oxc_codegen"
|
||||||
version = "0.28.0"
|
version = "0.29.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"base64",
|
"base64",
|
||||||
"bitflags 2.6.0",
|
"bitflags 2.6.0",
|
||||||
|
|
@ -1569,7 +1569,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "oxc_diagnostics"
|
name = "oxc_diagnostics"
|
||||||
version = "0.28.0"
|
version = "0.29.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"miette",
|
"miette",
|
||||||
"owo-colors",
|
"owo-colors",
|
||||||
|
|
@ -1579,7 +1579,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "oxc_index"
|
name = "oxc_index"
|
||||||
version = "0.28.0"
|
version = "0.29.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"rayon",
|
"rayon",
|
||||||
"serde",
|
"serde",
|
||||||
|
|
@ -1587,7 +1587,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "oxc_isolated_declarations"
|
name = "oxc_isolated_declarations"
|
||||||
version = "0.28.0"
|
version = "0.29.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"insta",
|
"insta",
|
||||||
"oxc_allocator",
|
"oxc_allocator",
|
||||||
|
|
@ -1680,7 +1680,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "oxc_mangler"
|
name = "oxc_mangler"
|
||||||
version = "0.28.0"
|
version = "0.29.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"itertools",
|
"itertools",
|
||||||
"oxc_ast",
|
"oxc_ast",
|
||||||
|
|
@ -1691,7 +1691,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "oxc_minifier"
|
name = "oxc_minifier"
|
||||||
version = "0.28.0"
|
version = "0.29.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"cow-utils",
|
"cow-utils",
|
||||||
"insta",
|
"insta",
|
||||||
|
|
@ -1726,7 +1726,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "oxc_module_lexer"
|
name = "oxc_module_lexer"
|
||||||
version = "0.28.0"
|
version = "0.29.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"oxc_allocator",
|
"oxc_allocator",
|
||||||
"oxc_ast",
|
"oxc_ast",
|
||||||
|
|
@ -1736,7 +1736,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "oxc_parser"
|
name = "oxc_parser"
|
||||||
version = "0.28.0"
|
version = "0.29.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"assert-unchecked",
|
"assert-unchecked",
|
||||||
"bitflags 2.6.0",
|
"bitflags 2.6.0",
|
||||||
|
|
@ -1812,7 +1812,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "oxc_regular_expression"
|
name = "oxc_regular_expression"
|
||||||
version = "0.28.0"
|
version = "0.29.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"oxc_allocator",
|
"oxc_allocator",
|
||||||
"oxc_ast_macros",
|
"oxc_ast_macros",
|
||||||
|
|
@ -1846,7 +1846,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "oxc_semantic"
|
name = "oxc_semantic"
|
||||||
version = "0.28.0"
|
version = "0.29.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"assert-unchecked",
|
"assert-unchecked",
|
||||||
"indexmap",
|
"indexmap",
|
||||||
|
|
@ -1870,7 +1870,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "oxc_sourcemap"
|
name = "oxc_sourcemap"
|
||||||
version = "0.28.0"
|
version = "0.29.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"base64-simd",
|
"base64-simd",
|
||||||
"cfg-if",
|
"cfg-if",
|
||||||
|
|
@ -1883,7 +1883,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "oxc_span"
|
name = "oxc_span"
|
||||||
version = "0.28.0"
|
version = "0.29.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"compact_str",
|
"compact_str",
|
||||||
"miette",
|
"miette",
|
||||||
|
|
@ -1897,7 +1897,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "oxc_syntax"
|
name = "oxc_syntax"
|
||||||
version = "0.28.0"
|
version = "0.29.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"assert-unchecked",
|
"assert-unchecked",
|
||||||
"bitflags 2.6.0",
|
"bitflags 2.6.0",
|
||||||
|
|
@ -1941,7 +1941,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "oxc_transform_napi"
|
name = "oxc_transform_napi"
|
||||||
version = "0.28.0"
|
version = "0.29.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"napi",
|
"napi",
|
||||||
"napi-build",
|
"napi-build",
|
||||||
|
|
@ -1960,7 +1960,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "oxc_transformer"
|
name = "oxc_transformer"
|
||||||
version = "0.28.0"
|
version = "0.29.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"base64",
|
"base64",
|
||||||
"dashmap 6.0.1",
|
"dashmap 6.0.1",
|
||||||
|
|
@ -1986,7 +1986,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "oxc_traverse"
|
name = "oxc_traverse"
|
||||||
version = "0.28.0"
|
version = "0.29.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"compact_str",
|
"compact_str",
|
||||||
"itoa",
|
"itoa",
|
||||||
|
|
|
||||||
42
Cargo.toml
42
Cargo.toml
|
|
@ -76,27 +76,27 @@ doc_lazy_continuation = "allow" # FIXME
|
||||||
|
|
||||||
[workspace.dependencies]
|
[workspace.dependencies]
|
||||||
# publish = true
|
# publish = true
|
||||||
oxc = { version = "0.28.0", path = "crates/oxc" }
|
oxc = { version = "0.29.0", path = "crates/oxc" }
|
||||||
oxc_allocator = { version = "0.28.0", path = "crates/oxc_allocator" }
|
oxc_allocator = { version = "0.29.0", path = "crates/oxc_allocator" }
|
||||||
oxc_ast = { version = "0.28.0", path = "crates/oxc_ast" }
|
oxc_ast = { version = "0.29.0", path = "crates/oxc_ast" }
|
||||||
oxc_ast_macros = { version = "0.28.0", path = "crates/oxc_ast_macros" }
|
oxc_ast_macros = { version = "0.29.0", path = "crates/oxc_ast_macros" }
|
||||||
oxc_cfg = { version = "0.28.0", path = "crates/oxc_cfg" }
|
oxc_cfg = { version = "0.29.0", path = "crates/oxc_cfg" }
|
||||||
oxc_codegen = { version = "0.28.0", path = "crates/oxc_codegen" }
|
oxc_codegen = { version = "0.29.0", path = "crates/oxc_codegen" }
|
||||||
oxc_diagnostics = { version = "0.28.0", path = "crates/oxc_diagnostics" }
|
oxc_diagnostics = { version = "0.29.0", path = "crates/oxc_diagnostics" }
|
||||||
oxc_index = { version = "0.28.0", path = "crates/oxc_index" }
|
oxc_index = { version = "0.29.0", path = "crates/oxc_index" }
|
||||||
oxc_isolated_declarations = { version = "0.28.0", path = "crates/oxc_isolated_declarations" }
|
oxc_isolated_declarations = { version = "0.29.0", path = "crates/oxc_isolated_declarations" }
|
||||||
oxc_mangler = { version = "0.28.0", path = "crates/oxc_mangler" }
|
oxc_mangler = { version = "0.29.0", path = "crates/oxc_mangler" }
|
||||||
oxc_minifier = { version = "0.28.0", path = "crates/oxc_minifier" }
|
oxc_minifier = { version = "0.29.0", path = "crates/oxc_minifier" }
|
||||||
oxc_module_lexer = { version = "0.28.0", path = "crates/oxc_module_lexer" }
|
oxc_module_lexer = { version = "0.29.0", path = "crates/oxc_module_lexer" }
|
||||||
oxc_parser = { version = "0.28.0", path = "crates/oxc_parser" }
|
oxc_parser = { version = "0.29.0", path = "crates/oxc_parser" }
|
||||||
oxc_regular_expression = { version = "0.28.0", path = "crates/oxc_regular_expression" }
|
oxc_regular_expression = { version = "0.29.0", path = "crates/oxc_regular_expression" }
|
||||||
oxc_semantic = { version = "0.28.0", path = "crates/oxc_semantic" }
|
oxc_semantic = { version = "0.29.0", path = "crates/oxc_semantic" }
|
||||||
oxc_sourcemap = { version = "0.28.0", path = "crates/oxc_sourcemap" }
|
oxc_sourcemap = { version = "0.29.0", path = "crates/oxc_sourcemap" }
|
||||||
oxc_span = { version = "0.28.0", path = "crates/oxc_span" }
|
oxc_span = { version = "0.29.0", path = "crates/oxc_span" }
|
||||||
oxc_syntax = { version = "0.28.0", path = "crates/oxc_syntax" }
|
oxc_syntax = { version = "0.29.0", path = "crates/oxc_syntax" }
|
||||||
oxc_transform_napi = { version = "0.28.0", path = "napi/transform" }
|
oxc_transform_napi = { version = "0.29.0", path = "napi/transform" }
|
||||||
oxc_transformer = { version = "0.28.0", path = "crates/oxc_transformer" }
|
oxc_transformer = { version = "0.29.0", path = "crates/oxc_transformer" }
|
||||||
oxc_traverse = { version = "0.28.0", path = "crates/oxc_traverse" }
|
oxc_traverse = { version = "0.29.0", path = "crates/oxc_traverse" }
|
||||||
|
|
||||||
# publish = false
|
# publish = false
|
||||||
oxc_linter = { path = "crates/oxc_linter" }
|
oxc_linter = { path = "crates/oxc_linter" }
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "oxc"
|
name = "oxc"
|
||||||
version = "0.28.0"
|
version = "0.29.0"
|
||||||
authors.workspace = true
|
authors.workspace = true
|
||||||
categories.workspace = true
|
categories.workspace = true
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "oxc_allocator"
|
name = "oxc_allocator"
|
||||||
version = "0.28.0"
|
version = "0.29.0"
|
||||||
authors.workspace = true
|
authors.workspace = true
|
||||||
categories.workspace = true
|
categories.workspace = true
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,17 @@ All notable changes to this package will be documented in this file.
|
||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0.
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0.
|
||||||
|
|
||||||
|
## [0.29.0] - 2024-09-13
|
||||||
|
|
||||||
|
- c3dd2a0 ast: [**BREAKING**] Revert: reduce byte size of `TaggedTemplateExpression::quasi` by `Boxing` it (#5679) (#5715) (overlookmotel)
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
- 953fe17 ast: Provide `NONE` type for AST builder calls (#5737) (overlookmotel)
|
||||||
|
|
||||||
|
### Performance
|
||||||
|
|
||||||
|
|
||||||
## [0.28.0] - 2024-09-11
|
## [0.28.0] - 2024-09-11
|
||||||
|
|
||||||
- afc4548 ast: [**BREAKING**] Educe byte size of `TaggedTemplateExpression::quasi` by `Boxing` it (#5679) (Boshen)
|
- afc4548 ast: [**BREAKING**] Educe byte size of `TaggedTemplateExpression::quasi` by `Boxing` it (#5679) (Boshen)
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "oxc_ast"
|
name = "oxc_ast"
|
||||||
version = "0.28.0"
|
version = "0.29.0"
|
||||||
authors.workspace = true
|
authors.workspace = true
|
||||||
categories.workspace = true
|
categories.workspace = true
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "oxc_ast_macros"
|
name = "oxc_ast_macros"
|
||||||
version = "0.28.0"
|
version = "0.29.0"
|
||||||
authors.workspace = true
|
authors.workspace = true
|
||||||
categories.workspace = true
|
categories.workspace = true
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,12 @@ All notable changes to this package will be documented in this file.
|
||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0.
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0.
|
||||||
|
|
||||||
|
## [0.29.0] - 2024-09-13
|
||||||
|
|
||||||
|
### Refactor
|
||||||
|
|
||||||
|
- cc0408b semantic: S/AstNodeId/NodeId (#5740) (Boshen)
|
||||||
|
|
||||||
## [0.21.0] - 2024-07-18
|
## [0.21.0] - 2024-07-18
|
||||||
|
|
||||||
### Refactor
|
### Refactor
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "oxc_cfg"
|
name = "oxc_cfg"
|
||||||
version = "0.28.0"
|
version = "0.29.0"
|
||||||
authors.workspace = true
|
authors.workspace = true
|
||||||
categories.workspace = true
|
categories.workspace = true
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,12 @@ All notable changes to this package will be documented in this file.
|
||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0.
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0.
|
||||||
|
|
||||||
|
## [0.29.0] - 2024-09-13
|
||||||
|
|
||||||
|
### Performance
|
||||||
|
|
||||||
|
- d18c896 rust: Use `cow_utils` instead (#5664) (dalaoshu)
|
||||||
|
|
||||||
## [0.28.0] - 2024-09-11
|
## [0.28.0] - 2024-09-11
|
||||||
|
|
||||||
- ee4fb42 ast: [**BREAKING**] Reduce size of `WithClause` by `Box`ing it (#5677) (Boshen)
|
- ee4fb42 ast: [**BREAKING**] Reduce size of `WithClause` by `Box`ing it (#5677) (Boshen)
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "oxc_codegen"
|
name = "oxc_codegen"
|
||||||
version = "0.28.0"
|
version = "0.29.0"
|
||||||
authors.workspace = true
|
authors.workspace = true
|
||||||
categories.workspace = true
|
categories.workspace = true
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "oxc_diagnostics"
|
name = "oxc_diagnostics"
|
||||||
version = "0.28.0"
|
version = "0.29.0"
|
||||||
authors.workspace = true
|
authors.workspace = true
|
||||||
categories.workspace = true
|
categories.workspace = true
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,18 @@ All notable changes to this package will be documented in this file.
|
||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0.
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0.
|
||||||
|
|
||||||
|
## [0.29.0] - 2024-09-13
|
||||||
|
|
||||||
|
- 71116a1 index: [**BREAKING**] Remove ability to index `IndexVec` with `usize` (#5733) (overlookmotel)
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
- a362f51 index: Add `IndexVec::shrink_to` (#5713) (overlookmotel)
|
||||||
|
|
||||||
|
### Performance
|
||||||
|
|
||||||
|
- 333e2e0 index: Remove `Idx` bounds-checks from `first` + `last` methods (#5726) (overlookmotel)
|
||||||
|
|
||||||
## [0.28.0] - 2024-09-11
|
## [0.28.0] - 2024-09-11
|
||||||
|
|
||||||
### Refactor
|
### Refactor
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "oxc_index"
|
name = "oxc_index"
|
||||||
version = "0.28.0"
|
version = "0.29.0"
|
||||||
authors.workspace = true
|
authors.workspace = true
|
||||||
categories.workspace = true
|
categories.workspace = true
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,12 @@ All notable changes to this package will be documented in this file.
|
||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0.
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0.
|
||||||
|
|
||||||
|
## [0.29.0] - 2024-09-13
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
- 953fe17 ast: Provide `NONE` type for AST builder calls (#5737) (overlookmotel)
|
||||||
|
|
||||||
## [0.28.0] - 2024-09-11
|
## [0.28.0] - 2024-09-11
|
||||||
|
|
||||||
- ee4fb42 ast: [**BREAKING**] Reduce size of `WithClause` by `Box`ing it (#5677) (Boshen)
|
- ee4fb42 ast: [**BREAKING**] Reduce size of `WithClause` by `Box`ing it (#5677) (Boshen)
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "oxc_isolated_declarations"
|
name = "oxc_isolated_declarations"
|
||||||
version = "0.28.0"
|
version = "0.29.0"
|
||||||
authors.workspace = true
|
authors.workspace = true
|
||||||
categories.workspace = true
|
categories.workspace = true
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "oxc_mangler"
|
name = "oxc_mangler"
|
||||||
version = "0.28.0"
|
version = "0.29.0"
|
||||||
authors.workspace = true
|
authors.workspace = true
|
||||||
categories.workspace = true
|
categories.workspace = true
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,29 @@ All notable changes to this package will be documented in this file.
|
||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0.
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0.
|
||||||
|
|
||||||
|
## [0.29.0] - 2024-09-13
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
- 953fe17 ast: Provide `NONE` type for AST builder calls (#5737) (overlookmotel)
|
||||||
|
- e968e9f minifier: Constant fold nullish coalescing operator (#5761) (Boshen)
|
||||||
|
- 6bc13f6 minifier: Add `MinimizeConditions` pass (#5747) (Boshen)
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
- 8ff013a minifier: Handle dce CallExpression::callee (#5752) (Boshen)
|
||||||
|
|
||||||
|
### Performance
|
||||||
|
|
||||||
|
- d18c896 rust: Use `cow_utils` instead (#5664) (dalaoshu)
|
||||||
|
|
||||||
|
### Refactor
|
||||||
|
|
||||||
|
- 2890c98 minifier: Add tests for `remove_syntax` (#5749) (Boshen)
|
||||||
|
- 9a9d8f6 minifier: Replace `self.ast` with `ctx.ast` (#5748) (Boshen)
|
||||||
|
- 746f7b3 minifier: Align code with closure compiler (#5717) (Boshen)
|
||||||
|
- 21e2df5 minifier: Replace `VisitMut` with `Traverse` for inject and define plugins (#5705) (Boshen)
|
||||||
|
|
||||||
## [0.28.0] - 2024-09-11
|
## [0.28.0] - 2024-09-11
|
||||||
|
|
||||||
- ee4fb42 ast: [**BREAKING**] Reduce size of `WithClause` by `Box`ing it (#5677) (Boshen)
|
- ee4fb42 ast: [**BREAKING**] Reduce size of `WithClause` by `Box`ing it (#5677) (Boshen)
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "oxc_minifier"
|
name = "oxc_minifier"
|
||||||
version = "0.28.0"
|
version = "0.29.0"
|
||||||
authors.workspace = true
|
authors.workspace = true
|
||||||
categories.workspace = true
|
categories.workspace = true
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "oxc_module_lexer"
|
name = "oxc_module_lexer"
|
||||||
version = "0.28.0"
|
version = "0.29.0"
|
||||||
authors.workspace = true
|
authors.workspace = true
|
||||||
categories.workspace = true
|
categories.workspace = true
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,16 @@ All notable changes to this package will be documented in this file.
|
||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0.
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0.
|
||||||
|
|
||||||
|
## [0.29.0] - 2024-09-13
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
- 953fe17 ast: Provide `NONE` type for AST builder calls (#5737) (overlookmotel)
|
||||||
|
|
||||||
|
### Performance
|
||||||
|
|
||||||
|
- d18c896 rust: Use `cow_utils` instead (#5664) (dalaoshu)
|
||||||
|
|
||||||
## [0.28.0] - 2024-09-11
|
## [0.28.0] - 2024-09-11
|
||||||
|
|
||||||
- ee4fb42 ast: [**BREAKING**] Reduce size of `WithClause` by `Box`ing it (#5677) (Boshen)
|
- ee4fb42 ast: [**BREAKING**] Reduce size of `WithClause` by `Box`ing it (#5677) (Boshen)
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "oxc_parser"
|
name = "oxc_parser"
|
||||||
version = "0.28.0"
|
version = "0.29.0"
|
||||||
authors.workspace = true
|
authors.workspace = true
|
||||||
categories.workspace = true
|
categories.workspace = true
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "oxc_regular_expression"
|
name = "oxc_regular_expression"
|
||||||
version = "0.28.0"
|
version = "0.29.0"
|
||||||
authors.workspace = true
|
authors.workspace = true
|
||||||
categories.workspace = true
|
categories.workspace = true
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,33 @@ All notable changes to this package will be documented in this file.
|
||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0.
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0.
|
||||||
|
|
||||||
|
## [0.29.0] - 2024-09-13
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
- 805fbac oxc_cfg: Better control flow graph dot dot repr (#5731) (IWANABETHATGUY)
|
||||||
|
- f3baa49 semantic: Add `SemanticBuilder::with_stats` (#5757) (overlookmotel)
|
||||||
|
- 7fa0cb3 semantic: Expose `Stats` (#5755) (overlookmotel)
|
||||||
|
|
||||||
|
### Refactor
|
||||||
|
|
||||||
|
- 4bdc202 rust: Remove some #[allow(unused)] (#5716) (Boshen)
|
||||||
|
- a35fb14 semantic: `Stats::assert_accurate` take `self` (#5758) (overlookmotel)
|
||||||
|
- 4b896f1 semantic: Make `Stats` `Copy` (#5756) (overlookmotel)
|
||||||
|
- b4b460f semantic: `Stats` store counts as `u32` (#5754) (overlookmotel)
|
||||||
|
- 667170c semantic: Rename `Counts` to `Stats` (#5753) (overlookmotel)
|
||||||
|
- cc0408b semantic: S/AstNodeId/NodeId (#5740) (Boshen)
|
||||||
|
- 7dfcdfc semantic: Remove `more-asserts` dependency (#5739) (overlookmotel)
|
||||||
|
- 6436524 semantic: Fix dead code warning in release mode (#5728) (overlookmotel)
|
||||||
|
- e02621d semantic: Re-order use statements (#5712) (overlookmotel)
|
||||||
|
- ac6203c semantic: Move `Counts` code into counter module (#5710) (overlookmotel)
|
||||||
|
- 339fcfc semantic: Rename `Counts` in transform checker (#5709) (overlookmotel)
|
||||||
|
- d8ec781 semantic: Remove `record_ast_node` call for `Program` (#5701) (overlookmotel)
|
||||||
|
|
||||||
|
### Styling
|
||||||
|
|
||||||
|
- 1857ff0 semantic: Rename vars for node IDs (#5699) (overlookmotel)
|
||||||
|
|
||||||
## [0.28.0] - 2024-09-11
|
## [0.28.0] - 2024-09-11
|
||||||
|
|
||||||
- 1fa3e56 semantic: [**BREAKING**] Rename `SymbolTable::iter` to `symbol_ids` (#5621) (overlookmotel)
|
- 1fa3e56 semantic: [**BREAKING**] Rename `SymbolTable::iter` to `symbol_ids` (#5621) (overlookmotel)
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "oxc_semantic"
|
name = "oxc_semantic"
|
||||||
version = "0.28.0"
|
version = "0.29.0"
|
||||||
authors.workspace = true
|
authors.workspace = true
|
||||||
categories.workspace = true
|
categories.workspace = true
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,12 @@ All notable changes to this package will be documented in this file.
|
||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0.
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0.
|
||||||
|
|
||||||
|
## [0.29.0] - 2024-09-13
|
||||||
|
|
||||||
|
### Performance
|
||||||
|
|
||||||
|
- d18c896 rust: Use `cow_utils` instead (#5664) (dalaoshu)
|
||||||
|
|
||||||
## [0.28.0] - 2024-09-11
|
## [0.28.0] - 2024-09-11
|
||||||
|
|
||||||
### Documentation
|
### Documentation
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "oxc_sourcemap"
|
name = "oxc_sourcemap"
|
||||||
version = "0.28.0"
|
version = "0.29.0"
|
||||||
authors.workspace = true
|
authors.workspace = true
|
||||||
categories.workspace = true
|
categories.workspace = true
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "oxc_span"
|
name = "oxc_span"
|
||||||
version = "0.28.0"
|
version = "0.29.0"
|
||||||
authors.workspace = true
|
authors.workspace = true
|
||||||
categories.workspace = true
|
categories.workspace = true
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,16 @@ All notable changes to this package will be documented in this file.
|
||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0.
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0.
|
||||||
|
|
||||||
|
## [0.29.0] - 2024-09-13
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
- 042afa9 syntax: Correctly check for valid `RedeclarationId`s (#5759) (overlookmotel)
|
||||||
|
|
||||||
|
### Refactor
|
||||||
|
|
||||||
|
- cc0408b semantic: S/AstNodeId/NodeId (#5740) (Boshen)
|
||||||
|
|
||||||
## [0.27.0] - 2024-09-06
|
## [0.27.0] - 2024-09-06
|
||||||
|
|
||||||
### Features
|
### Features
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "oxc_syntax"
|
name = "oxc_syntax"
|
||||||
version = "0.28.0"
|
version = "0.29.0"
|
||||||
authors.workspace = true
|
authors.workspace = true
|
||||||
categories.workspace = true
|
categories.workspace = true
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,21 @@ All notable changes to this package will be documented in this file.
|
||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0.
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0.
|
||||||
|
|
||||||
|
## [0.29.0] - 2024-09-13
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
- 953fe17 ast: Provide `NONE` type for AST builder calls (#5737) (overlookmotel)
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
- 77d9170 transformer/react: IsStaticChildren should be false when there is only one child (#5745) (Dunqing)
|
||||||
|
|
||||||
|
### Refactor
|
||||||
|
|
||||||
|
- 4bdc202 rust: Remove some #[allow(unused)] (#5716) (Boshen)
|
||||||
|
- cc0408b semantic: S/AstNodeId/NodeId (#5740) (Boshen)
|
||||||
|
|
||||||
## [0.28.0] - 2024-09-11
|
## [0.28.0] - 2024-09-11
|
||||||
|
|
||||||
- ee4fb42 ast: [**BREAKING**] Reduce size of `WithClause` by `Box`ing it (#5677) (Boshen)
|
- ee4fb42 ast: [**BREAKING**] Reduce size of `WithClause` by `Box`ing it (#5677) (Boshen)
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "oxc_transformer"
|
name = "oxc_transformer"
|
||||||
version = "0.28.0"
|
version = "0.29.0"
|
||||||
authors.workspace = true
|
authors.workspace = true
|
||||||
categories.workspace = true
|
categories.workspace = true
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,17 @@ All notable changes to this package will be documented in this file.
|
||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0.
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0.
|
||||||
|
|
||||||
|
## [0.29.0] - 2024-09-13
|
||||||
|
|
||||||
|
- c3dd2a0 ast: [**BREAKING**] Revert: reduce byte size of `TaggedTemplateExpression::quasi` by `Boxing` it (#5679) (#5715) (overlookmotel)
|
||||||
|
|
||||||
|
### Performance
|
||||||
|
|
||||||
|
|
||||||
|
### Refactor
|
||||||
|
|
||||||
|
- cc0408b semantic: S/AstNodeId/NodeId (#5740) (Boshen)
|
||||||
|
|
||||||
## [0.28.0] - 2024-09-11
|
## [0.28.0] - 2024-09-11
|
||||||
|
|
||||||
- afc4548 ast: [**BREAKING**] Educe byte size of `TaggedTemplateExpression::quasi` by `Boxing` it (#5679) (Boshen)
|
- afc4548 ast: [**BREAKING**] Educe byte size of `TaggedTemplateExpression::quasi` by `Boxing` it (#5679) (Boshen)
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "oxc_traverse"
|
name = "oxc_traverse"
|
||||||
version = "0.28.0"
|
version = "0.29.0"
|
||||||
authors.workspace = true
|
authors.workspace = true
|
||||||
categories.workspace = true
|
categories.workspace = true
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,12 @@ All notable changes to this package will be documented in this file.
|
||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0.
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0.
|
||||||
|
|
||||||
|
## [0.29.0] - 2024-09-13
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
- 608b7d3 napi/transformer: Refresh plugin doesn't work even after passing the refresh option (#5702) (Dunqing)
|
||||||
|
|
||||||
## [0.28.0] - 2024-09-11
|
## [0.28.0] - 2024-09-11
|
||||||
|
|
||||||
- b060525 semantic: [**BREAKING**] Remove `source_type` argument from `SemanticBuilder::new` (#5553) (Boshen)
|
- b060525 semantic: [**BREAKING**] Remove `source_type` argument from `SemanticBuilder::new` (#5553) (Boshen)
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "oxc_transform_napi"
|
name = "oxc_transform_napi"
|
||||||
version = "0.28.0"
|
version = "0.29.0"
|
||||||
authors.workspace = true
|
authors.workspace = true
|
||||||
categories.workspace = true
|
categories.workspace = true
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "oxc-parser",
|
"name": "oxc-parser",
|
||||||
"version": "0.28.0",
|
"version": "0.29.0",
|
||||||
"description": "Oxc Parser Node API",
|
"description": "Oxc Parser Node API",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"Parser"
|
"Parser"
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "oxc-transform",
|
"name": "oxc-transform",
|
||||||
"version": "0.28.0",
|
"version": "0.29.0",
|
||||||
"description": "Oxc transform Node API",
|
"description": "Oxc transform Node API",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"transform"
|
"transform"
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@oxc-parser/wasm",
|
"name": "@oxc-parser/wasm",
|
||||||
"version": "0.28.0",
|
"version": "0.29.0",
|
||||||
"description": "Wasm target for the oxc parser.",
|
"description": "Wasm target for the oxc parser.",
|
||||||
"packageManager": "pnpm@9.9.0",
|
"packageManager": "pnpm@9.9.0",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue