diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e75845f5ab..a6c4be6d441 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,9 @@ - **(binding/types)** Update typings for `options.envs` to match implementation ([#8620](https://github.com/swc-project/swc/issues/8620)) ([2a115cf](https://github.com/swc-project/swc/commit/2a115cff716b3ac9216d03a4c88649fedff73850)) +- **(es/compat)** Visit AssignExpr right branch in FnEnvHoister ([#8633](https://github.com/swc-project/swc/issues/8633)) ([e5d6de0](https://github.com/swc-project/swc/commit/e5d6de0ea9fbab0e36791f59b58d6d2c76809ea5)) + + - **(es/decorators)** Do not insert duplicate constructors ([#8631](https://github.com/swc-project/swc/issues/8631)) ([21a447f](https://github.com/swc-project/swc/commit/21a447f35a79cdad4721cdefea26da1d355d34d3)) @@ -1454,10 +1457,4 @@ - **(es/minifier)** Do not reuse identifier used for import bindings ([#7639](https://github.com/swc-project/swc/issues/7639)) ([a65be14](https://github.com/swc-project/swc/commit/a65be14a00f41e9b0b4439c31b49febeefd1f845)) -### Buiild - - - -- **(bindings/wasm)** Fix Wasm build ([#7666](https://github.com/swc-project/swc/issues/7666)) ([dc5135f](https://github.com/swc-project/swc/commit/dc5135f43f5fe01ed36c1b40a5647b2f1c3277b4)) - diff --git a/Cargo.lock b/Cargo.lock index 2415da0a93a..3e7a7c29c23 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4196,7 +4196,7 @@ dependencies = [ [[package]] name = "swc_ecma_compat_bugfixes" -version = "0.4.3" +version = "0.4.4" dependencies = [ "swc_atoms", "swc_common", @@ -4213,7 +4213,7 @@ dependencies = [ [[package]] name = "swc_ecma_compat_common" -version = "0.4.3" +version = "0.4.4" dependencies = [ "swc_common", "swc_ecma_ast", @@ -4224,7 +4224,7 @@ dependencies = [ [[package]] name = "swc_ecma_compat_es2015" -version = "0.4.3" +version = "0.4.4" dependencies = [ "arrayvec", "indexmap 2.1.0", @@ -4250,7 +4250,7 @@ dependencies = [ [[package]] name = "swc_ecma_compat_es2016" -version = "0.4.3" +version = "0.4.4" dependencies = [ "swc_atoms", "swc_common", @@ -4267,7 +4267,7 @@ dependencies = [ [[package]] name = "swc_ecma_compat_es2017" -version = "0.4.3" +version = "0.4.4" dependencies = [ "serde", "swc_atoms", @@ -4285,7 +4285,7 @@ dependencies = [ [[package]] name = "swc_ecma_compat_es2018" -version = "0.4.3" +version = "0.4.4" dependencies = [ "serde", "swc_atoms", @@ -4304,7 +4304,7 @@ dependencies = [ [[package]] name = "swc_ecma_compat_es2019" -version = "0.4.3" +version = "0.4.4" dependencies = [ "swc_atoms", "swc_common", @@ -4320,7 +4320,7 @@ dependencies = [ [[package]] name = "swc_ecma_compat_es2020" -version = "0.4.3" +version = "0.4.4" dependencies = [ "serde", "swc_atoms", @@ -4338,7 +4338,7 @@ dependencies = [ [[package]] name = "swc_ecma_compat_es2021" -version = "0.4.3" +version = "0.4.4" dependencies = [ "swc_atoms", "swc_common", @@ -4352,7 +4352,7 @@ dependencies = [ [[package]] name = "swc_ecma_compat_es2022" -version = "0.4.3" +version = "0.4.4" dependencies = [ "swc_atoms", "swc_common", @@ -4369,7 +4369,7 @@ dependencies = [ [[package]] name = "swc_ecma_compat_es3" -version = "0.4.3" +version = "0.4.4" dependencies = [ "swc_common", "swc_ecma_ast", @@ -4384,7 +4384,7 @@ dependencies = [ [[package]] name = "swc_ecma_ext_transforms" -version = "0.113.3" +version = "0.113.4" dependencies = [ "phf", "swc_atoms", @@ -4396,7 +4396,7 @@ dependencies = [ [[package]] name = "swc_ecma_lints" -version = "0.92.3" +version = "0.92.4" dependencies = [ "auto_impl", "dashmap", @@ -4597,7 +4597,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms_base" -version = "0.137.3" +version = "0.137.4" dependencies = [ "better_scoped_tls", "bitflags 2.4.2", @@ -4624,7 +4624,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms_classes" -version = "0.126.3" +version = "0.126.4" dependencies = [ "swc_atoms", "swc_common", @@ -4636,7 +4636,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms_compat" -version = "0.163.3" +version = "0.163.4" dependencies = [ "arrayvec", "indexmap 2.1.0", @@ -4796,7 +4796,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms_testing" -version = "0.140.3" +version = "0.140.4" dependencies = [ "ansi_term", "anyhow", @@ -4842,7 +4842,7 @@ dependencies = [ [[package]] name = "swc_ecma_usage_analyzer" -version = "0.23.3" +version = "0.23.4" dependencies = [ "indexmap 2.1.0", "rustc-hash", @@ -4857,7 +4857,7 @@ dependencies = [ [[package]] name = "swc_ecma_utils" -version = "0.127.3" +version = "0.127.4" dependencies = [ "indexmap 2.1.0", "num_cpus", diff --git a/crates/dbg-swc/Cargo.toml b/crates/dbg-swc/Cargo.toml index 85aaf85cce1..5b05df5af1d 100644 --- a/crates/dbg-swc/Cargo.toml +++ b/crates/dbg-swc/Cargo.toml @@ -36,7 +36,7 @@ swc_ecma_minifier = { version = "0.192.4", path = "../swc_ecma_minifier", featur "concurrent", ] } swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" } -swc_ecma_transforms_base = { version = "0.137.3", path = "../swc_ecma_transforms_base" } +swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" } swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } swc_error_reporters = { version = "0.17.16", path = "../swc_error_reporters" } swc_timer = { version = "0.21.18", path = "../swc_timer" } diff --git a/crates/swc/Cargo.toml b/crates/swc/Cargo.toml index 553d1647ed5..3a49d731657 100644 --- a/crates/swc/Cargo.toml +++ b/crates/swc/Cargo.toml @@ -77,8 +77,8 @@ swc_compiler_base = { version = "0.7.4", path = "../swc_compiler_base" } swc_config = { version = "0.1.11", path = "../swc_config" } swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" } swc_ecma_codegen = { version = "0.148.3", path = "../swc_ecma_codegen" } -swc_ecma_ext_transforms = { version = "0.113.3", path = "../swc_ecma_ext_transforms" } -swc_ecma_lints = { version = "0.92.3", path = "../swc_ecma_lints" } +swc_ecma_ext_transforms = { version = "0.113.4", path = "../swc_ecma_ext_transforms" } +swc_ecma_lints = { version = "0.92.4", path = "../swc_ecma_lints" } swc_ecma_loader = { version = "0.45.19", path = "../swc_ecma_loader", features = [ "cache", "node", @@ -95,10 +95,10 @@ swc_ecma_transforms = { version = "0.229.4", path = "../swc_ecma_transforms", fe "react", "typescript", ] } -swc_ecma_transforms_base = { version = "0.137.3", path = "../swc_ecma_transforms_base" } -swc_ecma_transforms_compat = { version = "0.163.3", path = "../swc_ecma_transforms_compat" } +swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" } +swc_ecma_transforms_compat = { version = "0.163.4", path = "../swc_ecma_transforms_compat" } swc_ecma_transforms_optimization = { version = "0.198.4", path = "../swc_ecma_transforms_optimization" } -swc_ecma_utils = { version = "0.127.3", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } swc_error_reporters = { version = "0.17.16", path = "../swc_error_reporters" } swc_node_comments = { version = "0.20.16", path = "../swc_node_comments" } @@ -127,7 +127,7 @@ rayon = "1.7.0" swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast", features = [ "serde-impl", ] } -swc_ecma_lints = { version = "0.92.3", path = "../swc_ecma_lints", features = [ +swc_ecma_lints = { version = "0.92.4", path = "../swc_ecma_lints", features = [ "non_critical_lints", ] } swc_ecma_testing = { version = "0.22.19", path = "../swc_ecma_testing" } diff --git a/crates/swc_bundler/Cargo.toml b/crates/swc_bundler/Cargo.toml index ba81f899687..23f4d32db0a 100644 --- a/crates/swc_bundler/Cargo.toml +++ b/crates/swc_bundler/Cargo.toml @@ -43,9 +43,9 @@ swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_as swc_ecma_codegen = { version = "0.148.3", path = "../swc_ecma_codegen" } swc_ecma_loader = { version = "0.45.19", path = "../swc_ecma_loader" } swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" } -swc_ecma_transforms_base = { version = "0.137.3", path = "../swc_ecma_transforms_base" } +swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_optimization = { version = "0.198.4", path = "../swc_ecma_transforms_optimization" } -swc_ecma_utils = { version = "0.127.3", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } swc_fast_graph = { version = "0.21.17", path = "../swc_fast_graph/" } swc_graph_analyzer = { version = "0.22.19", path = "../swc_graph_analyzer/" } diff --git a/crates/swc_core/Cargo.toml b/crates/swc_core/Cargo.toml index 3d556f8eedb..8875f0462c0 100644 --- a/crates/swc_core/Cargo.toml +++ b/crates/swc_core/Cargo.toml @@ -346,16 +346,16 @@ swc_ecma_minifier = { optional = true, version = "0.192.4", path swc_ecma_parser = { optional = true, version = "0.143.3", path = "../swc_ecma_parser" } swc_ecma_preset_env = { optional = true, version = "0.206.4", path = "../swc_ecma_preset_env" } swc_ecma_quote_macros = { optional = true, version = "0.54.6", path = "../swc_ecma_quote_macros" } -swc_ecma_transforms_base = { optional = true, version = "0.137.3", path = "../swc_ecma_transforms_base" } -swc_ecma_transforms_compat = { optional = true, version = "0.163.3", path = "../swc_ecma_transforms_compat" } +swc_ecma_transforms_base = { optional = true, version = "0.137.4", path = "../swc_ecma_transforms_base" } +swc_ecma_transforms_compat = { optional = true, version = "0.163.4", path = "../swc_ecma_transforms_compat" } swc_ecma_transforms_module = { optional = true, version = "0.180.4", path = "../swc_ecma_transforms_module" } swc_ecma_transforms_optimization = { optional = true, version = "0.198.4", path = "../swc_ecma_transforms_optimization" } swc_ecma_transforms_proposal = { optional = true, version = "0.171.4", path = "../swc_ecma_transforms_proposal" } swc_ecma_transforms_react = { optional = true, version = "0.183.4", path = "../swc_ecma_transforms_react" } -swc_ecma_transforms_testing = { optional = true, version = "0.140.3", path = "../swc_ecma_transforms_testing" } +swc_ecma_transforms_testing = { optional = true, version = "0.140.4", path = "../swc_ecma_transforms_testing" } swc_ecma_transforms_typescript = { optional = true, version = "0.188.4", path = "../swc_ecma_transforms_typescript" } -swc_ecma_usage_analyzer = { optional = true, version = "0.23.3", path = "../swc_ecma_usage_analyzer" } -swc_ecma_utils = { optional = true, version = "0.127.3", path = "../swc_ecma_utils" } +swc_ecma_usage_analyzer = { optional = true, version = "0.23.4", path = "../swc_ecma_usage_analyzer" } +swc_ecma_utils = { optional = true, version = "0.127.4", path = "../swc_ecma_utils" } swc_ecma_visit = { optional = true, version = "0.98.2", path = "../swc_ecma_visit" } swc_malloc = { optional = true, version = "0.5.10", path = "../swc_malloc" } swc_node_bundler = { optional = true, version = "0.62.5", path = "../swc_node_bundler" } diff --git a/crates/swc_ecma_compat_bugfixes/Cargo.toml b/crates/swc_ecma_compat_bugfixes/Cargo.toml index 2668e4cd759..9b8cb84eec6 100644 --- a/crates/swc_ecma_compat_bugfixes/Cargo.toml +++ b/crates/swc_ecma_compat_bugfixes/Cargo.toml @@ -7,20 +7,20 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_ecma_compat_bugfixes" repository = "https://github.com/swc-project/swc.git" -version = "0.4.3" +version = "0.4.4" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.17", path = "../swc_common" } swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" } -swc_ecma_compat_es2015 = { version = "0.4.3", path = "../swc_ecma_compat_es2015" } -swc_ecma_transforms_base = { version = "0.137.3", path = "../swc_ecma_transforms_base" } -swc_ecma_utils = { version = "0.127.3", path = "../swc_ecma_utils" } +swc_ecma_compat_es2015 = { version = "0.4.4", path = "../swc_ecma_compat_es2015" } +swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" } +swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" } tracing = "0.1.37" [dev-dependencies] swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" } -swc_ecma_transforms_testing = { version = "0.140.3", path = "../swc_ecma_transforms_testing" } +swc_ecma_transforms_testing = { version = "0.140.4", path = "../swc_ecma_transforms_testing" } diff --git a/crates/swc_ecma_compat_common/Cargo.toml b/crates/swc_ecma_compat_common/Cargo.toml index 6b883628670..293be3f45b5 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.3" +version = "0.4.4" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] swc_common = { version = "0.33.17", path = "../swc_common" } swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" } -swc_ecma_utils = { version = "0.127.3", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.2", 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 684e9f322e2..77ea382db13 100644 --- a/crates/swc_ecma_compat_es2015/Cargo.toml +++ b/crates/swc_ecma_compat_es2015/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_ecma_compat_es2015" repository = "https://github.com/swc-project/swc.git" -version = "0.4.3" +version = "0.4.4" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -25,15 +25,15 @@ swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.17", path = "../swc_common" } swc_config = { version = "0.1.11", path = "../swc_config" } swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" } -swc_ecma_compat_common = { version = "0.4.3", path = "../swc_ecma_compat_common" } -swc_ecma_transforms_base = { version = "0.137.3", path = "../swc_ecma_transforms_base" } -swc_ecma_transforms_classes = { version = "0.126.3", path = "../swc_ecma_transforms_classes" } +swc_ecma_compat_common = { version = "0.4.4", path = "../swc_ecma_compat_common" } +swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" } +swc_ecma_transforms_classes = { version = "0.126.4", path = "../swc_ecma_transforms_classes" } swc_ecma_transforms_macros = { version = "0.5.4", path = "../swc_ecma_transforms_macros" } -swc_ecma_utils = { version = "0.127.3", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" } tracing = "0.1.37" [dev-dependencies] swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" } -swc_ecma_transforms_testing = { version = "0.140.3", path = "../swc_ecma_transforms_testing" } +swc_ecma_transforms_testing = { version = "0.140.4", path = "../swc_ecma_transforms_testing" } diff --git a/crates/swc_ecma_compat_es2016/Cargo.toml b/crates/swc_ecma_compat_es2016/Cargo.toml index 058b08eed13..9093ef25f6f 100644 --- a/crates/swc_ecma_compat_es2016/Cargo.toml +++ b/crates/swc_ecma_compat_es2016/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_ecma_compat_es2016" repository = "https://github.com/swc-project/swc.git" -version = "0.4.3" +version = "0.4.4" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -16,13 +16,13 @@ version = "0.4.3" swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.17", path = "../swc_common" } swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" } -swc_ecma_transforms_base = { version = "0.137.3", path = "../swc_ecma_transforms_base" } +swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_macros = { version = "0.5.4", path = "../swc_ecma_transforms_macros" } -swc_ecma_utils = { version = "0.127.3", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" } tracing = "0.1.37" [dev-dependencies] swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" } -swc_ecma_transforms_testing = { version = "0.140.3", path = "../swc_ecma_transforms_testing" } +swc_ecma_transforms_testing = { version = "0.140.4", path = "../swc_ecma_transforms_testing" } diff --git a/crates/swc_ecma_compat_es2017/Cargo.toml b/crates/swc_ecma_compat_es2017/Cargo.toml index 18235fdb318..6f3eb3a99fd 100644 --- a/crates/swc_ecma_compat_es2017/Cargo.toml +++ b/crates/swc_ecma_compat_es2017/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_ecma_compat_es2017" repository = "https://github.com/swc-project/swc.git" -version = "0.4.3" +version = "0.4.4" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -19,12 +19,12 @@ tracing = "0.1.37" swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.17", path = "../swc_common" } swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" } -swc_ecma_transforms_base = { version = "0.137.3", path = "../swc_ecma_transforms_base" } +swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_macros = { version = "0.5.4", path = "../swc_ecma_transforms_macros" } -swc_ecma_utils = { version = "0.127.3", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" } [dev-dependencies] swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" } -swc_ecma_transforms_testing = { version = "0.140.3", path = "../swc_ecma_transforms_testing" } +swc_ecma_transforms_testing = { version = "0.140.4", path = "../swc_ecma_transforms_testing" } diff --git a/crates/swc_ecma_compat_es2018/Cargo.toml b/crates/swc_ecma_compat_es2018/Cargo.toml index b29bbf8403c..fa0da2d65de 100644 --- a/crates/swc_ecma_compat_es2018/Cargo.toml +++ b/crates/swc_ecma_compat_es2018/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_ecma_compat_es2018" repository = "https://github.com/swc-project/swc.git" -version = "0.4.3" +version = "0.4.4" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -19,13 +19,13 @@ tracing = "0.1.37" swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.17", path = "../swc_common" } swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" } -swc_ecma_compat_common = { version = "0.4.3", path = "../swc_ecma_compat_common" } -swc_ecma_transforms_base = { version = "0.137.3", path = "../swc_ecma_transforms_base" } +swc_ecma_compat_common = { version = "0.4.4", path = "../swc_ecma_compat_common" } +swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_macros = { version = "0.5.4", path = "../swc_ecma_transforms_macros" } -swc_ecma_utils = { version = "0.127.3", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" } [dev-dependencies] swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" } -swc_ecma_transforms_testing = { version = "0.140.3", path = "../swc_ecma_transforms_testing" } +swc_ecma_transforms_testing = { version = "0.140.4", path = "../swc_ecma_transforms_testing" } diff --git a/crates/swc_ecma_compat_es2019/Cargo.toml b/crates/swc_ecma_compat_es2019/Cargo.toml index 42c51dd423e..e1cfde9ff6d 100644 --- a/crates/swc_ecma_compat_es2019/Cargo.toml +++ b/crates/swc_ecma_compat_es2019/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_ecma_compat_es2019" repository = "https://github.com/swc-project/swc.git" -version = "0.4.3" +version = "0.4.4" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -19,11 +19,11 @@ tracing = "0.1.37" swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.17", path = "../swc_common" } swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" } -swc_ecma_transforms_base = { version = "0.137.3", path = "../swc_ecma_transforms_base" } -swc_ecma_utils = { version = "0.127.3", path = "../swc_ecma_utils" } +swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" } +swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" } [dev-dependencies] swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" } -swc_ecma_transforms_testing = { version = "0.140.3", path = "../swc_ecma_transforms_testing" } +swc_ecma_transforms_testing = { version = "0.140.4", path = "../swc_ecma_transforms_testing" } diff --git a/crates/swc_ecma_compat_es2020/Cargo.toml b/crates/swc_ecma_compat_es2020/Cargo.toml index a6de969aab4..717045edbfc 100644 --- a/crates/swc_ecma_compat_es2020/Cargo.toml +++ b/crates/swc_ecma_compat_es2020/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_ecma_compat_es2020" repository = "https://github.com/swc-project/swc.git" -version = "0.4.3" +version = "0.4.4" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -17,13 +17,13 @@ serde = { version = "1.0.188", features = ["derive"] } swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.17", path = "../swc_common" } swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" } -swc_ecma_compat_es2022 = { version = "0.4.3", path = "../swc_ecma_compat_es2022" } -swc_ecma_transforms_base = { version = "0.137.3", path = "../swc_ecma_transforms_base" } -swc_ecma_utils = { version = "0.127.3", path = "../swc_ecma_utils" } +swc_ecma_compat_es2022 = { version = "0.4.4", path = "../swc_ecma_compat_es2022" } +swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" } +swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" } tracing = "0.1.37" [dev-dependencies] swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" } -swc_ecma_transforms_testing = { version = "0.140.3", path = "../swc_ecma_transforms_testing" } +swc_ecma_transforms_testing = { version = "0.140.4", path = "../swc_ecma_transforms_testing" } diff --git a/crates/swc_ecma_compat_es2021/Cargo.toml b/crates/swc_ecma_compat_es2021/Cargo.toml index ecdd825f336..c2a224b86b0 100644 --- a/crates/swc_ecma_compat_es2021/Cargo.toml +++ b/crates/swc_ecma_compat_es2021/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_ecma_compat_es2021" repository = "https://github.com/swc-project/swc.git" -version = "0.4.3" +version = "0.4.4" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -18,7 +18,7 @@ tracing = "0.1.37" swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.17", path = "../swc_common" } swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" } -swc_ecma_transforms_base = { version = "0.137.3", path = "../swc_ecma_transforms_base" } -swc_ecma_utils = { version = "0.127.3", path = "../swc_ecma_utils" } +swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" } +swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.2", 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 24a9079b465..a5f60fb67b7 100644 --- a/crates/swc_ecma_compat_es2022/Cargo.toml +++ b/crates/swc_ecma_compat_es2022/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_ecma_compat_es2022" repository = "https://github.com/swc-project/swc.git" -version = "0.4.3" +version = "0.4.4" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -19,10 +19,10 @@ tracing = "0.1.37" swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.17", path = "../swc_common" } swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" } -swc_ecma_compat_common = { version = "0.4.3", path = "../swc_ecma_compat_common" } -swc_ecma_transforms_base = { version = "0.137.3", path = "../swc_ecma_transforms_base" } -swc_ecma_transforms_classes = { version = "0.126.3", path = "../swc_ecma_transforms_classes" } +swc_ecma_compat_common = { version = "0.4.4", path = "../swc_ecma_compat_common" } +swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" } +swc_ecma_transforms_classes = { version = "0.126.4", path = "../swc_ecma_transforms_classes" } swc_ecma_transforms_macros = { version = "0.5.4", path = "../swc_ecma_transforms_macros" } -swc_ecma_utils = { version = "0.127.3", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.2", 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 f75bbe30db4..2ce7efef2da 100644 --- a/crates/swc_ecma_compat_es3/Cargo.toml +++ b/crates/swc_ecma_compat_es3/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_ecma_compat_es3" repository = "https://github.com/swc-project/swc.git" -version = "0.4.3" +version = "0.4.4" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -17,11 +17,11 @@ tracing = "0.1.37" swc_common = { version = "0.33.17", path = "../swc_common" } swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" } -swc_ecma_transforms_base = { version = "0.137.3", path = "../swc_ecma_transforms_base" } -swc_ecma_utils = { version = "0.127.3", path = "../swc_ecma_utils" } +swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" } +swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" } [dev-dependencies] swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" } -swc_ecma_transforms_testing = { version = "0.140.3", path = "../swc_ecma_transforms_testing" } +swc_ecma_transforms_testing = { version = "0.140.4", path = "../swc_ecma_transforms_testing" } diff --git a/crates/swc_ecma_ext_transforms/Cargo.toml b/crates/swc_ecma_ext_transforms/Cargo.toml index 1f1a614a040..65359d8c789 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.3" +version = "0.113.4" [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.17", path = "../swc_common" } swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" } -swc_ecma_utils = { version = "0.127.3", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } diff --git a/crates/swc_ecma_lints/Cargo.toml b/crates/swc_ecma_lints/Cargo.toml index 9baf2c73e5e..eee53c7ffbb 100644 --- a/crates/swc_ecma_lints/Cargo.toml +++ b/crates/swc_ecma_lints/Cargo.toml @@ -6,7 +6,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_ecma_lints" repository = "https://github.com/swc-project/swc.git" -version = "0.92.3" +version = "0.92.4" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] @@ -28,13 +28,13 @@ swc_config = { version = "0.1.11", path = "../swc_config" } swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast", features = [ "serde", ] } -swc_ecma_utils = { version = "0.127.3", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } [dev-dependencies] swc_ecma_codegen = { version = "0.148.3", path = "../swc_ecma_codegen" } swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" } -swc_ecma_transforms_base = { version = "0.137.3", path = "../swc_ecma_transforms_base" } +swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" } testing = { version = "0.35.18", path = "../testing" } [features] diff --git a/crates/swc_ecma_minifier/Cargo.toml b/crates/swc_ecma_minifier/Cargo.toml index f91193428d3..c4283f769bb 100644 --- a/crates/swc_ecma_minifier/Cargo.toml +++ b/crates/swc_ecma_minifier/Cargo.toml @@ -60,10 +60,10 @@ swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast", features = [ ] } swc_ecma_codegen = { version = "0.148.3", path = "../swc_ecma_codegen" } swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" } -swc_ecma_transforms_base = { version = "0.137.3", path = "../swc_ecma_transforms_base" } +swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_optimization = { version = "0.198.4", path = "../swc_ecma_transforms_optimization" } -swc_ecma_usage_analyzer = { version = "0.23.3", path = "../swc_ecma_usage_analyzer" } -swc_ecma_utils = { version = "0.127.3", path = "../swc_ecma_utils" } +swc_ecma_usage_analyzer = { version = "0.23.4", path = "../swc_ecma_usage_analyzer" } +swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } swc_timer = { version = "0.21.18", path = "../swc_timer" } diff --git a/crates/swc_ecma_preset_env/Cargo.toml b/crates/swc_ecma_preset_env/Cargo.toml index 4fd96e4faf7..85d5a85d5d6 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.4", path = "../swc_ecma_transforms", fe "compat", "proposal", ] } -swc_ecma_utils = { version = "0.127.3", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } [dev-dependencies] diff --git a/crates/swc_ecma_transforms/Cargo.toml b/crates/swc_ecma_transforms/Cargo.toml index e1de68ed239..0369cdf33ef 100644 --- a/crates/swc_ecma_transforms/Cargo.toml +++ b/crates/swc_ecma_transforms/Cargo.toml @@ -34,14 +34,14 @@ typescript = ["swc_ecma_transforms_typescript"] swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.17", path = "../swc_common" } swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" } -swc_ecma_transforms_base = { version = "0.137.3", path = "../swc_ecma_transforms_base" } -swc_ecma_transforms_compat = { version = "0.163.3", path = "../swc_ecma_transforms_compat", optional = true } +swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" } +swc_ecma_transforms_compat = { version = "0.163.4", path = "../swc_ecma_transforms_compat", optional = true } swc_ecma_transforms_module = { version = "0.180.4", path = "../swc_ecma_transforms_module", optional = true } swc_ecma_transforms_optimization = { version = "0.198.4", path = "../swc_ecma_transforms_optimization", optional = true } swc_ecma_transforms_proposal = { version = "0.171.4", path = "../swc_ecma_transforms_proposal", optional = true } swc_ecma_transforms_react = { version = "0.183.4", path = "../swc_ecma_transforms_react", optional = true } swc_ecma_transforms_typescript = { version = "0.188.4", path = "../swc_ecma_transforms_typescript", optional = true } -swc_ecma_utils = { version = "0.127.3", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } [dev-dependencies] @@ -51,5 +51,5 @@ tempfile = "3" swc_ecma_codegen = { version = "0.148.3", path = "../swc_ecma_codegen" } swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" } -swc_ecma_transforms_testing = { version = "0.140.3", path = "../swc_ecma_transforms_testing" } +swc_ecma_transforms_testing = { version = "0.140.4", path = "../swc_ecma_transforms_testing" } testing = { version = "0.35.18", path = "../testing" } diff --git a/crates/swc_ecma_transforms_base/Cargo.toml b/crates/swc_ecma_transforms_base/Cargo.toml index 39a08725100..9057917a731 100644 --- a/crates/swc_ecma_transforms_base/Cargo.toml +++ b/crates/swc_ecma_transforms_base/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/**/*.js"] license = "Apache-2.0" name = "swc_ecma_transforms_base" repository = "https://github.com/swc-project/swc.git" -version = "0.137.3" +version = "0.137.4" [lib] bench = false @@ -32,7 +32,7 @@ swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.17", path = "../swc_common" } swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" } swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" } -swc_ecma_utils = { version = "0.127.3", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.2", 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 b116d616768..2ef3e2d2128 100644 --- a/crates/swc_ecma_transforms_classes/Cargo.toml +++ b/crates/swc_ecma_transforms_classes/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_ecma_transforms_classes" repository = "https://github.com/swc-project/swc.git" -version = "0.126.3" +version = "0.126.4" [lib] bench = false @@ -15,6 +15,6 @@ bench = false swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.17", path = "../swc_common" } swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" } -swc_ecma_transforms_base = { version = "0.137.3", path = "../swc_ecma_transforms_base" } -swc_ecma_utils = { version = "0.127.3", path = "../swc_ecma_utils" } +swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" } +swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } diff --git a/crates/swc_ecma_transforms_compat/Cargo.toml b/crates/swc_ecma_transforms_compat/Cargo.toml index 0df2d51f285..4e7edf055ac 100644 --- a/crates/swc_ecma_transforms_compat/Cargo.toml +++ b/crates/swc_ecma_transforms_compat/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_ecma_transforms_compat" repository = "https://github.com/swc-project/swc.git" -version = "0.163.3" +version = "0.163.4" [lib] bench = false @@ -33,21 +33,21 @@ swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.17", path = "../swc_common" } swc_config = { version = "0.1.11", path = "../swc_config" } swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" } -swc_ecma_compat_bugfixes = { version = "0.4.3", path = "../swc_ecma_compat_bugfixes" } -swc_ecma_compat_common = { version = "0.4.3", path = "../swc_ecma_compat_common" } -swc_ecma_compat_es2015 = { version = "0.4.3", path = "../swc_ecma_compat_es2015" } -swc_ecma_compat_es2016 = { version = "0.4.3", path = "../swc_ecma_compat_es2016" } -swc_ecma_compat_es2017 = { version = "0.4.3", path = "../swc_ecma_compat_es2017" } -swc_ecma_compat_es2018 = { version = "0.4.3", path = "../swc_ecma_compat_es2018" } -swc_ecma_compat_es2019 = { version = "0.4.3", path = "../swc_ecma_compat_es2019" } -swc_ecma_compat_es2020 = { version = "0.4.3", path = "../swc_ecma_compat_es2020" } -swc_ecma_compat_es2021 = { version = "0.4.3", path = "../swc_ecma_compat_es2021" } -swc_ecma_compat_es2022 = { version = "0.4.3", path = "../swc_ecma_compat_es2022" } -swc_ecma_compat_es3 = { version = "0.4.3", path = "../swc_ecma_compat_es3" } -swc_ecma_transforms_base = { version = "0.137.3", path = "../swc_ecma_transforms_base" } -swc_ecma_transforms_classes = { version = "0.126.3", path = "../swc_ecma_transforms_classes" } +swc_ecma_compat_bugfixes = { version = "0.4.4", path = "../swc_ecma_compat_bugfixes" } +swc_ecma_compat_common = { version = "0.4.4", path = "../swc_ecma_compat_common" } +swc_ecma_compat_es2015 = { version = "0.4.4", path = "../swc_ecma_compat_es2015" } +swc_ecma_compat_es2016 = { version = "0.4.4", path = "../swc_ecma_compat_es2016" } +swc_ecma_compat_es2017 = { version = "0.4.4", path = "../swc_ecma_compat_es2017" } +swc_ecma_compat_es2018 = { version = "0.4.4", path = "../swc_ecma_compat_es2018" } +swc_ecma_compat_es2019 = { version = "0.4.4", path = "../swc_ecma_compat_es2019" } +swc_ecma_compat_es2020 = { version = "0.4.4", path = "../swc_ecma_compat_es2020" } +swc_ecma_compat_es2021 = { version = "0.4.4", path = "../swc_ecma_compat_es2021" } +swc_ecma_compat_es2022 = { version = "0.4.4", path = "../swc_ecma_compat_es2022" } +swc_ecma_compat_es3 = { version = "0.4.4", path = "../swc_ecma_compat_es3" } +swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" } +swc_ecma_transforms_classes = { version = "0.126.4", path = "../swc_ecma_transforms_classes" } swc_ecma_transforms_macros = { version = "0.5.4", path = "../swc_ecma_transforms_macros" } -swc_ecma_utils = { version = "0.127.3", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" } @@ -55,5 +55,5 @@ swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" } serde_json = "1.0.66" swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" } -swc_ecma_transforms_testing = { version = "0.140.3", path = "../swc_ecma_transforms_testing" } +swc_ecma_transforms_testing = { version = "0.140.4", path = "../swc_ecma_transforms_testing" } testing = { version = "0.35.18", path = "../testing" } diff --git a/crates/swc_ecma_transforms_module/Cargo.toml b/crates/swc_ecma_transforms_module/Cargo.toml index 212e482ac88..aa4c61d164d 100644 --- a/crates/swc_ecma_transforms_module/Cargo.toml +++ b/crates/swc_ecma_transforms_module/Cargo.toml @@ -32,8 +32,8 @@ swc_ecma_loader = { version = "0.45.19", path = "../swc_ecma_loader", features = "node", ] } swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" } -swc_ecma_transforms_base = { version = "0.137.3", path = "../swc_ecma_transforms_base" } -swc_ecma_utils = { version = "0.127.3", path = "../swc_ecma_utils" } +swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" } +swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } [dev-dependencies] @@ -44,6 +44,6 @@ swc_ecma_loader = { version = "0.45.19", path = "../swc_ecma_loader", features = "node", "tsc", ] } -swc_ecma_transforms_compat = { version = "0.163.3", path = "../swc_ecma_transforms_compat" } -swc_ecma_transforms_testing = { version = "0.140.3", path = "../swc_ecma_transforms_testing" } +swc_ecma_transforms_compat = { version = "0.163.4", path = "../swc_ecma_transforms_compat" } +swc_ecma_transforms_testing = { version = "0.140.4", path = "../swc_ecma_transforms_testing" } testing = { version = "0.35.18", path = "../testing/" } diff --git a/crates/swc_ecma_transforms_optimization/Cargo.toml b/crates/swc_ecma_transforms_optimization/Cargo.toml index deebd40a6b3..4b96da2ceec 100644 --- a/crates/swc_ecma_transforms_optimization/Cargo.toml +++ b/crates/swc_ecma_transforms_optimization/Cargo.toml @@ -35,17 +35,17 @@ swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.17", path = "../swc_common" } swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" } swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" } -swc_ecma_transforms_base = { version = "0.137.3", path = "../swc_ecma_transforms_base" } +swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_macros = { version = "0.5.4", path = "../swc_ecma_transforms_macros" } -swc_ecma_utils = { version = "0.127.3", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } swc_fast_graph = { version = "0.21.17", path = "../swc_fast_graph" } [dev-dependencies] -swc_ecma_transforms_compat = { version = "0.163.3", path = "../swc_ecma_transforms_compat" } +swc_ecma_transforms_compat = { version = "0.163.4", path = "../swc_ecma_transforms_compat" } swc_ecma_transforms_module = { version = "0.180.4", path = "../swc_ecma_transforms_module" } swc_ecma_transforms_proposal = { version = "0.171.4", path = "../swc_ecma_transforms_proposal" } swc_ecma_transforms_react = { version = "0.183.4", path = "../swc_ecma_transforms_react" } -swc_ecma_transforms_testing = { version = "0.140.3", path = "../swc_ecma_transforms_testing" } +swc_ecma_transforms_testing = { version = "0.140.4", path = "../swc_ecma_transforms_testing" } swc_ecma_transforms_typescript = { version = "0.188.4", path = "../swc_ecma_transforms_typescript" } testing = { version = "0.35.18", path = "../testing" } diff --git a/crates/swc_ecma_transforms_proposal/Cargo.toml b/crates/swc_ecma_transforms_proposal/Cargo.toml index e7537dd5cf8..8be4147f30c 100644 --- a/crates/swc_ecma_transforms_proposal/Cargo.toml +++ b/crates/swc_ecma_transforms_proposal/Cargo.toml @@ -26,16 +26,16 @@ swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.17", path = "../swc_common" } swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" } swc_ecma_loader = { version = "0.45.19", path = "../swc_ecma_loader", optional = true } -swc_ecma_transforms_base = { version = "0.137.3", path = "../swc_ecma_transforms_base" } -swc_ecma_transforms_classes = { version = "0.126.3", path = "../swc_ecma_transforms_classes" } +swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" } +swc_ecma_transforms_classes = { version = "0.126.4", path = "../swc_ecma_transforms_classes" } swc_ecma_transforms_macros = { version = "0.5.4", path = "../swc_ecma_transforms_macros" } -swc_ecma_utils = { version = "0.127.3", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } [dev-dependencies] serde_json = "1.0.66" swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" } -swc_ecma_transforms_compat = { version = "0.163.3", path = "../swc_ecma_transforms_compat" } -swc_ecma_transforms_testing = { version = "0.140.3", path = "../swc_ecma_transforms_testing" } +swc_ecma_transforms_compat = { version = "0.163.4", path = "../swc_ecma_transforms_compat" } +swc_ecma_transforms_testing = { version = "0.140.4", path = "../swc_ecma_transforms_testing" } testing = { version = "0.35.18", path = "../testing" } diff --git a/crates/swc_ecma_transforms_react/Cargo.toml b/crates/swc_ecma_transforms_react/Cargo.toml index db9d80c55ba..3d4d4a0c2e9 100644 --- a/crates/swc_ecma_transforms_react/Cargo.toml +++ b/crates/swc_ecma_transforms_react/Cargo.toml @@ -32,14 +32,14 @@ swc_common = { version = "0.33.17", path = "../swc_common" } swc_config = { version = "0.1.11", path = "../swc_config" } swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" } swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" } -swc_ecma_transforms_base = { version = "0.137.3", path = "../swc_ecma_transforms_base" } +swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_macros = { version = "0.5.4", path = "../swc_ecma_transforms_macros" } -swc_ecma_utils = { version = "0.127.3", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } [dev-dependencies] swc_ecma_codegen = { version = "0.148.3", path = "../swc_ecma_codegen/" } -swc_ecma_transforms_compat = { version = "0.163.3", path = "../swc_ecma_transforms_compat/" } +swc_ecma_transforms_compat = { version = "0.163.4", path = "../swc_ecma_transforms_compat/" } swc_ecma_transforms_module = { version = "0.180.4", path = "../swc_ecma_transforms_module" } -swc_ecma_transforms_testing = { version = "0.140.3", path = "../swc_ecma_transforms_testing" } +swc_ecma_transforms_testing = { version = "0.140.4", path = "../swc_ecma_transforms_testing" } testing = { version = "0.35.18", path = "../testing" } diff --git a/crates/swc_ecma_transforms_testing/Cargo.toml b/crates/swc_ecma_transforms_testing/Cargo.toml index 67eba57f420..8605c969b4c 100644 --- a/crates/swc_ecma_transforms_testing/Cargo.toml +++ b/crates/swc_ecma_transforms_testing/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_ecma_transforms_testing" repository = "https://github.com/swc-project/swc.git" -version = "0.140.3" +version = "0.140.4" [lib] bench = false @@ -29,7 +29,7 @@ swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" } swc_ecma_codegen = { version = "0.148.3", path = "../swc_ecma_codegen" } swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" } swc_ecma_testing = { version = "0.22.19", path = "../swc_ecma_testing" } -swc_ecma_transforms_base = { version = "0.137.3", path = "../swc_ecma_transforms_base" } -swc_ecma_utils = { version = "0.127.3", path = "../swc_ecma_utils" } +swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" } +swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } testing = { version = "0.35.18", path = "../testing" } diff --git a/crates/swc_ecma_transforms_typescript/Cargo.toml b/crates/swc_ecma_transforms_typescript/Cargo.toml index 0141deb0288..f7da0051979 100644 --- a/crates/swc_ecma_transforms_typescript/Cargo.toml +++ b/crates/swc_ecma_transforms_typescript/Cargo.toml @@ -19,9 +19,9 @@ ryu-js = "1.0.0" swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.17", path = "../swc_common" } swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" } -swc_ecma_transforms_base = { version = "0.137.3", path = "../swc_ecma_transforms_base" } +swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_react = { version = "0.183.4", path = "../swc_ecma_transforms_react" } -swc_ecma_utils = { version = "0.127.3", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } [dev-dependencies] @@ -29,9 +29,9 @@ criterion = "0.5" swc_ecma_codegen = { version = "0.148.3", path = "../swc_ecma_codegen" } swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" } -swc_ecma_transforms_compat = { version = "0.163.3", path = "../swc_ecma_transforms_compat" } +swc_ecma_transforms_compat = { version = "0.163.4", path = "../swc_ecma_transforms_compat" } swc_ecma_transforms_proposal = { version = "0.171.4", path = "../swc_ecma_transforms_proposal" } -swc_ecma_transforms_testing = { version = "0.140.3", path = "../swc_ecma_transforms_testing" } +swc_ecma_transforms_testing = { version = "0.140.4", path = "../swc_ecma_transforms_testing" } testing = { version = "0.35.18", path = "../testing" } [[bench]] diff --git a/crates/swc_ecma_usage_analyzer/Cargo.toml b/crates/swc_ecma_usage_analyzer/Cargo.toml index 40514b0bb4a..fd3dc8c0b34 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.3" +version = "0.23.4" [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.17", path = "../swc_common" } swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" } -swc_ecma_utils = { version = "0.127.3", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } swc_timer = { version = "0.21.18", path = "../swc_timer" } diff --git a/crates/swc_ecma_utils/Cargo.toml b/crates/swc_ecma_utils/Cargo.toml index aba3bae8e3e..fca83586d6f 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.3" +version = "0.127.4" [package.metadata.docs.rs] all-features = true diff --git a/crates/swc_ecmascript/Cargo.toml b/crates/swc_ecmascript/Cargo.toml index 65dbfa0f92c..eba3bbf03f6 100644 --- a/crates/swc_ecmascript/Cargo.toml +++ b/crates/swc_ecmascript/Cargo.toml @@ -45,7 +45,7 @@ swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser", option swc_ecma_preset_env = { version = "0.206.4", path = "../swc_ecma_preset_env", optional = true } swc_ecma_quote = { version = "0.59.6", path = "../swc_ecma_quote", optional = true } swc_ecma_transforms = { version = "0.229.4", path = "../swc_ecma_transforms", optional = true } -swc_ecma_utils = { version = "0.127.3", path = "../swc_ecma_utils", optional = true } +swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils", optional = true } swc_ecma_visit = { version = "0.98.2", 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 981a25b8351..2cf8f6988e3 100644 --- a/crates/swc_estree_compat/Cargo.toml +++ b/crates/swc_estree_compat/Cargo.toml @@ -31,7 +31,7 @@ swc_common = { version = "0.33.17", path = "../swc_common", features = [ ] } swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" } swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" } -swc_ecma_utils = { version = "0.127.3", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } swc_estree_ast = { version = "0.23.16", path = "../swc_estree_ast" } swc_node_comments = { version = "0.20.16", path = "../swc_node_comments/" } diff --git a/crates/swc_html_minifier/Cargo.toml b/crates/swc_html_minifier/Cargo.toml index 4ca42947121..bcc0af2fef3 100644 --- a/crates/swc_html_minifier/Cargo.toml +++ b/crates/swc_html_minifier/Cargo.toml @@ -35,7 +35,7 @@ swc_ecma_minifier = { version = "0.192.4", path = "../swc_ecma_minifier", featur "extra-serde", ] } swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" } -swc_ecma_transforms_base = { version = "0.137.3", path = "../swc_ecma_transforms_base" } +swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" } swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } swc_html_ast = { version = "0.33.16", path = "../swc_html_ast" } swc_html_codegen = { version = "0.42.21", path = "../swc_html_codegen" } diff --git a/crates/swc_node_bundler/Cargo.toml b/crates/swc_node_bundler/Cargo.toml index 89ec5ce767f..763fa1c74a0 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.3", path = "../swc_ecma_codegen" } swc_ecma_loader = { version = "0.45.19", path = "../swc_ecma_loader" } swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" } swc_ecma_transforms = { version = "0.229.4", path = "../swc_ecma_transforms" } -swc_ecma_utils = { version = "0.127.3", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } swc_malloc = { version = "0.5.10", path = "../swc_malloc" }