From 238e0866cb9c9cccdcdbfb727a60b6a077465872 Mon Sep 17 00:00:00 2001 From: oxc-bot Date: Sat, 26 Oct 2024 09:39:53 +0800 Subject: [PATCH] release(crates): v0.34.0 (#6908) ## [0.34.0] - 2024-10-26 - 4618aa2 transformer: [**BREAKING**] Rename `TransformerOptions::react` to `jsx` (#6888) (Boshen) - 90c786c regular_expression: [**BREAKING**] Support ES2025 Duplicated named capture groups (#6847) (leaysgur) - 67a7bde napi/parser: [**BREAKING**] Add typings to napi/parser (#6796) (ottomated) ### Features - 1145341 ast_tools: Output typescript to a separate package (#6755) (ottomated) - 4429754 ecmascript: Constant eval `null` to number (#6879) (Boshen) - fd57e00 ecmascript: Add abstract_relational_comparison to dce (#6846) (Boshen) - 8bcaf59 minifier: Late peeophole optimization (#6882) (Boshen) - 860cbca minifier: Implement folding simple arrow fns (#6875) (camc314) - c26020e minifier: Implement folding String.prototype.replaceAll (#6871) (camc314) - 50744f3 minifier: Implement folding String.prototype.replace (#6870) (camc314) - fccf82e minifier: Implement folding `substring` string fns (#6869) (camc314) - e6a5a1b minifier: Implement folding `charCodeAt` string fns (#6475) (camc314) - 0d0bb17 transformer: Complete the async-to-generator plugin (#6658) (Dunqing) - 419343b traverse: Implement `GetAddress` for `Ancestor` (#6877) (overlookmotel) ### Bug Fixes - a47c70e minifier: Fix remaining runtime bugs (#6855) (Boshen) - 686727f minifier: Reference read has side effect (#6851) (Boshen) - c658d93 minifier: Keep template literals with expressions (#6849) (Boshen) - 4dc5e51 transformer: Only run typescript plugin for typescript source (#6889) (Boshen) - 076f5c3 transformer/typescript: Retain ExportNamedDeclaration without specifiers and declaration (#6848) (Dunqing) - b075982 types: Change @oxc/types package name (#6874) (ottomated) ### Documentation - 6eeb0e6 ast: Mention typescript-eslint, field ordering and shape (#6863) (Boshen) - 99e3b32 napi: Remove JSON.parse from example (#6836) (ottomated) ### Refactor - adb5039 allocator: Add `impl GetAddress for Address` (#6891) (overlookmotel) - 3e7507f ast_tools: Reduce macro usage (#6895) (overlookmotel) - 423d54c rust: Remove the annoying `clippy::wildcard_imports` (#6860) (Boshen) - 2d95009 transformer: Implement `Debug` on `StatementInjector` internal types (#6886) (overlookmotel) - c383c34 transformer: Make `StatementInjectorStore` methods generic over `GetAddress` (#6885) (overlookmotel) - 1f29523 transformer: Rename ReactJsx to Jsx (#6883) (Boshen) - 333b758 transformer: `StatementInjectorStore` methods take `&Statement` as target (#6858) (overlookmotel) - c19996c transformer: Add `StatementInjectorStore::insert_many_before` method (#6857) (overlookmotel) - 7339dde transformer: `StatementInjectorStore::insert_many_after` take an iterator (#6856) (overlookmotel) - 4348eae transformer/typescript: Re-order visitor methods (#6864) (overlookmotel) - 3a56d59 transformer/typescript: Insert assignments after super by `StatementInjector` (#6654) (Dunqing) - a366fae traverse: Rename `TraverseScoping::generate_binding_in_current_scope` (#6832) (overlookmotel) - 3b99fe6 traverse: Move `generate_binding` to `TraverseScoping` (#6831) (overlookmotel) - 60f487a traverse: `TraverseCtx::generate_binding` take an `Atom` (#6830) (overlookmotel) ### Styling - 262b2ed ast: Move crate doc comment to top of file (#6890) (overlookmotel) --------- Co-authored-by: Boshen <1430279+Boshen@users.noreply.github.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> --- Cargo.lock | 48 +++++++++---------- Cargo.toml | 48 +++++++++---------- crates/oxc/CHANGELOG.md | 17 +++++++ crates/oxc/Cargo.toml | 2 +- crates/oxc_allocator/CHANGELOG.md | 10 ++++ crates/oxc_allocator/Cargo.toml | 2 +- crates/oxc_ast/CHANGELOG.md | 24 ++++++++++ crates/oxc_ast/Cargo.toml | 2 +- crates/oxc_ast_macros/Cargo.toml | 2 +- crates/oxc_cfg/Cargo.toml | 2 +- crates/oxc_codegen/CHANGELOG.md | 6 +++ crates/oxc_codegen/Cargo.toml | 2 +- crates/oxc_data_structures/Cargo.toml | 2 +- crates/oxc_diagnostics/Cargo.toml | 2 +- crates/oxc_ecmascript/CHANGELOG.md | 19 ++++++++ crates/oxc_ecmascript/Cargo.toml | 2 +- crates/oxc_estree/Cargo.toml | 2 +- crates/oxc_index/CHANGELOG.md | 6 +++ crates/oxc_index/Cargo.toml | 2 +- crates/oxc_isolated_declarations/CHANGELOG.md | 6 +++ crates/oxc_isolated_declarations/Cargo.toml | 2 +- crates/oxc_mangler/Cargo.toml | 2 +- crates/oxc_minifier/CHANGELOG.md | 23 +++++++++ crates/oxc_minifier/Cargo.toml | 2 +- crates/oxc_module_lexer/CHANGELOG.md | 6 +++ crates/oxc_module_lexer/Cargo.toml | 2 +- crates/oxc_parser/CHANGELOG.md | 6 +++ crates/oxc_parser/Cargo.toml | 2 +- crates/oxc_regular_expression/CHANGELOG.md | 12 +++++ crates/oxc_regular_expression/Cargo.toml | 2 +- crates/oxc_semantic/CHANGELOG.md | 6 +++ crates/oxc_semantic/Cargo.toml | 2 +- crates/oxc_sourcemap/Cargo.toml | 2 +- crates/oxc_span/CHANGELOG.md | 10 ++++ crates/oxc_span/Cargo.toml | 2 +- crates/oxc_syntax/CHANGELOG.md | 10 ++++ crates/oxc_syntax/Cargo.toml | 2 +- crates/oxc_transformer/CHANGELOG.md | 26 ++++++++++ crates/oxc_transformer/Cargo.toml | 2 +- crates/oxc_traverse/CHANGELOG.md | 13 +++++ crates/oxc_traverse/Cargo.toml | 2 +- napi/transform/Cargo.toml | 2 +- npm/oxc-parser/CHANGELOG.md | 15 ++++++ npm/oxc-parser/package.json | 4 +- npm/oxc-transform/package.json | 2 +- npm/oxc-types/CHANGELOG.md | 18 +++++++ npm/oxc-types/package.json | 4 +- wasm/parser/CHANGELOG.md | 10 ++++ wasm/parser/package.json | 2 +- 49 files changed, 321 insertions(+), 78 deletions(-) create mode 100644 npm/oxc-types/CHANGELOG.md diff --git a/Cargo.lock b/Cargo.lock index ad2a9dc5f877c..b281647ecf299 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1389,7 +1389,7 @@ checksum = "fb37767f6569cd834a413442455e0f066d0d522de8630436e2a1761d9726ba56" [[package]] name = "oxc" -version = "0.33.0" +version = "0.34.0" dependencies = [ "napi", "napi-derive", @@ -1431,7 +1431,7 @@ dependencies = [ [[package]] name = "oxc_allocator" -version = "0.33.0" +version = "0.34.0" dependencies = [ "allocator-api2", "bumpalo", @@ -1441,7 +1441,7 @@ dependencies = [ [[package]] name = "oxc_ast" -version = "0.33.0" +version = "0.34.0" dependencies = [ "bitflags 2.6.0", "num-bigint", @@ -1457,7 +1457,7 @@ dependencies = [ [[package]] name = "oxc_ast_macros" -version = "0.33.0" +version = "0.34.0" dependencies = [ "proc-macro2", "quote", @@ -1505,7 +1505,7 @@ dependencies = [ [[package]] name = "oxc_cfg" -version = "0.33.0" +version = "0.34.0" dependencies = [ "bitflags 2.6.0", "itertools", @@ -1518,7 +1518,7 @@ dependencies = [ [[package]] name = "oxc_codegen" -version = "0.33.0" +version = "0.34.0" dependencies = [ "assert-unchecked", "base64", @@ -1567,14 +1567,14 @@ dependencies = [ [[package]] name = "oxc_data_structures" -version = "0.33.0" +version = "0.34.0" dependencies = [ "assert-unchecked", ] [[package]] name = "oxc_diagnostics" -version = "0.33.0" +version = "0.34.0" dependencies = [ "miette", "owo-colors", @@ -1585,7 +1585,7 @@ dependencies = [ [[package]] name = "oxc_ecmascript" -version = "0.33.0" +version = "0.34.0" dependencies = [ "num-bigint", "num-traits", @@ -1596,11 +1596,11 @@ dependencies = [ [[package]] name = "oxc_estree" -version = "0.33.0" +version = "0.34.0" [[package]] name = "oxc_index" -version = "0.33.0" +version = "0.34.0" dependencies = [ "rayon", "serde", @@ -1608,7 +1608,7 @@ dependencies = [ [[package]] name = "oxc_isolated_declarations" -version = "0.33.0" +version = "0.34.0" dependencies = [ "bitflags 2.6.0", "insta", @@ -1707,7 +1707,7 @@ dependencies = [ [[package]] name = "oxc_mangler" -version = "0.33.0" +version = "0.34.0" dependencies = [ "itertools", "oxc_ast", @@ -1718,7 +1718,7 @@ dependencies = [ [[package]] name = "oxc_minifier" -version = "0.33.0" +version = "0.34.0" dependencies = [ "cow-utils", "insta", @@ -1766,7 +1766,7 @@ dependencies = [ [[package]] name = "oxc_module_lexer" -version = "0.33.0" +version = "0.34.0" dependencies = [ "oxc_allocator", "oxc_ast", @@ -1777,7 +1777,7 @@ dependencies = [ [[package]] name = "oxc_parser" -version = "0.33.0" +version = "0.34.0" dependencies = [ "assert-unchecked", "bitflags 2.6.0", @@ -1853,7 +1853,7 @@ dependencies = [ [[package]] name = "oxc_regular_expression" -version = "0.33.0" +version = "0.34.0" dependencies = [ "oxc_allocator", "oxc_ast_macros", @@ -1888,7 +1888,7 @@ dependencies = [ [[package]] name = "oxc_semantic" -version = "0.33.0" +version = "0.34.0" dependencies = [ "assert-unchecked", "indexmap", @@ -1913,7 +1913,7 @@ dependencies = [ [[package]] name = "oxc_sourcemap" -version = "0.33.0" +version = "0.34.0" dependencies = [ "base64-simd", "cfg-if", @@ -1926,7 +1926,7 @@ dependencies = [ [[package]] name = "oxc_span" -version = "0.33.0" +version = "0.34.0" dependencies = [ "compact_str", "miette", @@ -1939,7 +1939,7 @@ dependencies = [ [[package]] name = "oxc_syntax" -version = "0.33.0" +version = "0.34.0" dependencies = [ "assert-unchecked", "bitflags 2.6.0", @@ -1998,7 +1998,7 @@ dependencies = [ [[package]] name = "oxc_transform_napi" -version = "0.33.0" +version = "0.34.0" dependencies = [ "napi", "napi-build", @@ -2008,7 +2008,7 @@ dependencies = [ [[package]] name = "oxc_transformer" -version = "0.33.0" +version = "0.34.0" dependencies = [ "base64", "cow-utils", @@ -2038,7 +2038,7 @@ dependencies = [ [[package]] name = "oxc_traverse" -version = "0.33.0" +version = "0.34.0" dependencies = [ "compact_str", "itoa", diff --git a/Cargo.toml b/Cargo.toml index 9fc445da80153..a8d8413ab2304 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -78,30 +78,30 @@ doc_lazy_continuation = "allow" # FIXME [workspace.dependencies] # publish = true -oxc = { version = "0.33.0", path = "crates/oxc" } -oxc_allocator = { version = "0.33.0", path = "crates/oxc_allocator" } -oxc_ast = { version = "0.33.0", path = "crates/oxc_ast" } -oxc_ast_macros = { version = "0.33.0", path = "crates/oxc_ast_macros" } -oxc_cfg = { version = "0.33.0", path = "crates/oxc_cfg" } -oxc_codegen = { version = "0.33.0", path = "crates/oxc_codegen" } -oxc_data_structures = { version = "0.33.0", path = "crates/oxc_data_structures" } -oxc_diagnostics = { version = "0.33.0", path = "crates/oxc_diagnostics" } -oxc_ecmascript = { version = "0.33.0", path = "crates/oxc_ecmascript" } -oxc_estree = { version = "0.33.0", path = "crates/oxc_estree" } -oxc_index = { version = "0.33.0", path = "crates/oxc_index" } -oxc_isolated_declarations = { version = "0.33.0", path = "crates/oxc_isolated_declarations" } -oxc_mangler = { version = "0.33.0", path = "crates/oxc_mangler" } -oxc_minifier = { version = "0.33.0", path = "crates/oxc_minifier" } -oxc_module_lexer = { version = "0.33.0", path = "crates/oxc_module_lexer" } -oxc_parser = { version = "0.33.0", path = "crates/oxc_parser" } -oxc_regular_expression = { version = "0.33.0", path = "crates/oxc_regular_expression" } -oxc_semantic = { version = "0.33.0", path = "crates/oxc_semantic" } -oxc_sourcemap = { version = "0.33.0", path = "crates/oxc_sourcemap" } -oxc_span = { version = "0.33.0", path = "crates/oxc_span" } -oxc_syntax = { version = "0.33.0", path = "crates/oxc_syntax" } -oxc_transform_napi = { version = "0.33.0", path = "napi/transform" } -oxc_transformer = { version = "0.33.0", path = "crates/oxc_transformer" } -oxc_traverse = { version = "0.33.0", path = "crates/oxc_traverse" } +oxc = { version = "0.34.0", path = "crates/oxc" } +oxc_allocator = { version = "0.34.0", path = "crates/oxc_allocator" } +oxc_ast = { version = "0.34.0", path = "crates/oxc_ast" } +oxc_ast_macros = { version = "0.34.0", path = "crates/oxc_ast_macros" } +oxc_cfg = { version = "0.34.0", path = "crates/oxc_cfg" } +oxc_codegen = { version = "0.34.0", path = "crates/oxc_codegen" } +oxc_data_structures = { version = "0.34.0", path = "crates/oxc_data_structures" } +oxc_diagnostics = { version = "0.34.0", path = "crates/oxc_diagnostics" } +oxc_ecmascript = { version = "0.34.0", path = "crates/oxc_ecmascript" } +oxc_estree = { version = "0.34.0", path = "crates/oxc_estree" } +oxc_index = { version = "0.34.0", path = "crates/oxc_index" } +oxc_isolated_declarations = { version = "0.34.0", path = "crates/oxc_isolated_declarations" } +oxc_mangler = { version = "0.34.0", path = "crates/oxc_mangler" } +oxc_minifier = { version = "0.34.0", path = "crates/oxc_minifier" } +oxc_module_lexer = { version = "0.34.0", path = "crates/oxc_module_lexer" } +oxc_parser = { version = "0.34.0", path = "crates/oxc_parser" } +oxc_regular_expression = { version = "0.34.0", path = "crates/oxc_regular_expression" } +oxc_semantic = { version = "0.34.0", path = "crates/oxc_semantic" } +oxc_sourcemap = { version = "0.34.0", path = "crates/oxc_sourcemap" } +oxc_span = { version = "0.34.0", path = "crates/oxc_span" } +oxc_syntax = { version = "0.34.0", path = "crates/oxc_syntax" } +oxc_transform_napi = { version = "0.34.0", path = "napi/transform" } +oxc_transformer = { version = "0.34.0", path = "crates/oxc_transformer" } +oxc_traverse = { version = "0.34.0", path = "crates/oxc_traverse" } # publish = false oxc_linter = { path = "crates/oxc_linter" } diff --git a/crates/oxc/CHANGELOG.md b/crates/oxc/CHANGELOG.md index beeb3618d806c..73a027eb8abd7 100644 --- a/crates/oxc/CHANGELOG.md +++ b/crates/oxc/CHANGELOG.md @@ -4,6 +4,23 @@ 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.34.0] - 2024-10-26 + +- 4618aa2 transformer: [**BREAKING**] Rename `TransformerOptions::react` to `jsx` (#6888) (Boshen) + +- 67a7bde napi/parser: [**BREAKING**] Add typings to napi/parser (#6796) (ottomated) + +### Features + + +### Bug Fixes + +- 4dc5e51 transformer: Only run typescript plugin for typescript source (#6889) (Boshen) +- b075982 types: Change @oxc/types package name (#6874) (ottomated) + +### Refactor + + ## [0.32.0] - 2024-10-19 - 91c87dd codegen: [**BREAKING**] Remove `Codegen::enableSourceMap` API (#6452) (Boshen) diff --git a/crates/oxc/Cargo.toml b/crates/oxc/Cargo.toml index e01aac0b95491..8702bd4560b7c 100644 --- a/crates/oxc/Cargo.toml +++ b/crates/oxc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc" -version = "0.33.0" +version = "0.34.0" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_allocator/CHANGELOG.md b/crates/oxc_allocator/CHANGELOG.md index 63295cc5a0e01..abc4ecfb2b648 100644 --- a/crates/oxc_allocator/CHANGELOG.md +++ b/crates/oxc_allocator/CHANGELOG.md @@ -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.34.0] - 2024-10-26 + +### Features + +- 419343b traverse: Implement `GetAddress` for `Ancestor` (#6877) (overlookmotel) + +### Refactor + +- adb5039 allocator: Add `impl GetAddress for Address` (#6891) (overlookmotel) + ## [0.33.0] - 2024-10-24 - e1c2d30 allocator: [**BREAKING**] Make `Vec` non-drop (#6623) (overlookmotel) diff --git a/crates/oxc_allocator/Cargo.toml b/crates/oxc_allocator/Cargo.toml index 20623c578f480..e46f84dd14419 100644 --- a/crates/oxc_allocator/Cargo.toml +++ b/crates/oxc_allocator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_allocator" -version = "0.33.0" +version = "0.34.0" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_ast/CHANGELOG.md b/crates/oxc_ast/CHANGELOG.md index fec9a0f1464cd..a8768d344b1cb 100644 --- a/crates/oxc_ast/CHANGELOG.md +++ b/crates/oxc_ast/CHANGELOG.md @@ -4,6 +4,30 @@ 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.34.0] - 2024-10-26 + +### Features + +- 1145341 ast_tools: Output typescript to a separate package (#6755) (ottomated) +- 0d0bb17 transformer: Complete the async-to-generator plugin (#6658) (Dunqing) + +### Bug Fixes + +- a47c70e minifier: Fix remaining runtime bugs (#6855) (Boshen) + +### Documentation + +- 6eeb0e6 ast: Mention typescript-eslint, field ordering and shape (#6863) (Boshen) + +### Refactor + +- 3e7507f ast_tools: Reduce macro usage (#6895) (overlookmotel) +- 423d54c rust: Remove the annoying `clippy::wildcard_imports` (#6860) (Boshen) + +### Styling + +- 262b2ed ast: Move crate doc comment to top of file (#6890) (overlookmotel) + ## [0.33.0] - 2024-10-24 - 718ccde ast: [**BREAKING**] Remove unused `new` methods (#6789) (overlookmotel) diff --git a/crates/oxc_ast/Cargo.toml b/crates/oxc_ast/Cargo.toml index ba0aa62ddb739..88174d5b40672 100644 --- a/crates/oxc_ast/Cargo.toml +++ b/crates/oxc_ast/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_ast" -version = "0.33.0" +version = "0.34.0" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_ast_macros/Cargo.toml b/crates/oxc_ast_macros/Cargo.toml index a15aa4ec4556a..2a0f5a16f333c 100644 --- a/crates/oxc_ast_macros/Cargo.toml +++ b/crates/oxc_ast_macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_ast_macros" -version = "0.33.0" +version = "0.34.0" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_cfg/Cargo.toml b/crates/oxc_cfg/Cargo.toml index 97ff5fbbfc56b..009645ccb0f13 100644 --- a/crates/oxc_cfg/Cargo.toml +++ b/crates/oxc_cfg/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_cfg" -version = "0.33.0" +version = "0.34.0" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_codegen/CHANGELOG.md b/crates/oxc_codegen/CHANGELOG.md index 1abd397396e1f..91ba618c1685a 100644 --- a/crates/oxc_codegen/CHANGELOG.md +++ b/crates/oxc_codegen/CHANGELOG.md @@ -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.34.0] - 2024-10-26 + +### Refactor + +- 423d54c rust: Remove the annoying `clippy::wildcard_imports` (#6860) (Boshen) + ## [0.33.0] - 2024-10-24 ### Bug Fixes diff --git a/crates/oxc_codegen/Cargo.toml b/crates/oxc_codegen/Cargo.toml index d0c7b5238d9eb..7ccae5885e096 100644 --- a/crates/oxc_codegen/Cargo.toml +++ b/crates/oxc_codegen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_codegen" -version = "0.33.0" +version = "0.34.0" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_data_structures/Cargo.toml b/crates/oxc_data_structures/Cargo.toml index dd89d5d74ee06..8a355bb790718 100644 --- a/crates/oxc_data_structures/Cargo.toml +++ b/crates/oxc_data_structures/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_data_structures" -version = "0.33.0" +version = "0.34.0" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_diagnostics/Cargo.toml b/crates/oxc_diagnostics/Cargo.toml index 4fc6155404ff6..e0c136df0ee91 100644 --- a/crates/oxc_diagnostics/Cargo.toml +++ b/crates/oxc_diagnostics/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_diagnostics" -version = "0.33.0" +version = "0.34.0" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_ecmascript/CHANGELOG.md b/crates/oxc_ecmascript/CHANGELOG.md index 8f500a3837d6d..7462b0f85296b 100644 --- a/crates/oxc_ecmascript/CHANGELOG.md +++ b/crates/oxc_ecmascript/CHANGELOG.md @@ -4,6 +4,25 @@ 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.34.0] - 2024-10-26 + +### Features + +- 4429754 ecmascript: Constant eval `null` to number (#6879) (Boshen) +- fd57e00 ecmascript: Add abstract_relational_comparison to dce (#6846) (Boshen) +- 8bcaf59 minifier: Late peeophole optimization (#6882) (Boshen) +- fccf82e minifier: Implement folding `substring` string fns (#6869) (camc314) +- e6a5a1b minifier: Implement folding `charCodeAt` string fns (#6475) (camc314) + +### Bug Fixes + +- a47c70e minifier: Fix remaining runtime bugs (#6855) (Boshen) +- 686727f minifier: Reference read has side effect (#6851) (Boshen) + +### Refactor + +- 423d54c rust: Remove the annoying `clippy::wildcard_imports` (#6860) (Boshen) + ## [0.33.0] - 2024-10-24 ### Refactor diff --git a/crates/oxc_ecmascript/Cargo.toml b/crates/oxc_ecmascript/Cargo.toml index 300857a9bfd61..3cc195c49f884 100644 --- a/crates/oxc_ecmascript/Cargo.toml +++ b/crates/oxc_ecmascript/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_ecmascript" -version = "0.33.0" +version = "0.34.0" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_estree/Cargo.toml b/crates/oxc_estree/Cargo.toml index dde9791e372f8..8dbd88c95befa 100644 --- a/crates/oxc_estree/Cargo.toml +++ b/crates/oxc_estree/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_estree" -version = "0.33.0" +version = "0.34.0" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_index/CHANGELOG.md b/crates/oxc_index/CHANGELOG.md index 8b5790dd00aa3..6cbefad3e0d5d 100644 --- a/crates/oxc_index/CHANGELOG.md +++ b/crates/oxc_index/CHANGELOG.md @@ -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.34.0] - 2024-10-26 + +### Refactor + +- 423d54c rust: Remove the annoying `clippy::wildcard_imports` (#6860) (Boshen) + ## [0.30.0] - 2024-09-23 ### Testing diff --git a/crates/oxc_index/Cargo.toml b/crates/oxc_index/Cargo.toml index a4774170fa714..7e98b8d4c7340 100644 --- a/crates/oxc_index/Cargo.toml +++ b/crates/oxc_index/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_index" -version = "0.33.0" +version = "0.34.0" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_isolated_declarations/CHANGELOG.md b/crates/oxc_isolated_declarations/CHANGELOG.md index 825a466d6aa80..6caf0d2a44081 100644 --- a/crates/oxc_isolated_declarations/CHANGELOG.md +++ b/crates/oxc_isolated_declarations/CHANGELOG.md @@ -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.34.0] - 2024-10-26 + +### Refactor + +- 423d54c rust: Remove the annoying `clippy::wildcard_imports` (#6860) (Boshen) + ## [0.33.0] - 2024-10-24 ### Refactor diff --git a/crates/oxc_isolated_declarations/Cargo.toml b/crates/oxc_isolated_declarations/Cargo.toml index 72508bd88b0b6..37c6473b9cc59 100644 --- a/crates/oxc_isolated_declarations/Cargo.toml +++ b/crates/oxc_isolated_declarations/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_isolated_declarations" -version = "0.33.0" +version = "0.34.0" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_mangler/Cargo.toml b/crates/oxc_mangler/Cargo.toml index 819ed77519ffe..833374523cc3a 100644 --- a/crates/oxc_mangler/Cargo.toml +++ b/crates/oxc_mangler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_mangler" -version = "0.33.0" +version = "0.34.0" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_minifier/CHANGELOG.md b/crates/oxc_minifier/CHANGELOG.md index 2a7411763f738..736f376a41299 100644 --- a/crates/oxc_minifier/CHANGELOG.md +++ b/crates/oxc_minifier/CHANGELOG.md @@ -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.34.0] - 2024-10-26 + +### Features + +- 4429754 ecmascript: Constant eval `null` to number (#6879) (Boshen) +- fd57e00 ecmascript: Add abstract_relational_comparison to dce (#6846) (Boshen) +- 8bcaf59 minifier: Late peeophole optimization (#6882) (Boshen) +- 860cbca minifier: Implement folding simple arrow fns (#6875) (camc314) +- c26020e minifier: Implement folding String.prototype.replaceAll (#6871) (camc314) +- 50744f3 minifier: Implement folding String.prototype.replace (#6870) (camc314) +- fccf82e minifier: Implement folding `substring` string fns (#6869) (camc314) +- e6a5a1b minifier: Implement folding `charCodeAt` string fns (#6475) (camc314) + +### Bug Fixes + +- a47c70e minifier: Fix remaining runtime bugs (#6855) (Boshen) +- 686727f minifier: Reference read has side effect (#6851) (Boshen) +- c658d93 minifier: Keep template literals with expressions (#6849) (Boshen) + +### Refactor + +- 423d54c rust: Remove the annoying `clippy::wildcard_imports` (#6860) (Boshen) + ## [0.33.0] - 2024-10-24 ### Features diff --git a/crates/oxc_minifier/Cargo.toml b/crates/oxc_minifier/Cargo.toml index a9fc1481db325..783236ee50945 100644 --- a/crates/oxc_minifier/Cargo.toml +++ b/crates/oxc_minifier/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_minifier" -version = "0.33.0" +version = "0.34.0" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_module_lexer/CHANGELOG.md b/crates/oxc_module_lexer/CHANGELOG.md index 4cb1cfd0dad48..88a421657bfe5 100644 --- a/crates/oxc_module_lexer/CHANGELOG.md +++ b/crates/oxc_module_lexer/CHANGELOG.md @@ -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.34.0] - 2024-10-26 + +### Refactor + +- 423d54c rust: Remove the annoying `clippy::wildcard_imports` (#6860) (Boshen) + ## [0.31.0] - 2024-10-08 ### Features diff --git a/crates/oxc_module_lexer/Cargo.toml b/crates/oxc_module_lexer/Cargo.toml index f1b27b23bf358..fb5e0f53ecca7 100644 --- a/crates/oxc_module_lexer/Cargo.toml +++ b/crates/oxc_module_lexer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_module_lexer" -version = "0.33.0" +version = "0.34.0" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_parser/CHANGELOG.md b/crates/oxc_parser/CHANGELOG.md index 80b66f2705082..bfd65e0edb490 100644 --- a/crates/oxc_parser/CHANGELOG.md +++ b/crates/oxc_parser/CHANGELOG.md @@ -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.34.0] - 2024-10-26 + +### Refactor + +- 423d54c rust: Remove the annoying `clippy::wildcard_imports` (#6860) (Boshen) + ## [0.33.0] - 2024-10-24 - a1ca964 ast, parser: [**BREAKING**] Remove `NumericLiteral::new` method (#6787) (overlookmotel) diff --git a/crates/oxc_parser/Cargo.toml b/crates/oxc_parser/Cargo.toml index c2900d512dd10..d8ea5eaeb25b2 100644 --- a/crates/oxc_parser/Cargo.toml +++ b/crates/oxc_parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_parser" -version = "0.33.0" +version = "0.34.0" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_regular_expression/CHANGELOG.md b/crates/oxc_regular_expression/CHANGELOG.md index 9f49cfe625f2b..e97b4dd47fe3d 100644 --- a/crates/oxc_regular_expression/CHANGELOG.md +++ b/crates/oxc_regular_expression/CHANGELOG.md @@ -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.34.0] - 2024-10-26 + +- 90c786c regular_expression: [**BREAKING**] Support ES2025 Duplicated named capture groups (#6847) (leaysgur) + +### Features + +- 1145341 ast_tools: Output typescript to a separate package (#6755) (ottomated) + +### Refactor + +- 423d54c rust: Remove the annoying `clippy::wildcard_imports` (#6860) (Boshen) + ## [0.33.0] - 2024-10-24 - 8032813 regular_expression: [**BREAKING**] Migrate to new regexp parser API (#6741) (leaysgur) diff --git a/crates/oxc_regular_expression/Cargo.toml b/crates/oxc_regular_expression/Cargo.toml index 7ee49dc2dfa04..370d66248e5e7 100644 --- a/crates/oxc_regular_expression/Cargo.toml +++ b/crates/oxc_regular_expression/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_regular_expression" -version = "0.33.0" +version = "0.34.0" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_semantic/CHANGELOG.md b/crates/oxc_semantic/CHANGELOG.md index f1ff32c651f8b..3219e184ad5f0 100644 --- a/crates/oxc_semantic/CHANGELOG.md +++ b/crates/oxc_semantic/CHANGELOG.md @@ -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.34.0] - 2024-10-26 + +### Refactor + +- 423d54c rust: Remove the annoying `clippy::wildcard_imports` (#6860) (Boshen) + ## [0.33.0] - 2024-10-24 - 1248557 ast: [**BREAKING**] Remove `AstKind::FinallyClause` (#6744) (Boshen) diff --git a/crates/oxc_semantic/Cargo.toml b/crates/oxc_semantic/Cargo.toml index fdac3afc0b256..f5b101d1c3bf8 100644 --- a/crates/oxc_semantic/Cargo.toml +++ b/crates/oxc_semantic/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_semantic" -version = "0.33.0" +version = "0.34.0" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_sourcemap/Cargo.toml b/crates/oxc_sourcemap/Cargo.toml index 7a5828fc9c5aa..3954c5b7ce3b6 100644 --- a/crates/oxc_sourcemap/Cargo.toml +++ b/crates/oxc_sourcemap/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_sourcemap" -version = "0.33.0" +version = "0.34.0" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_span/CHANGELOG.md b/crates/oxc_span/CHANGELOG.md index e329aa9be0d96..0971c44806b7d 100644 --- a/crates/oxc_span/CHANGELOG.md +++ b/crates/oxc_span/CHANGELOG.md @@ -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.34.0] - 2024-10-26 + +### Features + +- 1145341 ast_tools: Output typescript to a separate package (#6755) (ottomated) + +### Refactor + +- 423d54c rust: Remove the annoying `clippy::wildcard_imports` (#6860) (Boshen) + ## [0.33.0] - 2024-10-24 ### Documentation diff --git a/crates/oxc_span/Cargo.toml b/crates/oxc_span/Cargo.toml index c738b86eca1c5..b3e20c1546e6d 100644 --- a/crates/oxc_span/Cargo.toml +++ b/crates/oxc_span/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_span" -version = "0.33.0" +version = "0.34.0" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_syntax/CHANGELOG.md b/crates/oxc_syntax/CHANGELOG.md index 629804860664f..2ee726b64bdff 100644 --- a/crates/oxc_syntax/CHANGELOG.md +++ b/crates/oxc_syntax/CHANGELOG.md @@ -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.34.0] - 2024-10-26 + +### Features + +- 1145341 ast_tools: Output typescript to a separate package (#6755) (ottomated) + +### Refactor + +- 423d54c rust: Remove the annoying `clippy::wildcard_imports` (#6860) (Boshen) + ## [0.33.0] - 2024-10-24 ### Refactor diff --git a/crates/oxc_syntax/Cargo.toml b/crates/oxc_syntax/Cargo.toml index ca17b124f2d7a..5cb80bd70704b 100644 --- a/crates/oxc_syntax/Cargo.toml +++ b/crates/oxc_syntax/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_syntax" -version = "0.33.0" +version = "0.34.0" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_transformer/CHANGELOG.md b/crates/oxc_transformer/CHANGELOG.md index eeffa8b55cc62..f3b688e317aad 100644 --- a/crates/oxc_transformer/CHANGELOG.md +++ b/crates/oxc_transformer/CHANGELOG.md @@ -4,6 +4,32 @@ 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.34.0] - 2024-10-26 + +- 4618aa2 transformer: [**BREAKING**] Rename `TransformerOptions::react` to `jsx` (#6888) (Boshen) + +### Features + +- 0d0bb17 transformer: Complete the async-to-generator plugin (#6658) (Dunqing) + +### Bug Fixes + +- 4dc5e51 transformer: Only run typescript plugin for typescript source (#6889) (Boshen) +- 076f5c3 transformer/typescript: Retain ExportNamedDeclaration without specifiers and declaration (#6848) (Dunqing) + +### Refactor + +- 423d54c rust: Remove the annoying `clippy::wildcard_imports` (#6860) (Boshen) +- 2d95009 transformer: Implement `Debug` on `StatementInjector` internal types (#6886) (overlookmotel) +- c383c34 transformer: Make `StatementInjectorStore` methods generic over `GetAddress` (#6885) (overlookmotel) +- 1f29523 transformer: Rename ReactJsx to Jsx (#6883) (Boshen) +- 333b758 transformer: `StatementInjectorStore` methods take `&Statement` as target (#6858) (overlookmotel) +- c19996c transformer: Add `StatementInjectorStore::insert_many_before` method (#6857) (overlookmotel) +- 7339dde transformer: `StatementInjectorStore::insert_many_after` take an iterator (#6856) (overlookmotel) +- 4348eae transformer/typescript: Re-order visitor methods (#6864) (overlookmotel) +- 3a56d59 transformer/typescript: Insert assignments after super by `StatementInjector` (#6654) (Dunqing) +- 60f487a traverse: `TraverseCtx::generate_binding` take an `Atom` (#6830) (overlookmotel) + ## [0.33.0] - 2024-10-24 - 4d2d214 ast, transformer: [**BREAKING**] Remove `StringLiteral::new` method (#6788) (overlookmotel) diff --git a/crates/oxc_transformer/Cargo.toml b/crates/oxc_transformer/Cargo.toml index 47d0971ca82b6..6c87144acfb3f 100644 --- a/crates/oxc_transformer/Cargo.toml +++ b/crates/oxc_transformer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_transformer" -version = "0.33.0" +version = "0.34.0" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_traverse/CHANGELOG.md b/crates/oxc_traverse/CHANGELOG.md index a921205df9298..0eea5ed940dc5 100644 --- a/crates/oxc_traverse/CHANGELOG.md +++ b/crates/oxc_traverse/CHANGELOG.md @@ -4,6 +4,19 @@ 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.34.0] - 2024-10-26 + +### Features + +- 419343b traverse: Implement `GetAddress` for `Ancestor` (#6877) (overlookmotel) + +### Refactor + +- 423d54c rust: Remove the annoying `clippy::wildcard_imports` (#6860) (Boshen) +- a366fae traverse: Rename `TraverseScoping::generate_binding_in_current_scope` (#6832) (overlookmotel) +- 3b99fe6 traverse: Move `generate_binding` to `TraverseScoping` (#6831) (overlookmotel) +- 60f487a traverse: `TraverseCtx::generate_binding` take an `Atom` (#6830) (overlookmotel) + ## [0.33.0] - 2024-10-24 - aeaa27a ast, parser, transformer, traverse: [**BREAKING**] Remove `BindingIdentifier::new` methods (#6786) (overlookmotel) diff --git a/crates/oxc_traverse/Cargo.toml b/crates/oxc_traverse/Cargo.toml index c5af22b62857a..900d22116b009 100644 --- a/crates/oxc_traverse/Cargo.toml +++ b/crates/oxc_traverse/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_traverse" -version = "0.33.0" +version = "0.34.0" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/napi/transform/Cargo.toml b/napi/transform/Cargo.toml index e55aa0345047e..da33f2e954ba6 100644 --- a/napi/transform/Cargo.toml +++ b/napi/transform/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_transform_napi" -version = "0.33.0" +version = "0.34.0" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/npm/oxc-parser/CHANGELOG.md b/npm/oxc-parser/CHANGELOG.md index 0676f760cbf88..8ac718f8f4711 100644 --- a/npm/oxc-parser/CHANGELOG.md +++ b/npm/oxc-parser/CHANGELOG.md @@ -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.34.0] - 2024-10-26 + +- 67a7bde napi/parser: [**BREAKING**] Add typings to napi/parser (#6796) (ottomated) + +### Features + + +### Bug Fixes + +- b075982 types: Change @oxc/types package name (#6874) (ottomated) + +### Documentation + +- 99e3b32 napi: Remove JSON.parse from example (#6836) (ottomated) + ## [0.33.0] - 2024-10-24 ### Documentation diff --git a/npm/oxc-parser/package.json b/npm/oxc-parser/package.json index bb76fe7a2a938..ca7198b6e4502 100644 --- a/npm/oxc-parser/package.json +++ b/npm/oxc-parser/package.json @@ -1,6 +1,6 @@ { "name": "oxc-parser", - "version": "0.33.0", + "version": "0.34.0", "description": "Oxc Parser Node API", "keywords": [ "Parser" @@ -26,4 +26,4 @@ "devDependencies": { "@oxc-project/types": "workspace:^" } -} +} \ No newline at end of file diff --git a/npm/oxc-transform/package.json b/npm/oxc-transform/package.json index 01e5ef1dc1610..35df36d31c0b1 100644 --- a/npm/oxc-transform/package.json +++ b/npm/oxc-transform/package.json @@ -1,6 +1,6 @@ { "name": "oxc-transform", - "version": "0.33.0", + "version": "0.34.0", "description": "Oxc transform Node API", "keywords": [ "transform" diff --git a/npm/oxc-types/CHANGELOG.md b/npm/oxc-types/CHANGELOG.md new file mode 100644 index 0000000000000..b7d9073fe23cd --- /dev/null +++ b/npm/oxc-types/CHANGELOG.md @@ -0,0 +1,18 @@ +# Changelog + +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.34.0] - 2024-10-26 + +- 67a7bde napi/parser: [**BREAKING**] Add typings to napi/parser (#6796) (ottomated) + +### Features + +- 1145341 ast_tools: Output typescript to a separate package (#6755) (ottomated) + +### Bug Fixes + +- b075982 types: Change @oxc/types package name (#6874) (ottomated) + diff --git a/npm/oxc-types/package.json b/npm/oxc-types/package.json index 490a2dc74a55f..116c0526b2142 100644 --- a/npm/oxc-types/package.json +++ b/npm/oxc-types/package.json @@ -1,6 +1,6 @@ { "name": "@oxc-project/types", - "version": "0.32.0", + "version": "0.34.0", "description": "Types for Oxc AST nodes", "keywords": [ "AST", @@ -22,4 +22,4 @@ "files": [ "src/generated/types.d.ts" ] -} +} \ No newline at end of file diff --git a/wasm/parser/CHANGELOG.md b/wasm/parser/CHANGELOG.md index 9867bdf6c9846..70a40c1f730aa 100644 --- a/wasm/parser/CHANGELOG.md +++ b/wasm/parser/CHANGELOG.md @@ -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.34.0] - 2024-10-26 + +### Features + +- 1145341 ast_tools: Output typescript to a separate package (#6755) (ottomated) + +### Bug Fixes + +- b075982 types: Change @oxc/types package name (#6874) (ottomated) + ## [0.26.0] - 2024-09-03 ### Refactor diff --git a/wasm/parser/package.json b/wasm/parser/package.json index 14190229972a7..5a7755c1bbbb2 100644 --- a/wasm/parser/package.json +++ b/wasm/parser/package.json @@ -1,6 +1,6 @@ { "name": "@oxc-parser/wasm", - "version": "0.33.0", + "version": "0.34.0", "description": "Wasm target for the oxc parser.", "keywords": [ "JavaScript",