mirror of
https://github.com/danbulant/oxc
synced 2026-05-19 12:19:15 +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]]
|
||||
name = "oxc"
|
||||
version = "0.28.0"
|
||||
version = "0.29.0"
|
||||
dependencies = [
|
||||
"oxc_allocator",
|
||||
"oxc_ast",
|
||||
|
|
@ -1436,7 +1436,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_allocator"
|
||||
version = "0.28.0"
|
||||
version = "0.29.0"
|
||||
dependencies = [
|
||||
"allocator-api2",
|
||||
"bumpalo",
|
||||
|
|
@ -1446,7 +1446,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_ast"
|
||||
version = "0.28.0"
|
||||
version = "0.29.0"
|
||||
dependencies = [
|
||||
"bitflags 2.6.0",
|
||||
"num-bigint",
|
||||
|
|
@ -1463,7 +1463,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_ast_macros"
|
||||
version = "0.28.0"
|
||||
version = "0.29.0"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
|
|
@ -1510,7 +1510,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_cfg"
|
||||
version = "0.28.0"
|
||||
version = "0.29.0"
|
||||
dependencies = [
|
||||
"bitflags 2.6.0",
|
||||
"itertools",
|
||||
|
|
@ -1521,7 +1521,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_codegen"
|
||||
version = "0.28.0"
|
||||
version = "0.29.0"
|
||||
dependencies = [
|
||||
"base64",
|
||||
"bitflags 2.6.0",
|
||||
|
|
@ -1569,7 +1569,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_diagnostics"
|
||||
version = "0.28.0"
|
||||
version = "0.29.0"
|
||||
dependencies = [
|
||||
"miette",
|
||||
"owo-colors",
|
||||
|
|
@ -1579,7 +1579,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_index"
|
||||
version = "0.28.0"
|
||||
version = "0.29.0"
|
||||
dependencies = [
|
||||
"rayon",
|
||||
"serde",
|
||||
|
|
@ -1587,7 +1587,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_isolated_declarations"
|
||||
version = "0.28.0"
|
||||
version = "0.29.0"
|
||||
dependencies = [
|
||||
"insta",
|
||||
"oxc_allocator",
|
||||
|
|
@ -1680,7 +1680,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_mangler"
|
||||
version = "0.28.0"
|
||||
version = "0.29.0"
|
||||
dependencies = [
|
||||
"itertools",
|
||||
"oxc_ast",
|
||||
|
|
@ -1691,7 +1691,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_minifier"
|
||||
version = "0.28.0"
|
||||
version = "0.29.0"
|
||||
dependencies = [
|
||||
"cow-utils",
|
||||
"insta",
|
||||
|
|
@ -1726,7 +1726,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_module_lexer"
|
||||
version = "0.28.0"
|
||||
version = "0.29.0"
|
||||
dependencies = [
|
||||
"oxc_allocator",
|
||||
"oxc_ast",
|
||||
|
|
@ -1736,7 +1736,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_parser"
|
||||
version = "0.28.0"
|
||||
version = "0.29.0"
|
||||
dependencies = [
|
||||
"assert-unchecked",
|
||||
"bitflags 2.6.0",
|
||||
|
|
@ -1812,7 +1812,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_regular_expression"
|
||||
version = "0.28.0"
|
||||
version = "0.29.0"
|
||||
dependencies = [
|
||||
"oxc_allocator",
|
||||
"oxc_ast_macros",
|
||||
|
|
@ -1846,7 +1846,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_semantic"
|
||||
version = "0.28.0"
|
||||
version = "0.29.0"
|
||||
dependencies = [
|
||||
"assert-unchecked",
|
||||
"indexmap",
|
||||
|
|
@ -1870,7 +1870,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_sourcemap"
|
||||
version = "0.28.0"
|
||||
version = "0.29.0"
|
||||
dependencies = [
|
||||
"base64-simd",
|
||||
"cfg-if",
|
||||
|
|
@ -1883,7 +1883,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_span"
|
||||
version = "0.28.0"
|
||||
version = "0.29.0"
|
||||
dependencies = [
|
||||
"compact_str",
|
||||
"miette",
|
||||
|
|
@ -1897,7 +1897,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_syntax"
|
||||
version = "0.28.0"
|
||||
version = "0.29.0"
|
||||
dependencies = [
|
||||
"assert-unchecked",
|
||||
"bitflags 2.6.0",
|
||||
|
|
@ -1941,7 +1941,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_transform_napi"
|
||||
version = "0.28.0"
|
||||
version = "0.29.0"
|
||||
dependencies = [
|
||||
"napi",
|
||||
"napi-build",
|
||||
|
|
@ -1960,7 +1960,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_transformer"
|
||||
version = "0.28.0"
|
||||
version = "0.29.0"
|
||||
dependencies = [
|
||||
"base64",
|
||||
"dashmap 6.0.1",
|
||||
|
|
@ -1986,7 +1986,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_traverse"
|
||||
version = "0.28.0"
|
||||
version = "0.29.0"
|
||||
dependencies = [
|
||||
"compact_str",
|
||||
"itoa",
|
||||
|
|
|
|||
42
Cargo.toml
42
Cargo.toml
|
|
@ -76,27 +76,27 @@ doc_lazy_continuation = "allow" # FIXME
|
|||
|
||||
[workspace.dependencies]
|
||||
# publish = true
|
||||
oxc = { version = "0.28.0", path = "crates/oxc" }
|
||||
oxc_allocator = { version = "0.28.0", path = "crates/oxc_allocator" }
|
||||
oxc_ast = { version = "0.28.0", path = "crates/oxc_ast" }
|
||||
oxc_ast_macros = { version = "0.28.0", path = "crates/oxc_ast_macros" }
|
||||
oxc_cfg = { version = "0.28.0", path = "crates/oxc_cfg" }
|
||||
oxc_codegen = { version = "0.28.0", path = "crates/oxc_codegen" }
|
||||
oxc_diagnostics = { version = "0.28.0", path = "crates/oxc_diagnostics" }
|
||||
oxc_index = { version = "0.28.0", path = "crates/oxc_index" }
|
||||
oxc_isolated_declarations = { version = "0.28.0", path = "crates/oxc_isolated_declarations" }
|
||||
oxc_mangler = { version = "0.28.0", path = "crates/oxc_mangler" }
|
||||
oxc_minifier = { version = "0.28.0", path = "crates/oxc_minifier" }
|
||||
oxc_module_lexer = { version = "0.28.0", path = "crates/oxc_module_lexer" }
|
||||
oxc_parser = { version = "0.28.0", path = "crates/oxc_parser" }
|
||||
oxc_regular_expression = { version = "0.28.0", path = "crates/oxc_regular_expression" }
|
||||
oxc_semantic = { version = "0.28.0", path = "crates/oxc_semantic" }
|
||||
oxc_sourcemap = { version = "0.28.0", path = "crates/oxc_sourcemap" }
|
||||
oxc_span = { version = "0.28.0", path = "crates/oxc_span" }
|
||||
oxc_syntax = { version = "0.28.0", path = "crates/oxc_syntax" }
|
||||
oxc_transform_napi = { version = "0.28.0", path = "napi/transform" }
|
||||
oxc_transformer = { version = "0.28.0", path = "crates/oxc_transformer" }
|
||||
oxc_traverse = { version = "0.28.0", path = "crates/oxc_traverse" }
|
||||
oxc = { version = "0.29.0", path = "crates/oxc" }
|
||||
oxc_allocator = { version = "0.29.0", path = "crates/oxc_allocator" }
|
||||
oxc_ast = { version = "0.29.0", path = "crates/oxc_ast" }
|
||||
oxc_ast_macros = { version = "0.29.0", path = "crates/oxc_ast_macros" }
|
||||
oxc_cfg = { version = "0.29.0", path = "crates/oxc_cfg" }
|
||||
oxc_codegen = { version = "0.29.0", path = "crates/oxc_codegen" }
|
||||
oxc_diagnostics = { version = "0.29.0", path = "crates/oxc_diagnostics" }
|
||||
oxc_index = { version = "0.29.0", path = "crates/oxc_index" }
|
||||
oxc_isolated_declarations = { version = "0.29.0", path = "crates/oxc_isolated_declarations" }
|
||||
oxc_mangler = { version = "0.29.0", path = "crates/oxc_mangler" }
|
||||
oxc_minifier = { version = "0.29.0", path = "crates/oxc_minifier" }
|
||||
oxc_module_lexer = { version = "0.29.0", path = "crates/oxc_module_lexer" }
|
||||
oxc_parser = { version = "0.29.0", path = "crates/oxc_parser" }
|
||||
oxc_regular_expression = { version = "0.29.0", path = "crates/oxc_regular_expression" }
|
||||
oxc_semantic = { version = "0.29.0", path = "crates/oxc_semantic" }
|
||||
oxc_sourcemap = { version = "0.29.0", path = "crates/oxc_sourcemap" }
|
||||
oxc_span = { version = "0.29.0", path = "crates/oxc_span" }
|
||||
oxc_syntax = { version = "0.29.0", path = "crates/oxc_syntax" }
|
||||
oxc_transform_napi = { version = "0.29.0", path = "napi/transform" }
|
||||
oxc_transformer = { version = "0.29.0", path = "crates/oxc_transformer" }
|
||||
oxc_traverse = { version = "0.29.0", path = "crates/oxc_traverse" }
|
||||
|
||||
# publish = false
|
||||
oxc_linter = { path = "crates/oxc_linter" }
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc"
|
||||
version = "0.28.0"
|
||||
version = "0.29.0"
|
||||
authors.workspace = true
|
||||
categories.workspace = true
|
||||
edition.workspace = true
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_allocator"
|
||||
version = "0.28.0"
|
||||
version = "0.29.0"
|
||||
authors.workspace = true
|
||||
categories.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.
|
||||
|
||||
## [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
|
||||
|
||||
- afc4548 ast: [**BREAKING**] Educe byte size of `TaggedTemplateExpression::quasi` by `Boxing` it (#5679) (Boshen)
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_ast"
|
||||
version = "0.28.0"
|
||||
version = "0.29.0"
|
||||
authors.workspace = true
|
||||
categories.workspace = true
|
||||
edition.workspace = true
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_ast_macros"
|
||||
version = "0.28.0"
|
||||
version = "0.29.0"
|
||||
authors.workspace = true
|
||||
categories.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.
|
||||
|
||||
## [0.29.0] - 2024-09-13
|
||||
|
||||
### Refactor
|
||||
|
||||
- cc0408b semantic: S/AstNodeId/NodeId (#5740) (Boshen)
|
||||
|
||||
## [0.21.0] - 2024-07-18
|
||||
|
||||
### Refactor
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_cfg"
|
||||
version = "0.28.0"
|
||||
version = "0.29.0"
|
||||
authors.workspace = true
|
||||
categories.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.
|
||||
|
||||
## [0.29.0] - 2024-09-13
|
||||
|
||||
### Performance
|
||||
|
||||
- d18c896 rust: Use `cow_utils` instead (#5664) (dalaoshu)
|
||||
|
||||
## [0.28.0] - 2024-09-11
|
||||
|
||||
- ee4fb42 ast: [**BREAKING**] Reduce size of `WithClause` by `Box`ing it (#5677) (Boshen)
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_codegen"
|
||||
version = "0.28.0"
|
||||
version = "0.29.0"
|
||||
authors.workspace = true
|
||||
categories.workspace = true
|
||||
edition.workspace = true
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_diagnostics"
|
||||
version = "0.28.0"
|
||||
version = "0.29.0"
|
||||
authors.workspace = true
|
||||
categories.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.
|
||||
|
||||
## [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
|
||||
|
||||
### Refactor
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_index"
|
||||
version = "0.28.0"
|
||||
version = "0.29.0"
|
||||
authors.workspace = true
|
||||
categories.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.
|
||||
|
||||
## [0.29.0] - 2024-09-13
|
||||
|
||||
### Features
|
||||
|
||||
- 953fe17 ast: Provide `NONE` type for AST builder calls (#5737) (overlookmotel)
|
||||
|
||||
## [0.28.0] - 2024-09-11
|
||||
|
||||
- ee4fb42 ast: [**BREAKING**] Reduce size of `WithClause` by `Box`ing it (#5677) (Boshen)
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_isolated_declarations"
|
||||
version = "0.28.0"
|
||||
version = "0.29.0"
|
||||
authors.workspace = true
|
||||
categories.workspace = true
|
||||
edition.workspace = true
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_mangler"
|
||||
version = "0.28.0"
|
||||
version = "0.29.0"
|
||||
authors.workspace = true
|
||||
categories.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.
|
||||
|
||||
## [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
|
||||
|
||||
- ee4fb42 ast: [**BREAKING**] Reduce size of `WithClause` by `Box`ing it (#5677) (Boshen)
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_minifier"
|
||||
version = "0.28.0"
|
||||
version = "0.29.0"
|
||||
authors.workspace = true
|
||||
categories.workspace = true
|
||||
edition.workspace = true
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_module_lexer"
|
||||
version = "0.28.0"
|
||||
version = "0.29.0"
|
||||
authors.workspace = true
|
||||
categories.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.
|
||||
|
||||
## [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
|
||||
|
||||
- ee4fb42 ast: [**BREAKING**] Reduce size of `WithClause` by `Box`ing it (#5677) (Boshen)
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_parser"
|
||||
version = "0.28.0"
|
||||
version = "0.29.0"
|
||||
authors.workspace = true
|
||||
categories.workspace = true
|
||||
edition.workspace = true
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_regular_expression"
|
||||
version = "0.28.0"
|
||||
version = "0.29.0"
|
||||
authors.workspace = true
|
||||
categories.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.
|
||||
|
||||
## [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
|
||||
|
||||
- 1fa3e56 semantic: [**BREAKING**] Rename `SymbolTable::iter` to `symbol_ids` (#5621) (overlookmotel)
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_semantic"
|
||||
version = "0.28.0"
|
||||
version = "0.29.0"
|
||||
authors.workspace = true
|
||||
categories.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.
|
||||
|
||||
## [0.29.0] - 2024-09-13
|
||||
|
||||
### Performance
|
||||
|
||||
- d18c896 rust: Use `cow_utils` instead (#5664) (dalaoshu)
|
||||
|
||||
## [0.28.0] - 2024-09-11
|
||||
|
||||
### Documentation
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_sourcemap"
|
||||
version = "0.28.0"
|
||||
version = "0.29.0"
|
||||
authors.workspace = true
|
||||
categories.workspace = true
|
||||
edition.workspace = true
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_span"
|
||||
version = "0.28.0"
|
||||
version = "0.29.0"
|
||||
authors.workspace = true
|
||||
categories.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.
|
||||
|
||||
## [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
|
||||
|
||||
### Features
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_syntax"
|
||||
version = "0.28.0"
|
||||
version = "0.29.0"
|
||||
authors.workspace = true
|
||||
categories.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.
|
||||
|
||||
## [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
|
||||
|
||||
- ee4fb42 ast: [**BREAKING**] Reduce size of `WithClause` by `Box`ing it (#5677) (Boshen)
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_transformer"
|
||||
version = "0.28.0"
|
||||
version = "0.29.0"
|
||||
authors.workspace = true
|
||||
categories.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.
|
||||
|
||||
## [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
|
||||
|
||||
- afc4548 ast: [**BREAKING**] Educe byte size of `TaggedTemplateExpression::quasi` by `Boxing` it (#5679) (Boshen)
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_traverse"
|
||||
version = "0.28.0"
|
||||
version = "0.29.0"
|
||||
authors.workspace = true
|
||||
categories.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.
|
||||
|
||||
## [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
|
||||
|
||||
- b060525 semantic: [**BREAKING**] Remove `source_type` argument from `SemanticBuilder::new` (#5553) (Boshen)
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_transform_napi"
|
||||
version = "0.28.0"
|
||||
version = "0.29.0"
|
||||
authors.workspace = true
|
||||
categories.workspace = true
|
||||
edition.workspace = true
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "oxc-parser",
|
||||
"version": "0.28.0",
|
||||
"version": "0.29.0",
|
||||
"description": "Oxc Parser Node API",
|
||||
"keywords": [
|
||||
"Parser"
|
||||
|
|
@ -22,4 +22,4 @@
|
|||
"index.d.ts",
|
||||
"index.js"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "oxc-transform",
|
||||
"version": "0.28.0",
|
||||
"version": "0.29.0",
|
||||
"description": "Oxc transform Node API",
|
||||
"keywords": [
|
||||
"transform"
|
||||
|
|
@ -22,4 +22,4 @@
|
|||
"index.d.ts",
|
||||
"index.js"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@oxc-parser/wasm",
|
||||
"version": "0.28.0",
|
||||
"version": "0.29.0",
|
||||
"description": "Wasm target for the oxc parser.",
|
||||
"packageManager": "pnpm@9.9.0",
|
||||
"keywords": [
|
||||
|
|
@ -38,4 +38,4 @@
|
|||
"devDependencies": {
|
||||
"wasm-pack": "^0.13.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue