From e46dd5a208d228a1707dec67ec5ac6bce00df1a1 Mon Sep 17 00:00:00 2001 From: SWC Bot Date: Tue, 12 Mar 2024 06:00:28 +0000 Subject: [PATCH] chore: Bump crates --- CHANGELOG.md | 6 +++--- Cargo.lock | 8 ++++---- crates/swc/Cargo.toml | 4 ++-- crates/swc_bundler/Cargo.toml | 2 +- crates/swc_core/Cargo.toml | 4 ++-- crates/swc_ecma_compat_bugfixes/Cargo.toml | 2 +- crates/swc_ecma_compat_common/Cargo.toml | 4 ++-- crates/swc_ecma_compat_es2015/Cargo.toml | 4 ++-- crates/swc_ecma_compat_es2016/Cargo.toml | 2 +- crates/swc_ecma_compat_es2017/Cargo.toml | 2 +- crates/swc_ecma_compat_es2018/Cargo.toml | 4 ++-- crates/swc_ecma_compat_es2019/Cargo.toml | 2 +- crates/swc_ecma_compat_es2020/Cargo.toml | 2 +- crates/swc_ecma_compat_es2021/Cargo.toml | 2 +- crates/swc_ecma_compat_es2022/Cargo.toml | 4 ++-- crates/swc_ecma_compat_es3/Cargo.toml | 2 +- crates/swc_ecma_ext_transforms/Cargo.toml | 4 ++-- crates/swc_ecma_lints/Cargo.toml | 2 +- crates/swc_ecma_minifier/Cargo.toml | 4 ++-- crates/swc_ecma_preset_env/Cargo.toml | 2 +- crates/swc_ecma_transforms/Cargo.toml | 2 +- crates/swc_ecma_transforms_base/Cargo.toml | 2 +- crates/swc_ecma_transforms_classes/Cargo.toml | 2 +- crates/swc_ecma_transforms_compat/Cargo.toml | 4 ++-- crates/swc_ecma_transforms_module/Cargo.toml | 2 +- crates/swc_ecma_transforms_optimization/Cargo.toml | 2 +- crates/swc_ecma_transforms_proposal/Cargo.toml | 2 +- crates/swc_ecma_transforms_react/Cargo.toml | 2 +- crates/swc_ecma_transforms_testing/Cargo.toml | 2 +- crates/swc_ecma_transforms_typescript/Cargo.toml | 2 +- crates/swc_ecma_usage_analyzer/Cargo.toml | 4 ++-- crates/swc_ecma_utils/Cargo.toml | 2 +- crates/swc_ecmascript/Cargo.toml | 2 +- crates/swc_estree_compat/Cargo.toml | 2 +- crates/swc_node_bundler/Cargo.toml | 2 +- 35 files changed, 50 insertions(+), 50 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bcad69ae1e2d..e32a9c995091 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,9 @@ - **(es/minifier)** Handle cyclic references while dropping unused properties ([#8725](https://github.com/swc-project/swc/issues/8725)) ([102241b](https://github.com/swc-project/swc/commit/102241b812b8e815b59575178193bb71b4264bab)) + +- **(es/minifier)** Fix evaluation of array literals with `void 0` ([#8733](https://github.com/swc-project/swc/issues/8733)) ([aa0154d](https://github.com/swc-project/swc/commit/aa0154d2d86b0bed7ffed3324c7a650ffe111c93)) + ### Features @@ -1416,9 +1419,6 @@ - **(common)** Make `ahash` optional ([#7816](https://github.com/swc-project/swc/issues/7816)) ([981d7b1](https://github.com/swc-project/swc/commit/981d7b152b2f488a67d42052152db22225f1d094)) -- **(es/parser)** Remove needless `unsafe` ([#7818](https://github.com/swc-project/swc/issues/7818)) ([8b809db](https://github.com/swc-project/swc/commit/8b809dbe23cab3db2159979cf1852a69c109f1e0)) - - - Use `ahash` from `swc_common` in more places ([#7815](https://github.com/swc-project/swc/issues/7815)) ([b43e38d](https://github.com/swc-project/swc/commit/b43e38d3f92bc889e263b741dbe173a6f2206d88)) diff --git a/Cargo.lock b/Cargo.lock index 2c643c0797c9..f01d4310b134 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4204,7 +4204,7 @@ dependencies = [ [[package]] name = "swc_ecma_compat_common" -version = "0.4.10" +version = "0.4.11" dependencies = [ "swc_common", "swc_ecma_ast", @@ -4375,7 +4375,7 @@ dependencies = [ [[package]] name = "swc_ecma_ext_transforms" -version = "0.113.10" +version = "0.113.11" dependencies = [ "phf", "swc_atoms", @@ -4833,7 +4833,7 @@ dependencies = [ [[package]] name = "swc_ecma_usage_analyzer" -version = "0.23.10" +version = "0.23.11" dependencies = [ "indexmap 2.1.0", "rustc-hash", @@ -4848,7 +4848,7 @@ dependencies = [ [[package]] name = "swc_ecma_utils" -version = "0.127.10" +version = "0.127.11" dependencies = [ "indexmap 2.1.0", "num_cpus", diff --git a/crates/swc/Cargo.toml b/crates/swc/Cargo.toml index 56a05d557cde..7338fb06092e 100644 --- a/crates/swc/Cargo.toml +++ b/crates/swc/Cargo.toml @@ -78,7 +78,7 @@ swc_compiler_base = { version = "0.7.15", path = "../swc_compiler_base" } swc_config = { version = "0.1.11", path = "../swc_config" } swc_ecma_ast = { version = "0.112.5", path = "../swc_ecma_ast" } swc_ecma_codegen = { version = "0.148.10", path = "../swc_ecma_codegen" } -swc_ecma_ext_transforms = { version = "0.113.10", path = "../swc_ecma_ext_transforms" } +swc_ecma_ext_transforms = { version = "0.113.11", path = "../swc_ecma_ext_transforms" } swc_ecma_lints = { version = "0.92.16", path = "../swc_ecma_lints" } swc_ecma_loader = { version = "0.45.21", path = "../swc_ecma_loader", features = [ "cache", @@ -99,7 +99,7 @@ swc_ecma_transforms = { version = "0.229.14", path = "../swc_ecma_transforms", f swc_ecma_transforms_base = { version = "0.137.14", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_compat = { version = "0.163.14", path = "../swc_ecma_transforms_compat" } swc_ecma_transforms_optimization = { version = "0.198.14", path = "../swc_ecma_transforms_optimization" } -swc_ecma_utils = { version = "0.127.10", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" } swc_error_reporters = { version = "0.17.18", path = "../swc_error_reporters" } swc_node_comments = { version = "0.20.18", path = "../swc_node_comments" } diff --git a/crates/swc_bundler/Cargo.toml b/crates/swc_bundler/Cargo.toml index 565d7e3487ba..d8d2c83f5fbd 100644 --- a/crates/swc_bundler/Cargo.toml +++ b/crates/swc_bundler/Cargo.toml @@ -45,7 +45,7 @@ swc_ecma_loader = { version = "0.45.21", path = "../swc_ecma_lo swc_ecma_parser = { version = "0.143.8", path = "../swc_ecma_parser" } swc_ecma_transforms_base = { version = "0.137.14", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_optimization = { version = "0.198.14", path = "../swc_ecma_transforms_optimization" } -swc_ecma_utils = { version = "0.127.10", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" } swc_fast_graph = { version = "0.21.19", path = "../swc_fast_graph/" } swc_graph_analyzer = { version = "0.22.21", path = "../swc_graph_analyzer/" } diff --git a/crates/swc_core/Cargo.toml b/crates/swc_core/Cargo.toml index e90346e9341b..719913600cfe 100644 --- a/crates/swc_core/Cargo.toml +++ b/crates/swc_core/Cargo.toml @@ -358,8 +358,8 @@ swc_ecma_transforms_proposal = { optional = true, version = "0.171.14", path swc_ecma_transforms_react = { optional = true, version = "0.183.14", path = "../swc_ecma_transforms_react" } swc_ecma_transforms_testing = { optional = true, version = "0.140.14", path = "../swc_ecma_transforms_testing" } swc_ecma_transforms_typescript = { optional = true, version = "0.188.14", path = "../swc_ecma_transforms_typescript" } -swc_ecma_usage_analyzer = { optional = true, version = "0.23.10", path = "../swc_ecma_usage_analyzer" } -swc_ecma_utils = { optional = true, version = "0.127.10", path = "../swc_ecma_utils" } +swc_ecma_usage_analyzer = { optional = true, version = "0.23.11", path = "../swc_ecma_usage_analyzer" } +swc_ecma_utils = { optional = true, version = "0.127.11", path = "../swc_ecma_utils" } swc_ecma_visit = { optional = true, version = "0.98.6", path = "../swc_ecma_visit" } swc_malloc = { optional = true, version = "0.5.10", path = "../swc_malloc" } swc_node_bundler = { optional = true, version = "0.62.18", path = "../swc_node_bundler" } diff --git a/crates/swc_ecma_compat_bugfixes/Cargo.toml b/crates/swc_ecma_compat_bugfixes/Cargo.toml index eae2c52f875c..ba9587027ea1 100644 --- a/crates/swc_ecma_compat_bugfixes/Cargo.toml +++ b/crates/swc_ecma_compat_bugfixes/Cargo.toml @@ -16,7 +16,7 @@ swc_common = { version = "0.33.19", path = "../swc_common" } swc_ecma_ast = { version = "0.112.5", path = "../swc_ecma_ast" } swc_ecma_compat_es2015 = { version = "0.4.14", path = "../swc_ecma_compat_es2015" } swc_ecma_transforms_base = { version = "0.137.14", path = "../swc_ecma_transforms_base" } -swc_ecma_utils = { version = "0.127.10", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" } swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" } tracing = "0.1.37" diff --git a/crates/swc_ecma_compat_common/Cargo.toml b/crates/swc_ecma_compat_common/Cargo.toml index 8dfd4888d647..e2ba7d0fde05 100644 --- a/crates/swc_ecma_compat_common/Cargo.toml +++ b/crates/swc_ecma_compat_common/Cargo.toml @@ -7,13 +7,13 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_ecma_compat_common" repository = "https://github.com/swc-project/swc.git" -version = "0.4.10" +version = "0.4.11" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] swc_common = { version = "0.33.19", path = "../swc_common" } swc_ecma_ast = { version = "0.112.5", path = "../swc_ecma_ast" } -swc_ecma_utils = { version = "0.127.10", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" } swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" } diff --git a/crates/swc_ecma_compat_es2015/Cargo.toml b/crates/swc_ecma_compat_es2015/Cargo.toml index e356d9e84cb1..3b8c945e6b87 100644 --- a/crates/swc_ecma_compat_es2015/Cargo.toml +++ b/crates/swc_ecma_compat_es2015/Cargo.toml @@ -25,11 +25,11 @@ swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.19", path = "../swc_common" } swc_config = { version = "0.1.11", path = "../swc_config" } swc_ecma_ast = { version = "0.112.5", path = "../swc_ecma_ast" } -swc_ecma_compat_common = { version = "0.4.10", path = "../swc_ecma_compat_common" } +swc_ecma_compat_common = { version = "0.4.11", path = "../swc_ecma_compat_common" } swc_ecma_transforms_base = { version = "0.137.14", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_classes = { version = "0.126.14", path = "../swc_ecma_transforms_classes" } swc_ecma_transforms_macros = { version = "0.5.4", path = "../swc_ecma_transforms_macros" } -swc_ecma_utils = { version = "0.127.10", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" } swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" } tracing = "0.1.37" diff --git a/crates/swc_ecma_compat_es2016/Cargo.toml b/crates/swc_ecma_compat_es2016/Cargo.toml index d650d09f30b9..db82a1b9c2a6 100644 --- a/crates/swc_ecma_compat_es2016/Cargo.toml +++ b/crates/swc_ecma_compat_es2016/Cargo.toml @@ -18,7 +18,7 @@ swc_common = { version = "0.33.19", path = "../swc_common" } swc_ecma_ast = { version = "0.112.5", path = "../swc_ecma_ast" } swc_ecma_transforms_base = { version = "0.137.14", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_macros = { version = "0.5.4", path = "../swc_ecma_transforms_macros" } -swc_ecma_utils = { version = "0.127.10", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" } swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" } tracing = "0.1.37" diff --git a/crates/swc_ecma_compat_es2017/Cargo.toml b/crates/swc_ecma_compat_es2017/Cargo.toml index f6185c1fce5a..fcc089b14cec 100644 --- a/crates/swc_ecma_compat_es2017/Cargo.toml +++ b/crates/swc_ecma_compat_es2017/Cargo.toml @@ -21,7 +21,7 @@ swc_common = { version = "0.33.19", path = "../swc_common" } swc_ecma_ast = { version = "0.112.5", path = "../swc_ecma_ast" } swc_ecma_transforms_base = { version = "0.137.14", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_macros = { version = "0.5.4", path = "../swc_ecma_transforms_macros" } -swc_ecma_utils = { version = "0.127.10", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" } swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" } diff --git a/crates/swc_ecma_compat_es2018/Cargo.toml b/crates/swc_ecma_compat_es2018/Cargo.toml index 083c557666fd..129ba7cfce7c 100644 --- a/crates/swc_ecma_compat_es2018/Cargo.toml +++ b/crates/swc_ecma_compat_es2018/Cargo.toml @@ -19,10 +19,10 @@ tracing = "0.1.37" swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.19", path = "../swc_common" } swc_ecma_ast = { version = "0.112.5", path = "../swc_ecma_ast" } -swc_ecma_compat_common = { version = "0.4.10", path = "../swc_ecma_compat_common" } +swc_ecma_compat_common = { version = "0.4.11", path = "../swc_ecma_compat_common" } swc_ecma_transforms_base = { version = "0.137.14", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_macros = { version = "0.5.4", path = "../swc_ecma_transforms_macros" } -swc_ecma_utils = { version = "0.127.10", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" } swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" } diff --git a/crates/swc_ecma_compat_es2019/Cargo.toml b/crates/swc_ecma_compat_es2019/Cargo.toml index 2b0f36a47b00..343ee5275616 100644 --- a/crates/swc_ecma_compat_es2019/Cargo.toml +++ b/crates/swc_ecma_compat_es2019/Cargo.toml @@ -20,7 +20,7 @@ swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.19", path = "../swc_common" } swc_ecma_ast = { version = "0.112.5", path = "../swc_ecma_ast" } swc_ecma_transforms_base = { version = "0.137.14", path = "../swc_ecma_transforms_base" } -swc_ecma_utils = { version = "0.127.10", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" } swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" } diff --git a/crates/swc_ecma_compat_es2020/Cargo.toml b/crates/swc_ecma_compat_es2020/Cargo.toml index c1b8b1aa5683..a5f9f3e85870 100644 --- a/crates/swc_ecma_compat_es2020/Cargo.toml +++ b/crates/swc_ecma_compat_es2020/Cargo.toml @@ -19,7 +19,7 @@ swc_common = { version = "0.33.19", path = "../swc_common" } swc_ecma_ast = { version = "0.112.5", path = "../swc_ecma_ast" } swc_ecma_compat_es2022 = { version = "0.4.14", path = "../swc_ecma_compat_es2022" } swc_ecma_transforms_base = { version = "0.137.14", path = "../swc_ecma_transforms_base" } -swc_ecma_utils = { version = "0.127.10", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" } swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" } tracing = "0.1.37" diff --git a/crates/swc_ecma_compat_es2021/Cargo.toml b/crates/swc_ecma_compat_es2021/Cargo.toml index 01e89167c872..7a8cb6ea8eb9 100644 --- a/crates/swc_ecma_compat_es2021/Cargo.toml +++ b/crates/swc_ecma_compat_es2021/Cargo.toml @@ -19,6 +19,6 @@ swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.19", path = "../swc_common" } swc_ecma_ast = { version = "0.112.5", path = "../swc_ecma_ast" } swc_ecma_transforms_base = { version = "0.137.14", path = "../swc_ecma_transforms_base" } -swc_ecma_utils = { version = "0.127.10", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" } swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" } diff --git a/crates/swc_ecma_compat_es2022/Cargo.toml b/crates/swc_ecma_compat_es2022/Cargo.toml index efc7c734808f..f2a782d19434 100644 --- a/crates/swc_ecma_compat_es2022/Cargo.toml +++ b/crates/swc_ecma_compat_es2022/Cargo.toml @@ -19,10 +19,10 @@ tracing = "0.1.37" swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.19", path = "../swc_common" } swc_ecma_ast = { version = "0.112.5", path = "../swc_ecma_ast" } -swc_ecma_compat_common = { version = "0.4.10", path = "../swc_ecma_compat_common" } +swc_ecma_compat_common = { version = "0.4.11", path = "../swc_ecma_compat_common" } swc_ecma_transforms_base = { version = "0.137.14", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_classes = { version = "0.126.14", path = "../swc_ecma_transforms_classes" } swc_ecma_transforms_macros = { version = "0.5.4", path = "../swc_ecma_transforms_macros" } -swc_ecma_utils = { version = "0.127.10", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" } swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" } diff --git a/crates/swc_ecma_compat_es3/Cargo.toml b/crates/swc_ecma_compat_es3/Cargo.toml index d2bc29a59ee5..ae5d4c419f91 100644 --- a/crates/swc_ecma_compat_es3/Cargo.toml +++ b/crates/swc_ecma_compat_es3/Cargo.toml @@ -18,7 +18,7 @@ tracing = "0.1.37" swc_common = { version = "0.33.19", path = "../swc_common" } swc_ecma_ast = { version = "0.112.5", path = "../swc_ecma_ast" } swc_ecma_transforms_base = { version = "0.137.14", path = "../swc_ecma_transforms_base" } -swc_ecma_utils = { version = "0.127.10", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" } swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" } diff --git a/crates/swc_ecma_ext_transforms/Cargo.toml b/crates/swc_ecma_ext_transforms/Cargo.toml index 66140284f06b..882fabc6fd0a 100644 --- a/crates/swc_ecma_ext_transforms/Cargo.toml +++ b/crates/swc_ecma_ext_transforms/Cargo.toml @@ -5,7 +5,7 @@ documentation = "https://rustdoc.swc.rs/swc_ecma_ext_transforms/" edition = "2021" license = "Apache-2.0" name = "swc_ecma_ext_transforms" -version = "0.113.10" +version = "0.113.11" [lib] bench = false @@ -16,5 +16,5 @@ phf = { version = "0.11", features = ["macros"] } swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.19", path = "../swc_common" } swc_ecma_ast = { version = "0.112.5", path = "../swc_ecma_ast" } -swc_ecma_utils = { version = "0.127.10", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" } diff --git a/crates/swc_ecma_lints/Cargo.toml b/crates/swc_ecma_lints/Cargo.toml index fa342a5c6da3..240197516d27 100644 --- a/crates/swc_ecma_lints/Cargo.toml +++ b/crates/swc_ecma_lints/Cargo.toml @@ -28,7 +28,7 @@ swc_config = { version = "0.1.11", path = "../swc_config" } swc_ecma_ast = { version = "0.112.5", path = "../swc_ecma_ast", features = [ "serde", ] } -swc_ecma_utils = { version = "0.127.10", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" } [dev-dependencies] diff --git a/crates/swc_ecma_minifier/Cargo.toml b/crates/swc_ecma_minifier/Cargo.toml index 0d437dddeb34..0fffc8dbe71a 100644 --- a/crates/swc_ecma_minifier/Cargo.toml +++ b/crates/swc_ecma_minifier/Cargo.toml @@ -62,8 +62,8 @@ swc_ecma_codegen = { version = "0.148.10", path = "../swc_ecma_codegen" } swc_ecma_parser = { version = "0.143.8", path = "../swc_ecma_parser" } swc_ecma_transforms_base = { version = "0.137.14", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_optimization = { version = "0.198.14", path = "../swc_ecma_transforms_optimization" } -swc_ecma_usage_analyzer = { version = "0.23.10", path = "../swc_ecma_usage_analyzer" } -swc_ecma_utils = { version = "0.127.10", path = "../swc_ecma_utils" } +swc_ecma_usage_analyzer = { version = "0.23.11", path = "../swc_ecma_usage_analyzer" } +swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" } swc_timer = { version = "0.21.20", path = "../swc_timer" } diff --git a/crates/swc_ecma_preset_env/Cargo.toml b/crates/swc_ecma_preset_env/Cargo.toml index 6ecc90b081bc..6eaf08d07177 100644 --- a/crates/swc_ecma_preset_env/Cargo.toml +++ b/crates/swc_ecma_preset_env/Cargo.toml @@ -36,7 +36,7 @@ swc_ecma_transforms = { version = "0.229.14", path = "../swc_ecma_transforms", f "compat", "proposal", ] } -swc_ecma_utils = { version = "0.127.10", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" } [dev-dependencies] diff --git a/crates/swc_ecma_transforms/Cargo.toml b/crates/swc_ecma_transforms/Cargo.toml index 432a2a80e391..18a629123c89 100644 --- a/crates/swc_ecma_transforms/Cargo.toml +++ b/crates/swc_ecma_transforms/Cargo.toml @@ -41,7 +41,7 @@ swc_ecma_transforms_optimization = { version = "0.198.14", path = "../swc_ecma_t swc_ecma_transforms_proposal = { version = "0.171.14", path = "../swc_ecma_transforms_proposal", optional = true } swc_ecma_transforms_react = { version = "0.183.14", path = "../swc_ecma_transforms_react", optional = true } swc_ecma_transforms_typescript = { version = "0.188.14", path = "../swc_ecma_transforms_typescript", optional = true } -swc_ecma_utils = { version = "0.127.10", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" } [dev-dependencies] diff --git a/crates/swc_ecma_transforms_base/Cargo.toml b/crates/swc_ecma_transforms_base/Cargo.toml index 664757743126..4aacb57f1b24 100644 --- a/crates/swc_ecma_transforms_base/Cargo.toml +++ b/crates/swc_ecma_transforms_base/Cargo.toml @@ -32,7 +32,7 @@ swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.19", path = "../swc_common" } swc_ecma_ast = { version = "0.112.5", path = "../swc_ecma_ast" } swc_ecma_parser = { version = "0.143.8", path = "../swc_ecma_parser" } -swc_ecma_utils = { version = "0.127.10", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" } [dev-dependencies] diff --git a/crates/swc_ecma_transforms_classes/Cargo.toml b/crates/swc_ecma_transforms_classes/Cargo.toml index 4e69ad885b36..2ca9b3b3f0ca 100644 --- a/crates/swc_ecma_transforms_classes/Cargo.toml +++ b/crates/swc_ecma_transforms_classes/Cargo.toml @@ -16,5 +16,5 @@ swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.19", path = "../swc_common" } swc_ecma_ast = { version = "0.112.5", path = "../swc_ecma_ast" } swc_ecma_transforms_base = { version = "0.137.14", path = "../swc_ecma_transforms_base" } -swc_ecma_utils = { version = "0.127.10", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" } diff --git a/crates/swc_ecma_transforms_compat/Cargo.toml b/crates/swc_ecma_transforms_compat/Cargo.toml index 7500757c946e..fbacdc81f0dc 100644 --- a/crates/swc_ecma_transforms_compat/Cargo.toml +++ b/crates/swc_ecma_transforms_compat/Cargo.toml @@ -34,7 +34,7 @@ swc_common = { version = "0.33.19", path = "../swc_common" } swc_config = { version = "0.1.11", path = "../swc_config" } swc_ecma_ast = { version = "0.112.5", path = "../swc_ecma_ast" } swc_ecma_compat_bugfixes = { version = "0.4.14", path = "../swc_ecma_compat_bugfixes" } -swc_ecma_compat_common = { version = "0.4.10", path = "../swc_ecma_compat_common" } +swc_ecma_compat_common = { version = "0.4.11", path = "../swc_ecma_compat_common" } swc_ecma_compat_es2015 = { version = "0.4.14", path = "../swc_ecma_compat_es2015" } swc_ecma_compat_es2016 = { version = "0.4.14", path = "../swc_ecma_compat_es2016" } swc_ecma_compat_es2017 = { version = "0.4.14", path = "../swc_ecma_compat_es2017" } @@ -47,7 +47,7 @@ swc_ecma_compat_es3 = { version = "0.4.14", path = "../swc_ecma_compat_e swc_ecma_transforms_base = { version = "0.137.14", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_classes = { version = "0.126.14", path = "../swc_ecma_transforms_classes" } swc_ecma_transforms_macros = { version = "0.5.4", path = "../swc_ecma_transforms_macros" } -swc_ecma_utils = { version = "0.127.10", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" } swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" } diff --git a/crates/swc_ecma_transforms_module/Cargo.toml b/crates/swc_ecma_transforms_module/Cargo.toml index 579ca88bc1ca..baab17513cfc 100644 --- a/crates/swc_ecma_transforms_module/Cargo.toml +++ b/crates/swc_ecma_transforms_module/Cargo.toml @@ -33,7 +33,7 @@ swc_ecma_loader = { version = "0.45.21", path = "../swc_ecma_loader", features = ] } swc_ecma_parser = { version = "0.143.8", path = "../swc_ecma_parser" } swc_ecma_transforms_base = { version = "0.137.14", path = "../swc_ecma_transforms_base" } -swc_ecma_utils = { version = "0.127.10", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" } [dev-dependencies] diff --git a/crates/swc_ecma_transforms_optimization/Cargo.toml b/crates/swc_ecma_transforms_optimization/Cargo.toml index ee812592b438..ecdc133ba570 100644 --- a/crates/swc_ecma_transforms_optimization/Cargo.toml +++ b/crates/swc_ecma_transforms_optimization/Cargo.toml @@ -37,7 +37,7 @@ swc_ecma_ast = { version = "0.112.5", path = "../swc_ecma_ast" } swc_ecma_parser = { version = "0.143.8", path = "../swc_ecma_parser" } swc_ecma_transforms_base = { version = "0.137.14", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_macros = { version = "0.5.4", path = "../swc_ecma_transforms_macros" } -swc_ecma_utils = { version = "0.127.10", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" } swc_fast_graph = { version = "0.21.19", path = "../swc_fast_graph" } diff --git a/crates/swc_ecma_transforms_proposal/Cargo.toml b/crates/swc_ecma_transforms_proposal/Cargo.toml index b70e1d5b748a..85c3e2c5b137 100644 --- a/crates/swc_ecma_transforms_proposal/Cargo.toml +++ b/crates/swc_ecma_transforms_proposal/Cargo.toml @@ -29,7 +29,7 @@ swc_ecma_loader = { version = "0.45.21", path = "../swc_ecma_loader" swc_ecma_transforms_base = { version = "0.137.14", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_classes = { version = "0.126.14", path = "../swc_ecma_transforms_classes" } swc_ecma_transforms_macros = { version = "0.5.4", path = "../swc_ecma_transforms_macros" } -swc_ecma_utils = { version = "0.127.10", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" } [dev-dependencies] diff --git a/crates/swc_ecma_transforms_react/Cargo.toml b/crates/swc_ecma_transforms_react/Cargo.toml index de5b2870fe30..70489a861710 100644 --- a/crates/swc_ecma_transforms_react/Cargo.toml +++ b/crates/swc_ecma_transforms_react/Cargo.toml @@ -34,7 +34,7 @@ swc_ecma_ast = { version = "0.112.5", path = "../swc_ecma_ast" } swc_ecma_parser = { version = "0.143.8", path = "../swc_ecma_parser" } swc_ecma_transforms_base = { version = "0.137.14", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_macros = { version = "0.5.4", path = "../swc_ecma_transforms_macros" } -swc_ecma_utils = { version = "0.127.10", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" } [dev-dependencies] diff --git a/crates/swc_ecma_transforms_testing/Cargo.toml b/crates/swc_ecma_transforms_testing/Cargo.toml index 654a450df638..95b1d8036129 100644 --- a/crates/swc_ecma_transforms_testing/Cargo.toml +++ b/crates/swc_ecma_transforms_testing/Cargo.toml @@ -30,6 +30,6 @@ swc_ecma_codegen = { version = "0.148.10", path = "../swc_ecma_codegen" } swc_ecma_parser = { version = "0.143.8", path = "../swc_ecma_parser" } swc_ecma_testing = { version = "0.22.21", path = "../swc_ecma_testing" } swc_ecma_transforms_base = { version = "0.137.14", path = "../swc_ecma_transforms_base" } -swc_ecma_utils = { version = "0.127.10", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" } testing = { version = "0.35.20", path = "../testing" } diff --git a/crates/swc_ecma_transforms_typescript/Cargo.toml b/crates/swc_ecma_transforms_typescript/Cargo.toml index 88924ddc0ac9..0511e46798f5 100644 --- a/crates/swc_ecma_transforms_typescript/Cargo.toml +++ b/crates/swc_ecma_transforms_typescript/Cargo.toml @@ -21,7 +21,7 @@ swc_common = { version = "0.33.19", path = "../swc_common" } swc_ecma_ast = { version = "0.112.5", path = "../swc_ecma_ast" } swc_ecma_transforms_base = { version = "0.137.14", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_react = { version = "0.183.14", path = "../swc_ecma_transforms_react" } -swc_ecma_utils = { version = "0.127.10", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" } [dev-dependencies] diff --git a/crates/swc_ecma_usage_analyzer/Cargo.toml b/crates/swc_ecma_usage_analyzer/Cargo.toml index 21bee8992e81..ab4aa215a664 100644 --- a/crates/swc_ecma_usage_analyzer/Cargo.toml +++ b/crates/swc_ecma_usage_analyzer/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_ecma_usage_analyzer" repository = "https://github.com/swc-project/swc.git" -version = "0.23.10" +version = "0.23.11" [package.metadata.docs.rs] all-features = true @@ -29,6 +29,6 @@ tracing = "0.1.37" swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.19", path = "../swc_common" } swc_ecma_ast = { version = "0.112.5", path = "../swc_ecma_ast" } -swc_ecma_utils = { version = "0.127.10", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" } swc_timer = { version = "0.21.20", path = "../swc_timer" } diff --git a/crates/swc_ecma_utils/Cargo.toml b/crates/swc_ecma_utils/Cargo.toml index 96b053e38be3..ae96e3820807 100644 --- a/crates/swc_ecma_utils/Cargo.toml +++ b/crates/swc_ecma_utils/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_ecma_utils" repository = "https://github.com/swc-project/swc.git" -version = "0.127.10" +version = "0.127.11" [package.metadata.docs.rs] all-features = true diff --git a/crates/swc_ecmascript/Cargo.toml b/crates/swc_ecmascript/Cargo.toml index fdbfbf4f4eaa..46950fdcbae2 100644 --- a/crates/swc_ecmascript/Cargo.toml +++ b/crates/swc_ecmascript/Cargo.toml @@ -45,7 +45,7 @@ swc_ecma_parser = { version = "0.143.8", path = "../swc_ecma_parser", option swc_ecma_preset_env = { version = "0.206.14", path = "../swc_ecma_preset_env", optional = true } swc_ecma_quote = { version = "0.59.11", path = "../swc_ecma_quote", optional = true } swc_ecma_transforms = { version = "0.229.14", path = "../swc_ecma_transforms", optional = true } -swc_ecma_utils = { version = "0.127.10", path = "../swc_ecma_utils", optional = true } +swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils", optional = true } swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit", optional = true } [dev-dependencies] diff --git a/crates/swc_estree_compat/Cargo.toml b/crates/swc_estree_compat/Cargo.toml index 35ac331254ef..3ab837854ee2 100644 --- a/crates/swc_estree_compat/Cargo.toml +++ b/crates/swc_estree_compat/Cargo.toml @@ -31,7 +31,7 @@ swc_common = { version = "0.33.19", path = "../swc_common", features = [ ] } swc_ecma_ast = { version = "0.112.5", path = "../swc_ecma_ast" } swc_ecma_parser = { version = "0.143.8", path = "../swc_ecma_parser" } -swc_ecma_utils = { version = "0.127.10", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" } swc_estree_ast = { version = "0.23.18", path = "../swc_estree_ast" } swc_node_comments = { version = "0.20.18", path = "../swc_node_comments/" } diff --git a/crates/swc_node_bundler/Cargo.toml b/crates/swc_node_bundler/Cargo.toml index 3ba47ade127b..83275dfb07e5 100644 --- a/crates/swc_node_bundler/Cargo.toml +++ b/crates/swc_node_bundler/Cargo.toml @@ -42,7 +42,7 @@ swc_ecma_codegen = { version = "0.148.10", path = "../swc_ecma_codegen" } swc_ecma_loader = { version = "0.45.21", path = "../swc_ecma_loader" } swc_ecma_parser = { version = "0.143.8", path = "../swc_ecma_parser" } swc_ecma_transforms = { version = "0.229.14", path = "../swc_ecma_transforms" } -swc_ecma_utils = { version = "0.127.10", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" } swc_malloc = { version = "0.5.10", path = "../swc_malloc" }