diff --git a/Cargo.lock b/Cargo.lock index ab6073a05b374..ca2f4dcbed646 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1505,7 +1505,7 @@ checksum = "fb37767f6569cd834a413442455e0f066d0d522de8630436e2a1761d9726ba56" [[package]] name = "oxc" -version = "0.55.0" +version = "0.56.0" dependencies = [ "oxc_allocator", "oxc_ast", @@ -1568,7 +1568,7 @@ dependencies = [ [[package]] name = "oxc_allocator" -version = "0.55.0" +version = "0.56.0" dependencies = [ "allocator-api2", "bumpalo", @@ -1582,7 +1582,7 @@ dependencies = [ [[package]] name = "oxc_ast" -version = "0.55.0" +version = "0.56.0" dependencies = [ "bitflags 2.8.0", "cow-utils", @@ -1597,7 +1597,7 @@ dependencies = [ [[package]] name = "oxc_ast_macros" -version = "0.55.0" +version = "0.56.0" dependencies = [ "proc-macro2", "quote", @@ -1629,7 +1629,7 @@ dependencies = [ [[package]] name = "oxc_ast_visit" -version = "0.55.0" +version = "0.56.0" dependencies = [ "oxc_allocator", "oxc_ast", @@ -1662,7 +1662,7 @@ dependencies = [ [[package]] name = "oxc_cfg" -version = "0.55.0" +version = "0.56.0" dependencies = [ "bitflags 2.8.0", "itertools", @@ -1675,7 +1675,7 @@ dependencies = [ [[package]] name = "oxc_codegen" -version = "0.55.0" +version = "0.56.0" dependencies = [ "base64", "bitflags 2.8.0", @@ -1738,7 +1738,7 @@ dependencies = [ [[package]] name = "oxc_data_structures" -version = "0.55.0" +version = "0.56.0" dependencies = [ "assert-unchecked", "ropey", @@ -1746,7 +1746,7 @@ dependencies = [ [[package]] name = "oxc_diagnostics" -version = "0.55.0" +version = "0.56.0" dependencies = [ "cow-utils", "oxc-miette", @@ -1754,7 +1754,7 @@ dependencies = [ [[package]] name = "oxc_ecmascript" -version = "0.55.0" +version = "0.56.0" dependencies = [ "cow-utils", "num-bigint", @@ -1766,7 +1766,7 @@ dependencies = [ [[package]] name = "oxc_estree" -version = "0.55.0" +version = "0.56.0" dependencies = [ "itoa", "oxc_data_structures", @@ -1784,7 +1784,7 @@ dependencies = [ [[package]] name = "oxc_isolated_declarations" -version = "0.55.0" +version = "0.56.0" dependencies = [ "bitflags 2.8.0", "insta", @@ -1885,7 +1885,7 @@ dependencies = [ [[package]] name = "oxc_mangler" -version = "0.55.0" +version = "0.56.0" dependencies = [ "fixedbitset", "itertools", @@ -1900,7 +1900,7 @@ dependencies = [ [[package]] name = "oxc_minifier" -version = "0.55.0" +version = "0.56.0" dependencies = [ "cow-utils", "insta", @@ -1957,7 +1957,7 @@ dependencies = [ [[package]] name = "oxc_napi" -version = "0.55.0" +version = "0.56.0" dependencies = [ "napi", "napi-build", @@ -1967,7 +1967,7 @@ dependencies = [ [[package]] name = "oxc_parser" -version = "0.55.0" +version = "0.56.0" dependencies = [ "assert-unchecked", "bitflags 2.8.0", @@ -1990,7 +1990,7 @@ dependencies = [ [[package]] name = "oxc_parser_napi" -version = "0.55.0" +version = "0.56.0" dependencies = [ "napi", "napi-build", @@ -2048,7 +2048,7 @@ dependencies = [ [[package]] name = "oxc_regular_expression" -version = "0.55.0" +version = "0.56.0" dependencies = [ "oxc_allocator", "oxc_ast_macros", @@ -2082,7 +2082,7 @@ dependencies = [ [[package]] name = "oxc_semantic" -version = "0.55.0" +version = "0.56.0" dependencies = [ "assert-unchecked", "insta", @@ -2124,7 +2124,7 @@ dependencies = [ [[package]] name = "oxc_span" -version = "0.55.0" +version = "0.56.0" dependencies = [ "compact_str", "oxc-miette", @@ -2137,7 +2137,7 @@ dependencies = [ [[package]] name = "oxc_syntax" -version = "0.55.0" +version = "0.56.0" dependencies = [ "assert-unchecked", "bitflags 2.8.0", @@ -2197,7 +2197,7 @@ dependencies = [ [[package]] name = "oxc_transform_napi" -version = "0.55.0" +version = "0.56.0" dependencies = [ "napi", "napi-build", @@ -2210,7 +2210,7 @@ dependencies = [ [[package]] name = "oxc_transformer" -version = "0.55.0" +version = "0.56.0" dependencies = [ "base64", "compact_str", @@ -2244,7 +2244,7 @@ dependencies = [ [[package]] name = "oxc_traverse" -version = "0.55.0" +version = "0.56.0" dependencies = [ "compact_str", "itoa", diff --git a/Cargo.toml b/Cargo.toml index 20230d6e11f7e..5714b15708937 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -101,30 +101,30 @@ doc_lazy_continuation = "allow" # FIXME [workspace.dependencies] # publish = true -oxc = { version = "0.55.0", path = "crates/oxc" } -oxc_allocator = { version = "0.55.0", path = "crates/oxc_allocator" } -oxc_ast = { version = "0.55.0", path = "crates/oxc_ast" } -oxc_ast_macros = { version = "0.55.0", path = "crates/oxc_ast_macros" } -oxc_ast_visit = { version = "0.55.0", path = "crates/oxc_ast_visit" } -oxc_cfg = { version = "0.55.0", path = "crates/oxc_cfg" } -oxc_codegen = { version = "0.55.0", path = "crates/oxc_codegen" } -oxc_data_structures = { version = "0.55.0", path = "crates/oxc_data_structures" } -oxc_diagnostics = { version = "0.55.0", path = "crates/oxc_diagnostics" } -oxc_ecmascript = { version = "0.55.0", path = "crates/oxc_ecmascript" } -oxc_estree = { version = "0.55.0", path = "crates/oxc_estree" } -oxc_isolated_declarations = { version = "0.55.0", path = "crates/oxc_isolated_declarations" } -oxc_mangler = { version = "0.55.0", path = "crates/oxc_mangler" } -oxc_minifier = { version = "0.55.0", path = "crates/oxc_minifier" } -oxc_napi = { version = "0.55.0", path = "crates/oxc_napi" } -oxc_parser = { version = "0.55.0", path = "crates/oxc_parser" } -oxc_parser_napi = { version = "0.55.0", path = "napi/parser" } -oxc_regular_expression = { version = "0.55.0", path = "crates/oxc_regular_expression" } -oxc_semantic = { version = "0.55.0", path = "crates/oxc_semantic" } -oxc_span = { version = "0.55.0", path = "crates/oxc_span" } -oxc_syntax = { version = "0.55.0", path = "crates/oxc_syntax" } -oxc_transform_napi = { version = "0.55.0", path = "napi/transform" } -oxc_transformer = { version = "0.55.0", path = "crates/oxc_transformer" } -oxc_traverse = { version = "0.55.0", path = "crates/oxc_traverse" } +oxc = { version = "0.56.0", path = "crates/oxc" } +oxc_allocator = { version = "0.56.0", path = "crates/oxc_allocator" } +oxc_ast = { version = "0.56.0", path = "crates/oxc_ast" } +oxc_ast_macros = { version = "0.56.0", path = "crates/oxc_ast_macros" } +oxc_ast_visit = { version = "0.56.0", path = "crates/oxc_ast_visit" } +oxc_cfg = { version = "0.56.0", path = "crates/oxc_cfg" } +oxc_codegen = { version = "0.56.0", path = "crates/oxc_codegen" } +oxc_data_structures = { version = "0.56.0", path = "crates/oxc_data_structures" } +oxc_diagnostics = { version = "0.56.0", path = "crates/oxc_diagnostics" } +oxc_ecmascript = { version = "0.56.0", path = "crates/oxc_ecmascript" } +oxc_estree = { version = "0.56.0", path = "crates/oxc_estree" } +oxc_isolated_declarations = { version = "0.56.0", path = "crates/oxc_isolated_declarations" } +oxc_mangler = { version = "0.56.0", path = "crates/oxc_mangler" } +oxc_minifier = { version = "0.56.0", path = "crates/oxc_minifier" } +oxc_napi = { version = "0.56.0", path = "crates/oxc_napi" } +oxc_parser = { version = "0.56.0", path = "crates/oxc_parser" } +oxc_parser_napi = { version = "0.56.0", path = "napi/parser" } +oxc_regular_expression = { version = "0.56.0", path = "crates/oxc_regular_expression" } +oxc_semantic = { version = "0.56.0", path = "crates/oxc_semantic" } +oxc_span = { version = "0.56.0", path = "crates/oxc_span" } +oxc_syntax = { version = "0.56.0", path = "crates/oxc_syntax" } +oxc_transform_napi = { version = "0.56.0", path = "napi/transform" } +oxc_transformer = { version = "0.56.0", path = "crates/oxc_transformer" } +oxc_traverse = { version = "0.56.0", path = "crates/oxc_traverse" } # publish = false oxc_linter = { path = "crates/oxc_linter" } diff --git a/crates/oxc/Cargo.toml b/crates/oxc/Cargo.toml index 1a3f5e64efad1..2c795d3a3b5c0 100644 --- a/crates/oxc/Cargo.toml +++ b/crates/oxc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc" -version = "0.55.0" +version = "0.56.0" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_allocator/Cargo.toml b/crates/oxc_allocator/Cargo.toml index f39e9b36a530c..9c8ee3c092c9f 100644 --- a/crates/oxc_allocator/Cargo.toml +++ b/crates/oxc_allocator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_allocator" -version = "0.55.0" +version = "0.56.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 d203773610274..f389bc96443bc 100644 --- a/crates/oxc_ast/CHANGELOG.md +++ b/crates/oxc_ast/CHANGELOG.md @@ -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.56.0] - 2025-03-06 + +- 48a0394 ast: [**BREAKING**] Add `scope_id` to `TSFunctionType` (#9559) (camc314) + +### Features + + +### Bug Fixes + +- bbb4f98 semantic: Insert binding into correct scope for TSInferType (#9567) (camc314) + ## [0.55.0] - 2025-03-05 - 4056560 ast/estree: [**BREAKING**] Option to return JS-only AST (#9520) (overlookmotel) diff --git a/crates/oxc_ast/Cargo.toml b/crates/oxc_ast/Cargo.toml index 2a67cb961d0a6..f7f47ea279a03 100644 --- a/crates/oxc_ast/Cargo.toml +++ b/crates/oxc_ast/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_ast" -version = "0.55.0" +version = "0.56.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 c74a791f8e016..9632b2c97f024 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.55.0" +version = "0.56.0" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_ast_visit/CHANGELOG.md b/crates/oxc_ast_visit/CHANGELOG.md index 06d5a69aa02c9..a4e8480860e96 100644 --- a/crates/oxc_ast_visit/CHANGELOG.md +++ b/crates/oxc_ast_visit/CHANGELOG.md @@ -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.56.0] - 2025-03-06 + +- 48a0394 ast: [**BREAKING**] Add `scope_id` to `TSFunctionType` (#9559) (camc314) + +### Features + + +### Bug Fixes + +- bbb4f98 semantic: Insert binding into correct scope for TSInferType (#9567) (camc314) + ## [0.55.0] - 2025-03-05 ### Features diff --git a/crates/oxc_ast_visit/Cargo.toml b/crates/oxc_ast_visit/Cargo.toml index 332e883a4ade0..42d2c822bbaee 100644 --- a/crates/oxc_ast_visit/Cargo.toml +++ b/crates/oxc_ast_visit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_ast_visit" -version = "0.55.0" +version = "0.56.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 680f763321909..3619d38298e0f 100644 --- a/crates/oxc_cfg/Cargo.toml +++ b/crates/oxc_cfg/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_cfg" -version = "0.55.0" +version = "0.56.0" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_codegen/Cargo.toml b/crates/oxc_codegen/Cargo.toml index 34049d10268de..79e2b7ec556d0 100644 --- a/crates/oxc_codegen/Cargo.toml +++ b/crates/oxc_codegen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_codegen" -version = "0.55.0" +version = "0.56.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 31a3dd1845fb9..269f5449ec75a 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.55.0" +version = "0.56.0" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_diagnostics/CHANGELOG.md b/crates/oxc_diagnostics/CHANGELOG.md index fe733d4ba477f..9474d76a9964b 100644 --- a/crates/oxc_diagnostics/CHANGELOG.md +++ b/crates/oxc_diagnostics/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.56.0] - 2025-03-06 + +### Bug Fixes + +- 4ca62ab linter: Output right file line and column for `.vue`, `.astro` and `.svelte` files (#9484) (Sysix) + ## [0.48.2] - 2025-02-02 ### Testing diff --git a/crates/oxc_diagnostics/Cargo.toml b/crates/oxc_diagnostics/Cargo.toml index 8e5575c29ec48..cd3d2d9a15944 100644 --- a/crates/oxc_diagnostics/Cargo.toml +++ b/crates/oxc_diagnostics/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_diagnostics" -version = "0.55.0" +version = "0.56.0" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_ecmascript/Cargo.toml b/crates/oxc_ecmascript/Cargo.toml index 17de00968c20f..d92ea4fdecc2f 100644 --- a/crates/oxc_ecmascript/Cargo.toml +++ b/crates/oxc_ecmascript/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_ecmascript" -version = "0.55.0" +version = "0.56.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 123fe8901b48d..7669cd60b4c13 100644 --- a/crates/oxc_estree/Cargo.toml +++ b/crates/oxc_estree/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_estree" -version = "0.55.0" +version = "0.56.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 f770ce96de3b6..a2b7ffba3641d 100644 --- a/crates/oxc_isolated_declarations/CHANGELOG.md +++ b/crates/oxc_isolated_declarations/CHANGELOG.md @@ -4,6 +4,13 @@ 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.56.0] - 2025-03-06 + +- 48a0394 ast: [**BREAKING**] Add `scope_id` to `TSFunctionType` (#9559) (camc314) + +### Features + + ## [0.54.0] - 2025-03-04 - a5cde10 visit_ast: [**BREAKING**] Add `oxc_visit_ast` crate (#9428) (Boshen) diff --git a/crates/oxc_isolated_declarations/Cargo.toml b/crates/oxc_isolated_declarations/Cargo.toml index c500819b906cd..f61c21fe52196 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.55.0" +version = "0.56.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 9d2dc74366ea5..1de90451c71b3 100644 --- a/crates/oxc_mangler/Cargo.toml +++ b/crates/oxc_mangler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_mangler" -version = "0.55.0" +version = "0.56.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 9573ada99bbee..a648c743666cd 100644 --- a/crates/oxc_minifier/CHANGELOG.md +++ b/crates/oxc_minifier/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.56.0] - 2025-03-06 + +### Features + +- a92b863 minifier: Keep indirect access more precisely (#9562) (sapphi-red) + +### Bug Fixes + +- 7a220a3 minifier: Keep indirect access for `delete` and `typeof` (#9563) (sapphi-red) + ## [0.55.0] - 2025-03-05 ### Features diff --git a/crates/oxc_minifier/Cargo.toml b/crates/oxc_minifier/Cargo.toml index e9f4dfc32cf20..58d93cc45c2e0 100644 --- a/crates/oxc_minifier/Cargo.toml +++ b/crates/oxc_minifier/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_minifier" -version = "0.55.0" +version = "0.56.0" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_napi/Cargo.toml b/crates/oxc_napi/Cargo.toml index cf91412461817..7dba3f9ce248b 100644 --- a/crates/oxc_napi/Cargo.toml +++ b/crates/oxc_napi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_napi" -version = "0.55.0" +version = "0.56.0" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_parser/Cargo.toml b/crates/oxc_parser/Cargo.toml index ae8c45693577f..a4472f737d53e 100644 --- a/crates/oxc_parser/Cargo.toml +++ b/crates/oxc_parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_parser" -version = "0.55.0" +version = "0.56.0" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_regular_expression/Cargo.toml b/crates/oxc_regular_expression/Cargo.toml index 04cbe096a3356..79d7b4163d277 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.55.0" +version = "0.56.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 ddf08a40089ed..f1f5943c3b28a 100644 --- a/crates/oxc_semantic/CHANGELOG.md +++ b/crates/oxc_semantic/CHANGELOG.md @@ -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.56.0] - 2025-03-06 + +- 48a0394 ast: [**BREAKING**] Add `scope_id` to `TSFunctionType` (#9559) (camc314) + +### Features + + +### Bug Fixes + +- bbb4f98 semantic: Insert binding into correct scope for TSInferType (#9567) (camc314) + ## [0.55.0] - 2025-03-05 ### Features diff --git a/crates/oxc_semantic/Cargo.toml b/crates/oxc_semantic/Cargo.toml index 25cc460e48adf..53b0ab6fac703 100644 --- a/crates/oxc_semantic/Cargo.toml +++ b/crates/oxc_semantic/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_semantic" -version = "0.55.0" +version = "0.56.0" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_span/Cargo.toml b/crates/oxc_span/Cargo.toml index fe9b17dfd9554..5668acab047ad 100644 --- a/crates/oxc_span/Cargo.toml +++ b/crates/oxc_span/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_span" -version = "0.55.0" +version = "0.56.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 4501118ea53db..df09d70caf66f 100644 --- a/crates/oxc_syntax/CHANGELOG.md +++ b/crates/oxc_syntax/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.56.0] - 2025-03-06 + +### Bug Fixes + +- bbb4f98 semantic: Insert binding into correct scope for TSInferType (#9567) (camc314) + ## [0.55.0] - 2025-03-05 ### Features diff --git a/crates/oxc_syntax/Cargo.toml b/crates/oxc_syntax/Cargo.toml index 81d8605e4c5e8..613b11bd899fe 100644 --- a/crates/oxc_syntax/Cargo.toml +++ b/crates/oxc_syntax/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_syntax" -version = "0.55.0" +version = "0.56.0" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_transformer/Cargo.toml b/crates/oxc_transformer/Cargo.toml index 4f1bb0ab6449d..be279ea9cb12b 100644 --- a/crates/oxc_transformer/Cargo.toml +++ b/crates/oxc_transformer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_transformer" -version = "0.55.0" +version = "0.56.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 61f08caedf775..aff16035ebd53 100644 --- a/crates/oxc_traverse/CHANGELOG.md +++ b/crates/oxc_traverse/CHANGELOG.md @@ -4,6 +4,13 @@ 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.56.0] - 2025-03-06 + +- 48a0394 ast: [**BREAKING**] Add `scope_id` to `TSFunctionType` (#9559) (camc314) + +### Features + + ## [0.54.0] - 2025-03-04 - a8d1d48 parser,codegen: [**BREAKING**] Parse and print`#__NO_SIDE_EFFECTS__` (#9496) (Boshen) diff --git a/crates/oxc_traverse/Cargo.toml b/crates/oxc_traverse/Cargo.toml index bc0b94c15cf26..59485a6421072 100644 --- a/crates/oxc_traverse/Cargo.toml +++ b/crates/oxc_traverse/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_traverse" -version = "0.55.0" +version = "0.56.0" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/napi/parser/CHANGELOG.md b/napi/parser/CHANGELOG.md index 4e12f67119cac..174728e38ebd3 100644 --- a/napi/parser/CHANGELOG.md +++ b/napi/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.56.0] - 2025-03-06 + +### Bug Fixes + +- 91c9932 napi: Do not support raw transfer on WASM32 (#9566) (overlookmotel) + ## [0.55.0] - 2025-03-05 - 4056560 ast/estree: [**BREAKING**] Option to return JS-only AST (#9520) (overlookmotel) diff --git a/napi/parser/Cargo.toml b/napi/parser/Cargo.toml index 76317261f044b..9fa85c8a1bca5 100644 --- a/napi/parser/Cargo.toml +++ b/napi/parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_parser_napi" -version = "0.55.0" +version = "0.56.0" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/napi/transform/Cargo.toml b/napi/transform/Cargo.toml index 87f460054594f..5c1c562b4e97b 100644 --- a/napi/transform/Cargo.toml +++ b/napi/transform/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_transform_napi" -version = "0.55.0" +version = "0.56.0" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/npm/oxc-minify/package.json b/npm/oxc-minify/package.json index 30b2a748f5bd6..170c4b9f4b75f 100644 --- a/npm/oxc-minify/package.json +++ b/npm/oxc-minify/package.json @@ -1,6 +1,6 @@ { "name": "oxc-minify", - "version": "0.55.0", + "version": "0.56.0", "description": "Oxc minify Node API", "keywords": [ "minify" diff --git a/npm/oxc-parser/CHANGELOG.md b/npm/oxc-parser/CHANGELOG.md index cfaa40b36f921..6c6e0a5959d72 100644 --- a/npm/oxc-parser/CHANGELOG.md +++ b/npm/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.56.0] - 2025-03-06 + +### Bug Fixes + +- 4b61372 npm/oxc-parser: Add `deserialize-*.js` (Boshen) + ## [0.55.0] - 2025-03-05 - 4056560 ast/estree: [**BREAKING**] Option to return JS-only AST (#9520) (overlookmotel) diff --git a/npm/oxc-parser/package.json b/npm/oxc-parser/package.json index 36b6e5a12e459..8f5bbb73c5ebb 100644 --- a/npm/oxc-parser/package.json +++ b/npm/oxc-parser/package.json @@ -1,6 +1,6 @@ { "name": "oxc-parser", - "version": "0.55.0", + "version": "0.56.0", "description": "Oxc Parser Node API", "keywords": [ "Parser" diff --git a/npm/oxc-transform/package.json b/npm/oxc-transform/package.json index 6e9cb135bd1ef..dae72dd6bfefc 100644 --- a/npm/oxc-transform/package.json +++ b/npm/oxc-transform/package.json @@ -1,6 +1,6 @@ { "name": "oxc-transform", - "version": "0.55.0", + "version": "0.56.0", "description": "Oxc transform Node API", "keywords": [ "transform" diff --git a/npm/oxc-types/package.json b/npm/oxc-types/package.json index 38cb3ff0f9a7e..c6dddaf5e96ad 100644 --- a/npm/oxc-types/package.json +++ b/npm/oxc-types/package.json @@ -1,6 +1,6 @@ { "name": "@oxc-project/types", - "version": "0.55.0", + "version": "0.56.0", "description": "Types for Oxc AST nodes", "keywords": [ "AST", diff --git a/npm/runtime/package.json b/npm/runtime/package.json index 49492f3ad60ad..114ed08de08e1 100644 --- a/npm/runtime/package.json +++ b/npm/runtime/package.json @@ -1,6 +1,6 @@ { "name": "@oxc-project/runtime", - "version": "0.55.0", + "version": "0.56.0", "description": "Oxc's modular runtime helpers", "license": "MIT", "repository": { diff --git a/wasm/parser/package.json b/wasm/parser/package.json index 5483c71a4d0a3..190ff2a16d1cd 100644 --- a/wasm/parser/package.json +++ b/wasm/parser/package.json @@ -1,6 +1,6 @@ { "name": "@oxc-parser/wasm", - "version": "0.55.0", + "version": "0.56.0", "description": "Wasm target for the oxc parser.", "keywords": [ "JavaScript",