diff --git a/CHANGELOG.md b/CHANGELOG.md index 816318ac4a07..c7e3e7aa6dd0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ - **(es/minifier)** Abort seq inline on recursive usage ([#8887](https://github.com/swc-project/swc/issues/8887)) ([cd4548f](https://github.com/swc-project/swc/commit/cd4548fd8c32f67d0e8373f7a2c3cb625f43e6c4)) +### Features + + + +- **(es/ast)** Support abstract auto-accessors ([#8736](https://github.com/swc-project/swc/issues/8736)) ([1155ac7](https://github.com/swc-project/swc/commit/1155ac79720512625568c45bfd3542ec340c0ebd)) + ## [1.4.17] - 2024-04-23 ### Bug Fixes @@ -1345,9 +1351,6 @@ -- **(es/compat)** Generate `OptCall` for `OptCall` for private fields ([#8031](https://github.com/swc-project/swc/issues/8031)) ([06b6eb9](https://github.com/swc-project/swc/commit/06b6eb999964c25a964b0105bd7a4f20b51300dd)) - - - **(es/minifier)** Check if object shorthand is skippable for seq inliner ([#8036](https://github.com/swc-project/swc/issues/8036)) ([01391e3](https://github.com/swc-project/swc/commit/01391e3c13e42b7f42f80ab13b396cad182942ff)) diff --git a/Cargo.lock b/Cargo.lock index 7b0f30ab9b20..ac93a86cac8d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -309,7 +309,7 @@ dependencies = [ [[package]] name = "binding_macros" -version = "0.64.23" +version = "0.65.0" dependencies = [ "anyhow", "console_error_panic_hook", @@ -1064,7 +1064,7 @@ checksum = "7e962a19be5cfc3f3bf6dd8f61eb50107f356ad6270fbb3ed41476571db78be5" [[package]] name = "dbg-swc" -version = "0.91.28" +version = "0.92.0" dependencies = [ "anyhow", "clap 3.2.25", @@ -1908,7 +1908,7 @@ dependencies = [ [[package]] name = "jsdoc" -version = "0.112.10" +version = "0.113.0" dependencies = [ "anyhow", "dashmap", @@ -3706,7 +3706,7 @@ dependencies = [ [[package]] name = "swc" -version = "0.273.28" +version = "0.274.0" dependencies = [ "ansi_term", "anyhow", @@ -3776,7 +3776,7 @@ dependencies = [ [[package]] name = "swc_bundler" -version = "0.225.19" +version = "0.226.0" dependencies = [ "anyhow", "crc", @@ -3831,7 +3831,7 @@ dependencies = [ [[package]] name = "swc_cli_impl" -version = "0.8.25" +version = "0.9.0" dependencies = [ "anyhow", "assert_cmd", @@ -3890,7 +3890,7 @@ dependencies = [ [[package]] name = "swc_compiler_base" -version = "0.7.20" +version = "0.8.0" dependencies = [ "anyhow", "base64", @@ -3936,7 +3936,7 @@ dependencies = [ [[package]] name = "swc_core" -version = "0.90.38" +version = "0.91.0" dependencies = [ "anyhow", "binding_macros", @@ -4172,7 +4172,7 @@ dependencies = [ [[package]] name = "swc_ecma_ast" -version = "0.112.8" +version = "0.113.0" dependencies = [ "arbitrary", "bitflags 2.5.0", @@ -4192,7 +4192,7 @@ dependencies = [ [[package]] name = "swc_ecma_codegen" -version = "0.148.18" +version = "0.149.0" dependencies = [ "base64", "criterion", @@ -4226,7 +4226,7 @@ dependencies = [ [[package]] name = "swc_ecma_compat_bugfixes" -version = "0.4.18" +version = "0.5.0" dependencies = [ "swc_atoms", "swc_common", @@ -4243,7 +4243,7 @@ dependencies = [ [[package]] name = "swc_ecma_compat_common" -version = "0.4.13" +version = "0.5.0" dependencies = [ "swc_common", "swc_ecma_ast", @@ -4254,7 +4254,7 @@ dependencies = [ [[package]] name = "swc_ecma_compat_es2015" -version = "0.4.20" +version = "0.5.0" dependencies = [ "arrayvec", "indexmap 2.1.0", @@ -4280,7 +4280,7 @@ dependencies = [ [[package]] name = "swc_ecma_compat_es2016" -version = "0.4.16" +version = "0.5.0" dependencies = [ "swc_atoms", "swc_common", @@ -4297,7 +4297,7 @@ dependencies = [ [[package]] name = "swc_ecma_compat_es2017" -version = "0.4.18" +version = "0.5.0" dependencies = [ "serde", "swc_atoms", @@ -4315,7 +4315,7 @@ dependencies = [ [[package]] name = "swc_ecma_compat_es2018" -version = "0.4.17" +version = "0.5.0" dependencies = [ "serde", "swc_atoms", @@ -4334,7 +4334,7 @@ dependencies = [ [[package]] name = "swc_ecma_compat_es2019" -version = "0.4.16" +version = "0.5.0" dependencies = [ "swc_atoms", "swc_common", @@ -4350,7 +4350,7 @@ dependencies = [ [[package]] name = "swc_ecma_compat_es2020" -version = "0.4.17" +version = "0.5.0" dependencies = [ "serde", "swc_atoms", @@ -4368,7 +4368,7 @@ dependencies = [ [[package]] name = "swc_ecma_compat_es2021" -version = "0.4.16" +version = "0.5.0" dependencies = [ "swc_atoms", "swc_common", @@ -4382,7 +4382,7 @@ dependencies = [ [[package]] name = "swc_ecma_compat_es2022" -version = "0.4.17" +version = "0.5.0" dependencies = [ "swc_atoms", "swc_common", @@ -4399,7 +4399,7 @@ dependencies = [ [[package]] name = "swc_ecma_compat_es3" -version = "0.4.16" +version = "0.5.0" dependencies = [ "swc_common", "swc_ecma_ast", @@ -4414,7 +4414,7 @@ dependencies = [ [[package]] name = "swc_ecma_ext_transforms" -version = "0.113.14" +version = "0.114.0" dependencies = [ "phf", "swc_atoms", @@ -4426,7 +4426,7 @@ dependencies = [ [[package]] name = "swc_ecma_lints" -version = "0.92.21" +version = "0.93.0" dependencies = [ "auto_impl", "dashmap", @@ -4469,7 +4469,7 @@ dependencies = [ [[package]] name = "swc_ecma_minifier" -version = "0.192.24" +version = "0.193.0" dependencies = [ "ansi_term", "anyhow", @@ -4510,7 +4510,7 @@ dependencies = [ [[package]] name = "swc_ecma_parser" -version = "0.143.16" +version = "0.144.0" dependencies = [ "criterion", "either", @@ -4537,7 +4537,7 @@ dependencies = [ [[package]] name = "swc_ecma_preset_env" -version = "0.206.18" +version = "0.207.0" dependencies = [ "anyhow", "criterion", @@ -4565,7 +4565,7 @@ dependencies = [ [[package]] name = "swc_ecma_quote" -version = "0.59.13" +version = "0.60.0" dependencies = [ "swc_atoms", "swc_common", @@ -4576,7 +4576,7 @@ dependencies = [ [[package]] name = "swc_ecma_quote_macros" -version = "0.54.13" +version = "0.55.0" dependencies = [ "anyhow", "proc-macro2", @@ -4602,7 +4602,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms" -version = "0.229.18" +version = "0.230.0" dependencies = [ "pretty_assertions", "sourcemap", @@ -4627,7 +4627,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms_base" -version = "0.137.21" +version = "0.138.0" dependencies = [ "better_scoped_tls", "bitflags 2.5.0", @@ -4654,7 +4654,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms_classes" -version = "0.126.16" +version = "0.127.0" dependencies = [ "swc_atoms", "swc_common", @@ -4666,7 +4666,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms_compat" -version = "0.163.19" +version = "0.164.0" dependencies = [ "arrayvec", "indexmap 2.1.0", @@ -4715,7 +4715,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms_module" -version = "0.180.19" +version = "0.181.0" dependencies = [ "Inflector", "anyhow", @@ -4744,7 +4744,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms_optimization" -version = "0.198.22" +version = "0.199.0" dependencies = [ "dashmap", "indexmap 2.1.0", @@ -4774,7 +4774,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms_proposal" -version = "0.171.23" +version = "0.172.0" dependencies = [ "either", "rustc-hash", @@ -4798,7 +4798,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms_react" -version = "0.183.19" +version = "0.184.0" dependencies = [ "base64", "dashmap", @@ -4826,7 +4826,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms_testing" -version = "0.140.18" +version = "0.141.0" dependencies = [ "ansi_term", "anyhow", @@ -4850,7 +4850,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms_typescript" -version = "0.188.19" +version = "0.189.0" dependencies = [ "criterion", "ryu-js", @@ -4872,7 +4872,7 @@ dependencies = [ [[package]] name = "swc_ecma_usage_analyzer" -version = "0.23.14" +version = "0.24.0" dependencies = [ "indexmap 2.1.0", "rustc-hash", @@ -4887,7 +4887,7 @@ dependencies = [ [[package]] name = "swc_ecma_utils" -version = "0.127.20" +version = "0.128.0" dependencies = [ "indexmap 2.1.0", "num_cpus", @@ -4907,7 +4907,7 @@ dependencies = [ [[package]] name = "swc_ecma_visit" -version = "0.98.7" +version = "0.99.0" dependencies = [ "num-bigint", "serde", @@ -4920,7 +4920,7 @@ dependencies = [ [[package]] name = "swc_ecmascript" -version = "0.239.21" +version = "0.240.0" dependencies = [ "swc_ecma_ast", "swc_ecma_codegen", @@ -4966,7 +4966,7 @@ dependencies = [ [[package]] name = "swc_estree_compat" -version = "0.198.22" +version = "0.199.0" dependencies = [ "ahash 0.8.8", "anyhow", @@ -5014,7 +5014,7 @@ dependencies = [ [[package]] name = "swc_html" -version = "0.137.18" +version = "0.138.0" dependencies = [ "swc_html_ast", "swc_html_codegen", @@ -5064,7 +5064,7 @@ dependencies = [ [[package]] name = "swc_html_minifier" -version = "0.134.19" +version = "0.135.0" dependencies = [ "criterion", "once_cell", @@ -5149,7 +5149,7 @@ dependencies = [ [[package]] name = "swc_node_bundler" -version = "0.62.24" +version = "0.63.0" dependencies = [ "anyhow", "dashmap", @@ -5215,7 +5215,7 @@ dependencies = [ [[package]] name = "swc_plugin_proxy" -version = "0.41.7" +version = "0.42.0" dependencies = [ "better_scoped_tls", "rkyv", @@ -5227,7 +5227,7 @@ dependencies = [ [[package]] name = "swc_plugin_runner" -version = "0.106.16" +version = "0.107.0" dependencies = [ "anyhow", "criterion", diff --git a/crates/binding_macros/Cargo.toml b/crates/binding_macros/Cargo.toml index 64094603c8c2..2c65c79776bc 100644 --- a/crates/binding_macros/Cargo.toml +++ b/crates/binding_macros/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" license = "Apache-2.0" name = "binding_macros" repository = "https://github.com/swc-project/swc.git" -version = "0.64.23" +version = "0.65.0" [lib] bench = false @@ -33,11 +33,11 @@ binding_wasm = [ [dependencies] # Common deps for the SWC imports -swc = { optional = true, version = "0.273.22", path = "../swc" } +swc = { optional = true, version = "0.274.0", path = "../swc" } swc_common = { optional = true, version = "0.33.20", path = "../swc_common" } -swc_ecma_ast = { optional = true, version = "0.112.6", path = "../swc_ecma_ast" } -swc_ecma_transforms = { optional = true, version = "0.229.17", path = "../swc_ecma_transforms" } -swc_ecma_visit = { optional = true, version = "0.98.7", path = "../swc_ecma_visit" } +swc_ecma_ast = { optional = true, version = "0.113.0", path = "../swc_ecma_ast" } +swc_ecma_transforms = { optional = true, version = "0.230.0", path = "../swc_ecma_transforms" } +swc_ecma_visit = { optional = true, version = "0.99.0", path = "../swc_ecma_visit" } # Optional deps for the wasm binding macro anyhow = { optional = true, version = "1.0.81" } diff --git a/crates/dbg-swc/Cargo.toml b/crates/dbg-swc/Cargo.toml index 938d7c966a93..83d3a0754c2e 100644 --- a/crates/dbg-swc/Cargo.toml +++ b/crates/dbg-swc/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" license = "Apache-2.0" name = "dbg-swc" repository = "https://github.com/kdy1/dbg-swc.git" -version = "0.91.28" +version = "0.92.0" [[bin]] bench = false @@ -30,13 +30,13 @@ swc_common = { version = "0.33.20", features = [ "concurrent", "tty-emitter", ], path = "../swc_common" } -swc_ecma_ast = { version = "0.112.6", path = "../swc_ecma_ast" } -swc_ecma_codegen = { version = "0.148.12", path = "../swc_ecma_codegen" } -swc_ecma_minifier = { version = "0.192.18", path = "../swc_ecma_minifier", features = [ +swc_ecma_ast = { version = "0.113.0", path = "../swc_ecma_ast" } +swc_ecma_codegen = { version = "0.149.0", path = "../swc_ecma_codegen" } +swc_ecma_minifier = { version = "0.193.0", path = "../swc_ecma_minifier", features = [ "concurrent", ] } -swc_ecma_parser = { version = "0.143.10", path = "../swc_ecma_parser" } -swc_ecma_transforms_base = { version = "0.137.16", path = "../swc_ecma_transforms_base" } -swc_ecma_visit = { version = "0.98.7", path = "../swc_ecma_visit" } +swc_ecma_parser = { version = "0.144.0", path = "../swc_ecma_parser" } +swc_ecma_transforms_base = { version = "0.138.0", path = "../swc_ecma_transforms_base" } +swc_ecma_visit = { version = "0.99.0", path = "../swc_ecma_visit" } swc_error_reporters = { version = "0.17.19", path = "../swc_error_reporters" } swc_timer = { version = "0.21.21", path = "../swc_timer" } diff --git a/crates/jsdoc/Cargo.toml b/crates/jsdoc/Cargo.toml index 3670a9034c6c..916298dd1f87 100644 --- a/crates/jsdoc/Cargo.toml +++ b/crates/jsdoc/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "jsdoc" -version = "0.112.10" +version = "0.113.0" [lib] bench = false @@ -25,6 +25,6 @@ swc_common = { version = "0.33.20", path = "../swc_common" } anyhow = "1" dashmap = "5.5.3" -swc_ecma_ast = { version = "0.112.6", path = "../swc_ecma_ast" } -swc_ecma_parser = { version = "0.143.10", path = "../swc_ecma_parser" } +swc_ecma_ast = { version = "0.113.0", path = "../swc_ecma_ast" } +swc_ecma_parser = { version = "0.144.0", path = "../swc_ecma_parser" } testing = { version = "0.35.21", path = "../testing" } diff --git a/crates/swc/Cargo.toml b/crates/swc/Cargo.toml index 693d13eae13a..6d28ed7d8738 100644 --- a/crates/swc/Cargo.toml +++ b/crates/swc/Cargo.toml @@ -9,7 +9,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc" repository = "https://github.com/swc-project/swc.git" -version = "0.273.28" +version = "0.274.0" [lib] bench = false @@ -74,21 +74,21 @@ swc_common = { version = "0.33.20", path = "../swc_common", features = [ "sourcemap", "parking_lot", ] } -swc_compiler_base = { version = "0.7.18", path = "../swc_compiler_base" } +swc_compiler_base = { version = "0.8.0", path = "../swc_compiler_base" } swc_config = { version = "0.1.11", path = "../swc_config" } -swc_ecma_ast = { version = "0.112.6", path = "../swc_ecma_ast" } -swc_ecma_codegen = { version = "0.148.12", path = "../swc_ecma_codegen" } -swc_ecma_ext_transforms = { version = "0.113.13", path = "../swc_ecma_ext_transforms" } -swc_ecma_lints = { version = "0.92.18", path = "../swc_ecma_lints" } +swc_ecma_ast = { version = "0.113.0", path = "../swc_ecma_ast" } +swc_ecma_codegen = { version = "0.149.0", path = "../swc_ecma_codegen" } +swc_ecma_ext_transforms = { version = "0.114.0", path = "../swc_ecma_ext_transforms" } +swc_ecma_lints = { version = "0.93.0", path = "../swc_ecma_lints" } swc_ecma_loader = { version = "0.45.23", path = "../swc_ecma_loader", features = [ "cache", "node", "tsc", ] } -swc_ecma_minifier = { version = "0.192.18", path = "../swc_ecma_minifier" } -swc_ecma_parser = { version = "0.143.10", path = "../swc_ecma_parser" } -swc_ecma_preset_env = { version = "0.206.17", path = "../swc_ecma_preset_env" } -swc_ecma_transforms = { version = "0.229.17", path = "../swc_ecma_transforms", features = [ +swc_ecma_minifier = { version = "0.193.0", path = "../swc_ecma_minifier" } +swc_ecma_parser = { version = "0.144.0", path = "../swc_ecma_parser" } +swc_ecma_preset_env = { version = "0.207.0", path = "../swc_ecma_preset_env" } +swc_ecma_transforms = { version = "0.230.0", path = "../swc_ecma_transforms", features = [ "compat", "module", "optimization", @@ -96,15 +96,15 @@ swc_ecma_transforms = { version = "0.229.17", path = "../swc_ecma_transforms", f "react", "typescript", ] } -swc_ecma_transforms_base = { version = "0.137.16", path = "../swc_ecma_transforms_base" } -swc_ecma_transforms_compat = { version = "0.163.17", path = "../swc_ecma_transforms_compat" } -swc_ecma_transforms_optimization = { version = "0.198.17", path = "../swc_ecma_transforms_optimization" } -swc_ecma_utils = { version = "0.127.13", path = "../swc_ecma_utils" } -swc_ecma_visit = { version = "0.98.7", path = "../swc_ecma_visit" } +swc_ecma_transforms_base = { version = "0.138.0", path = "../swc_ecma_transforms_base" } +swc_ecma_transforms_compat = { version = "0.164.0", path = "../swc_ecma_transforms_compat" } +swc_ecma_transforms_optimization = { version = "0.199.0", path = "../swc_ecma_transforms_optimization" } +swc_ecma_utils = { version = "0.128.0", path = "../swc_ecma_utils" } +swc_ecma_visit = { version = "0.99.0", path = "../swc_ecma_visit" } swc_error_reporters = { version = "0.17.19", path = "../swc_error_reporters" } swc_node_comments = { version = "0.20.19", path = "../swc_node_comments" } -swc_plugin_proxy = { version = "0.41.6", path = "../swc_plugin_proxy", optional = true } -swc_plugin_runner = { version = "0.106.13", path = "../swc_plugin_runner", optional = true, default-features = false } +swc_plugin_proxy = { version = "0.42.0", path = "../swc_plugin_proxy", optional = true } +swc_plugin_runner = { version = "0.107.0", path = "../swc_plugin_runner", optional = true, default-features = false } swc_timer = { version = "0.21.21", path = "../swc_timer" } swc_visit = { version = "0.5.10", path = "../swc_visit" } tokio = { version = "1", optional = true, features = ["rt", "rt-multi-thread"] } @@ -126,10 +126,10 @@ tokio = { version = "1", optional = true, features = ["rt", "rt-multi-thread"] } ansi_term = "0.12" criterion = "0.5" rayon = "1.7.0" -swc_ecma_ast = { version = "0.112.6", path = "../swc_ecma_ast", features = [ +swc_ecma_ast = { version = "0.113.0", path = "../swc_ecma_ast", features = [ "serde-impl", ] } -swc_ecma_lints = { version = "0.92.18", path = "../swc_ecma_lints", features = [ +swc_ecma_lints = { version = "0.93.0", path = "../swc_ecma_lints", features = [ "non_critical_lints", ] } swc_ecma_testing = { version = "0.22.22", path = "../swc_ecma_testing" } diff --git a/crates/swc_bundler/Cargo.toml b/crates/swc_bundler/Cargo.toml index 38b6a1dc8430..5f305d6b75a0 100644 --- a/crates/swc_bundler/Cargo.toml +++ b/crates/swc_bundler/Cargo.toml @@ -9,7 +9,7 @@ include = ["Cargo.toml", "build.rs", "src/**/*.rs", "src/**/*.js"] license = "Apache-2.0" name = "swc_bundler" repository = "https://github.com/swc-project/swc.git" -version = "0.225.19" +version = "0.226.0" [package.metadata.docs.rs] all-features = true @@ -39,14 +39,14 @@ tracing = "0.1.40" swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.20", path = "../swc_common" } -swc_ecma_ast = { version = "0.112.6", path = "../swc_ecma_ast" } -swc_ecma_codegen = { version = "0.148.12", path = "../swc_ecma_codegen" } +swc_ecma_ast = { version = "0.113.0", path = "../swc_ecma_ast" } +swc_ecma_codegen = { version = "0.149.0", path = "../swc_ecma_codegen" } swc_ecma_loader = { version = "0.45.23", path = "../swc_ecma_loader" } -swc_ecma_parser = { version = "0.143.10", path = "../swc_ecma_parser" } -swc_ecma_transforms_base = { version = "0.137.16", path = "../swc_ecma_transforms_base" } -swc_ecma_transforms_optimization = { version = "0.198.17", path = "../swc_ecma_transforms_optimization" } -swc_ecma_utils = { version = "0.127.13", path = "../swc_ecma_utils" } -swc_ecma_visit = { version = "0.98.7", path = "../swc_ecma_visit" } +swc_ecma_parser = { version = "0.144.0", path = "../swc_ecma_parser" } +swc_ecma_transforms_base = { version = "0.138.0", path = "../swc_ecma_transforms_base" } +swc_ecma_transforms_optimization = { version = "0.199.0", path = "../swc_ecma_transforms_optimization" } +swc_ecma_utils = { version = "0.128.0", path = "../swc_ecma_utils" } +swc_ecma_visit = { version = "0.99.0", path = "../swc_ecma_visit" } swc_fast_graph = { version = "0.21.20", path = "../swc_fast_graph/" } swc_graph_analyzer = { version = "0.22.22", path = "../swc_graph_analyzer/" } @@ -63,11 +63,11 @@ swc_ecma_loader = { version = "0.45.23", path = "../swc_ecma_loader", features = "node", "cache", ] } -swc_ecma_minifier = { version = "0.192.18", path = "../swc_ecma_minifier", features = [ +swc_ecma_minifier = { version = "0.193.0", path = "../swc_ecma_minifier", features = [ "concurrent", ] } -swc_ecma_transforms_proposal = { version = "0.171.17", path = "../swc_ecma_transforms_proposal" } -swc_ecma_transforms_react = { version = "0.183.17", path = "../swc_ecma_transforms_react" } -swc_ecma_transforms_typescript = { version = "0.188.17", path = "../swc_ecma_transforms_typescript" } +swc_ecma_transforms_proposal = { version = "0.172.0", path = "../swc_ecma_transforms_proposal" } +swc_ecma_transforms_react = { version = "0.184.0", path = "../swc_ecma_transforms_react" } +swc_ecma_transforms_typescript = { version = "0.189.0", path = "../swc_ecma_transforms_typescript" } swc_malloc = { version = "0.5.10", path = "../swc_malloc" } testing = { version = "0.35.21", path = "../testing" } diff --git a/crates/swc_cli_impl/Cargo.toml b/crates/swc_cli_impl/Cargo.toml index 3e71d7ca030a..fba51c6ec030 100644 --- a/crates/swc_cli_impl/Cargo.toml +++ b/crates/swc_cli_impl/Cargo.toml @@ -6,7 +6,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_cli_impl" repository = "https://github.com/swc-project/swc.git" -version = "0.8.25" +version = "0.9.0" [[bin]] name = "swc" @@ -40,7 +40,7 @@ tracing-futures = "0.2.5" tracing-subscriber = { version = "0.3.18", features = ["env-filter"] } walkdir = "2" -swc_core = { version = "0.90.23", features = [ +swc_core = { version = "0.91.0", features = [ "trace_macro", "common_concurrent", "base_concurrent", diff --git a/crates/swc_compiler_base/Cargo.toml b/crates/swc_compiler_base/Cargo.toml index e1a6a4d02bfd..c5c8ac42563a 100644 --- a/crates/swc_compiler_base/Cargo.toml +++ b/crates/swc_compiler_base/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_compiler_base" repository = "https://github.com/swc-project/swc.git" -version = "0.7.20" +version = "0.8.0" [features] node = ["napi", "napi-derive"] @@ -25,11 +25,11 @@ swc_common = { version = "0.33.20", path = "../swc_common", features = [ "sourcemap", ] } swc_config = { version = "0.1.11", path = "../swc_config" } -swc_ecma_ast = { version = "0.112.6", path = "../swc_ecma_ast" } -swc_ecma_codegen = { version = "0.148.12", path = "../swc_ecma_codegen" } -swc_ecma_minifier = { version = "0.192.18", path = "../swc_ecma_minifier" } -swc_ecma_parser = { version = "0.143.10", path = "../swc_ecma_parser" } -swc_ecma_visit = { version = "0.98.7", path = "../swc_ecma_visit" } +swc_ecma_ast = { version = "0.113.0", path = "../swc_ecma_ast" } +swc_ecma_codegen = { version = "0.149.0", path = "../swc_ecma_codegen" } +swc_ecma_minifier = { version = "0.193.0", path = "../swc_ecma_minifier" } +swc_ecma_parser = { version = "0.144.0", path = "../swc_ecma_parser" } +swc_ecma_visit = { version = "0.99.0", path = "../swc_ecma_visit" } swc_timer = { version = "0.21.21", path = "../swc_timer" } [dependencies.napi-derive] diff --git a/crates/swc_core/Cargo.toml b/crates/swc_core/Cargo.toml index e99e7117fce1..447f34e05f98 100644 --- a/crates/swc_core/Cargo.toml +++ b/crates/swc_core/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_core" repository = "https://github.com/swc-project/swc.git" -version = "0.90.38" +version = "0.91.0" [package.metadata.docs.rs] features = [ "allocator_node", @@ -330,10 +330,10 @@ __visit = ["__ecma", "swc_ecma_visit"] once_cell = { optional = true, version = "1.19.0" } # swc_* dependencies -binding_macros = { optional = true, version = "0.64.22", path = "../binding_macros" } -swc = { optional = true, version = "0.273.22", path = "../swc" } +binding_macros = { optional = true, version = "0.65.0", path = "../binding_macros" } +swc = { optional = true, version = "0.274.0", path = "../swc" } swc_atoms = { optional = true, version = "0.6.5", path = "../swc_atoms" } -swc_bundler = { optional = true, version = "0.225.17", path = "../swc_bundler" } +swc_bundler = { optional = true, version = "0.226.0", path = "../swc_bundler" } swc_cached = { optional = true, version = "0.3.19", path = "../swc_cached" } swc_common = { optional = true, version = "0.33.20", path = "../swc_common" } swc_css_ast = { optional = true, version = "0.140.21", path = "../swc_css_ast" } @@ -345,35 +345,35 @@ swc_css_parser = { optional = true, version = "0.150.30", path swc_css_prefixer = { optional = true, version = "0.153.35", path = "../swc_css_prefixer" } swc_css_utils = { optional = true, version = "0.137.21", path = "../swc_css_utils/" } swc_css_visit = { optional = true, version = "0.139.21", path = "../swc_css_visit" } -swc_ecma_ast = { optional = true, version = "0.112.6", path = "../swc_ecma_ast" } -swc_ecma_codegen = { optional = true, version = "0.148.12", path = "../swc_ecma_codegen" } -swc_ecma_lints = { optional = true, version = "0.92.18", path = "../swc_ecma_lints" } +swc_ecma_ast = { optional = true, version = "0.113.0", path = "../swc_ecma_ast" } +swc_ecma_codegen = { optional = true, version = "0.149.0", path = "../swc_ecma_codegen" } +swc_ecma_lints = { optional = true, version = "0.93.0", path = "../swc_ecma_lints" } swc_ecma_loader = { optional = true, version = "0.45.23", path = "../swc_ecma_loader" } -swc_ecma_minifier = { optional = true, version = "0.192.18", path = "../swc_ecma_minifier" } -swc_ecma_parser = { optional = true, version = "0.143.10", path = "../swc_ecma_parser" } -swc_ecma_preset_env = { optional = true, version = "0.206.17", path = "../swc_ecma_preset_env" } -swc_ecma_quote_macros = { optional = true, version = "0.54.13", path = "../swc_ecma_quote_macros" } -swc_ecma_transforms_base = { optional = true, version = "0.137.16", path = "../swc_ecma_transforms_base" } -swc_ecma_transforms_compat = { optional = true, version = "0.163.17", path = "../swc_ecma_transforms_compat" } -swc_ecma_transforms_module = { optional = true, version = "0.180.17", path = "../swc_ecma_transforms_module" } -swc_ecma_transforms_optimization = { optional = true, version = "0.198.17", path = "../swc_ecma_transforms_optimization" } -swc_ecma_transforms_proposal = { optional = true, version = "0.171.17", path = "../swc_ecma_transforms_proposal" } -swc_ecma_transforms_react = { optional = true, version = "0.183.17", path = "../swc_ecma_transforms_react" } -swc_ecma_transforms_testing = { optional = true, version = "0.140.16", path = "../swc_ecma_transforms_testing" } -swc_ecma_transforms_typescript = { optional = true, version = "0.188.17", path = "../swc_ecma_transforms_typescript" } -swc_ecma_usage_analyzer = { optional = true, version = "0.23.13", path = "../swc_ecma_usage_analyzer" } -swc_ecma_utils = { optional = true, version = "0.127.13", path = "../swc_ecma_utils" } -swc_ecma_visit = { optional = true, version = "0.98.7", path = "../swc_ecma_visit" } +swc_ecma_minifier = { optional = true, version = "0.193.0", path = "../swc_ecma_minifier" } +swc_ecma_parser = { optional = true, version = "0.144.0", path = "../swc_ecma_parser" } +swc_ecma_preset_env = { optional = true, version = "0.207.0", path = "../swc_ecma_preset_env" } +swc_ecma_quote_macros = { optional = true, version = "0.55.0", path = "../swc_ecma_quote_macros" } +swc_ecma_transforms_base = { optional = true, version = "0.138.0", path = "../swc_ecma_transforms_base" } +swc_ecma_transforms_compat = { optional = true, version = "0.164.0", path = "../swc_ecma_transforms_compat" } +swc_ecma_transforms_module = { optional = true, version = "0.181.0", path = "../swc_ecma_transforms_module" } +swc_ecma_transforms_optimization = { optional = true, version = "0.199.0", path = "../swc_ecma_transforms_optimization" } +swc_ecma_transforms_proposal = { optional = true, version = "0.172.0", path = "../swc_ecma_transforms_proposal" } +swc_ecma_transforms_react = { optional = true, version = "0.184.0", path = "../swc_ecma_transforms_react" } +swc_ecma_transforms_testing = { optional = true, version = "0.141.0", path = "../swc_ecma_transforms_testing" } +swc_ecma_transforms_typescript = { optional = true, version = "0.189.0", path = "../swc_ecma_transforms_typescript" } +swc_ecma_usage_analyzer = { optional = true, version = "0.24.0", path = "../swc_ecma_usage_analyzer" } +swc_ecma_utils = { optional = true, version = "0.128.0", path = "../swc_ecma_utils" } +swc_ecma_visit = { optional = true, version = "0.99.0", path = "../swc_ecma_visit" } swc_malloc = { optional = true, version = "0.5.10", path = "../swc_malloc" } -swc_node_bundler = { optional = true, version = "0.62.22", path = "../swc_node_bundler" } +swc_node_bundler = { optional = true, version = "0.63.0", path = "../swc_node_bundler" } swc_nodejs_common = { optional = true, version = "0.0.8", path = "../swc_nodejs_common" } swc_plugin = { optional = true, version = "0.90.0", path = "../swc_plugin" } swc_plugin_macro = { optional = true, version = "0.9.16", path = "../swc_plugin_macro" } -swc_plugin_proxy = { optional = true, version = "0.41.6", path = "../swc_plugin_proxy" } +swc_plugin_proxy = { optional = true, version = "0.42.0", path = "../swc_plugin_proxy" } swc_trace_macro = { optional = true, version = "0.1.3", path = "../swc_trace_macro" } testing = { optional = true, version = "0.35.21", path = "../testing" } # TODO: eventually swc_plugin_runner needs to remove default features -swc_plugin_runner = { optional = true, version = "0.106.13", path = "../swc_plugin_runner", default-features = false } +swc_plugin_runner = { optional = true, version = "0.107.0", path = "../swc_plugin_runner", default-features = false } [build-dependencies] vergen = { version = "8.0.0", default-features = false, features = ["cargo"] } diff --git a/crates/swc_ecma_ast/Cargo.toml b/crates/swc_ecma_ast/Cargo.toml index 2e6f5894cded..e35ccca87146 100644 --- a/crates/swc_ecma_ast/Cargo.toml +++ b/crates/swc_ecma_ast/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_ecma_ast" repository = "https://github.com/swc-project/swc.git" -version = "0.112.8" +version = "0.113.0" [package.metadata.docs.rs] all-features = true diff --git a/crates/swc_ecma_codegen/Cargo.toml b/crates/swc_ecma_codegen/Cargo.toml index 5afb1c8df08f..e6a114e5f5e4 100644 --- a/crates/swc_ecma_codegen/Cargo.toml +++ b/crates/swc_ecma_codegen/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_ecma_codegen" repository = "https://github.com/swc-project/swc.git" -version = "0.148.18" +version = "0.149.0" [features] # This does not enable serde for ast nodes. @@ -27,7 +27,7 @@ tracing = "0.1.40" swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.20", path = "../swc_common" } -swc_ecma_ast = { version = "0.112.6", path = "../swc_ecma_ast" } +swc_ecma_ast = { version = "0.113.0", path = "../swc_ecma_ast" } swc_ecma_codegen_macros = { version = "0.7.4", path = "../swc_ecma_codegen_macros" } [dev-dependencies] @@ -38,7 +38,7 @@ serde_json = "1" swc_common = { version = "0.33.20", path = "../swc_common", features = [ "sourcemap", ] } -swc_ecma_parser = { version = "0.143.10", path = "../swc_ecma_parser" } +swc_ecma_parser = { version = "0.144.0", path = "../swc_ecma_parser" } swc_ecma_testing = { version = "0.22.22", path = "../swc_ecma_testing" } swc_malloc = { version = "0.5.10", path = "../swc_malloc" } testing = { version = "0.35.21", path = "../testing" } diff --git a/crates/swc_ecma_compat_bugfixes/Cargo.toml b/crates/swc_ecma_compat_bugfixes/Cargo.toml index a7b6b41becb8..f0cad913b2f3 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.18" +version = "0.5.0" # 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.20", path = "../swc_common" } -swc_ecma_ast = { version = "0.112.6", path = "../swc_ecma_ast" } -swc_ecma_compat_es2015 = { version = "0.4.17", path = "../swc_ecma_compat_es2015" } -swc_ecma_transforms_base = { version = "0.137.16", path = "../swc_ecma_transforms_base" } -swc_ecma_utils = { version = "0.127.13", path = "../swc_ecma_utils" } -swc_ecma_visit = { version = "0.98.7", path = "../swc_ecma_visit" } +swc_ecma_ast = { version = "0.113.0", path = "../swc_ecma_ast" } +swc_ecma_compat_es2015 = { version = "0.5.0", path = "../swc_ecma_compat_es2015" } +swc_ecma_transforms_base = { version = "0.138.0", path = "../swc_ecma_transforms_base" } +swc_ecma_utils = { version = "0.128.0", path = "../swc_ecma_utils" } +swc_ecma_visit = { version = "0.99.0", path = "../swc_ecma_visit" } swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" } tracing = "0.1.40" [dev-dependencies] -swc_ecma_parser = { version = "0.143.10", path = "../swc_ecma_parser" } -swc_ecma_transforms_testing = { version = "0.140.16", path = "../swc_ecma_transforms_testing" } +swc_ecma_parser = { version = "0.144.0", path = "../swc_ecma_parser" } +swc_ecma_transforms_testing = { version = "0.141.0", path = "../swc_ecma_transforms_testing" } diff --git a/crates/swc_ecma_compat_common/Cargo.toml b/crates/swc_ecma_compat_common/Cargo.toml index 78b021101927..88145a183933 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.13" +version = "0.5.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] swc_common = { version = "0.33.20", path = "../swc_common" } -swc_ecma_ast = { version = "0.112.6", path = "../swc_ecma_ast" } -swc_ecma_utils = { version = "0.127.13", path = "../swc_ecma_utils" } -swc_ecma_visit = { version = "0.98.7", path = "../swc_ecma_visit" } +swc_ecma_ast = { version = "0.113.0", path = "../swc_ecma_ast" } +swc_ecma_utils = { version = "0.128.0", path = "../swc_ecma_utils" } +swc_ecma_visit = { version = "0.99.0", 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 e5cb889f659d..e4582d78b725 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.20" +version = "0.5.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -24,16 +24,16 @@ swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.20", path = "../swc_common" } swc_config = { version = "0.1.11", path = "../swc_config" } -swc_ecma_ast = { version = "0.112.6", path = "../swc_ecma_ast" } -swc_ecma_compat_common = { version = "0.4.13", path = "../swc_ecma_compat_common" } -swc_ecma_transforms_base = { version = "0.137.16", path = "../swc_ecma_transforms_base" } -swc_ecma_transforms_classes = { version = "0.126.16", path = "../swc_ecma_transforms_classes" } +swc_ecma_ast = { version = "0.113.0", path = "../swc_ecma_ast" } +swc_ecma_compat_common = { version = "0.5.0", path = "../swc_ecma_compat_common" } +swc_ecma_transforms_base = { version = "0.138.0", path = "../swc_ecma_transforms_base" } +swc_ecma_transforms_classes = { version = "0.127.0", path = "../swc_ecma_transforms_classes" } swc_ecma_transforms_macros = { version = "0.5.4", path = "../swc_ecma_transforms_macros" } -swc_ecma_utils = { version = "0.127.13", path = "../swc_ecma_utils" } -swc_ecma_visit = { version = "0.98.7", path = "../swc_ecma_visit" } +swc_ecma_utils = { version = "0.128.0", path = "../swc_ecma_utils" } +swc_ecma_visit = { version = "0.99.0", path = "../swc_ecma_visit" } swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" } tracing = "0.1.40" [dev-dependencies] -swc_ecma_parser = { version = "0.143.10", path = "../swc_ecma_parser" } -swc_ecma_transforms_testing = { version = "0.140.16", path = "../swc_ecma_transforms_testing" } +swc_ecma_parser = { version = "0.144.0", path = "../swc_ecma_parser" } +swc_ecma_transforms_testing = { version = "0.141.0", path = "../swc_ecma_transforms_testing" } diff --git a/crates/swc_ecma_compat_es2016/Cargo.toml b/crates/swc_ecma_compat_es2016/Cargo.toml index f6ff2820bbc0..37e4c29e2d97 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.16" +version = "0.5.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -15,14 +15,14 @@ version = "0.4.16" [dependencies] swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.20", path = "../swc_common" } -swc_ecma_ast = { version = "0.112.6", path = "../swc_ecma_ast" } -swc_ecma_transforms_base = { version = "0.137.16", path = "../swc_ecma_transforms_base" } +swc_ecma_ast = { version = "0.113.0", path = "../swc_ecma_ast" } +swc_ecma_transforms_base = { version = "0.138.0", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_macros = { version = "0.5.4", path = "../swc_ecma_transforms_macros" } -swc_ecma_utils = { version = "0.127.13", path = "../swc_ecma_utils" } -swc_ecma_visit = { version = "0.98.7", path = "../swc_ecma_visit" } +swc_ecma_utils = { version = "0.128.0", path = "../swc_ecma_utils" } +swc_ecma_visit = { version = "0.99.0", path = "../swc_ecma_visit" } swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" } tracing = "0.1.40" [dev-dependencies] -swc_ecma_parser = { version = "0.143.10", path = "../swc_ecma_parser" } -swc_ecma_transforms_testing = { version = "0.140.16", path = "../swc_ecma_transforms_testing" } +swc_ecma_parser = { version = "0.144.0", path = "../swc_ecma_parser" } +swc_ecma_transforms_testing = { version = "0.141.0", path = "../swc_ecma_transforms_testing" } diff --git a/crates/swc_ecma_compat_es2017/Cargo.toml b/crates/swc_ecma_compat_es2017/Cargo.toml index 5c9ce5f8aa77..e9ffbcbc6ae7 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.18" +version = "0.5.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -18,13 +18,13 @@ tracing = "0.1.40" swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.20", path = "../swc_common" } -swc_ecma_ast = { version = "0.112.6", path = "../swc_ecma_ast" } -swc_ecma_transforms_base = { version = "0.137.16", path = "../swc_ecma_transforms_base" } +swc_ecma_ast = { version = "0.113.0", path = "../swc_ecma_ast" } +swc_ecma_transforms_base = { version = "0.138.0", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_macros = { version = "0.5.4", path = "../swc_ecma_transforms_macros" } -swc_ecma_utils = { version = "0.127.13", path = "../swc_ecma_utils" } -swc_ecma_visit = { version = "0.98.7", path = "../swc_ecma_visit" } +swc_ecma_utils = { version = "0.128.0", path = "../swc_ecma_utils" } +swc_ecma_visit = { version = "0.99.0", path = "../swc_ecma_visit" } swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" } [dev-dependencies] -swc_ecma_parser = { version = "0.143.10", path = "../swc_ecma_parser" } -swc_ecma_transforms_testing = { version = "0.140.16", path = "../swc_ecma_transforms_testing" } +swc_ecma_parser = { version = "0.144.0", path = "../swc_ecma_parser" } +swc_ecma_transforms_testing = { version = "0.141.0", path = "../swc_ecma_transforms_testing" } diff --git a/crates/swc_ecma_compat_es2018/Cargo.toml b/crates/swc_ecma_compat_es2018/Cargo.toml index 2a6d2f54c7f2..12351b7ea420 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.17" +version = "0.5.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -18,14 +18,14 @@ tracing = "0.1.40" swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.20", path = "../swc_common" } -swc_ecma_ast = { version = "0.112.6", path = "../swc_ecma_ast" } -swc_ecma_compat_common = { version = "0.4.13", path = "../swc_ecma_compat_common" } -swc_ecma_transforms_base = { version = "0.137.16", path = "../swc_ecma_transforms_base" } +swc_ecma_ast = { version = "0.113.0", path = "../swc_ecma_ast" } +swc_ecma_compat_common = { version = "0.5.0", path = "../swc_ecma_compat_common" } +swc_ecma_transforms_base = { version = "0.138.0", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_macros = { version = "0.5.4", path = "../swc_ecma_transforms_macros" } -swc_ecma_utils = { version = "0.127.13", path = "../swc_ecma_utils" } -swc_ecma_visit = { version = "0.98.7", path = "../swc_ecma_visit" } +swc_ecma_utils = { version = "0.128.0", path = "../swc_ecma_utils" } +swc_ecma_visit = { version = "0.99.0", path = "../swc_ecma_visit" } swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" } [dev-dependencies] -swc_ecma_parser = { version = "0.143.10", path = "../swc_ecma_parser" } -swc_ecma_transforms_testing = { version = "0.140.16", path = "../swc_ecma_transforms_testing" } +swc_ecma_parser = { version = "0.144.0", path = "../swc_ecma_parser" } +swc_ecma_transforms_testing = { version = "0.141.0", path = "../swc_ecma_transforms_testing" } diff --git a/crates/swc_ecma_compat_es2019/Cargo.toml b/crates/swc_ecma_compat_es2019/Cargo.toml index 136e8aa4771d..8480e4f0de85 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.16" +version = "0.5.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -18,12 +18,12 @@ tracing = "0.1.40" swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.20", path = "../swc_common" } -swc_ecma_ast = { version = "0.112.6", path = "../swc_ecma_ast" } -swc_ecma_transforms_base = { version = "0.137.16", path = "../swc_ecma_transforms_base" } -swc_ecma_utils = { version = "0.127.13", path = "../swc_ecma_utils" } -swc_ecma_visit = { version = "0.98.7", path = "../swc_ecma_visit" } +swc_ecma_ast = { version = "0.113.0", path = "../swc_ecma_ast" } +swc_ecma_transforms_base = { version = "0.138.0", path = "../swc_ecma_transforms_base" } +swc_ecma_utils = { version = "0.128.0", path = "../swc_ecma_utils" } +swc_ecma_visit = { version = "0.99.0", path = "../swc_ecma_visit" } swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" } [dev-dependencies] -swc_ecma_parser = { version = "0.143.10", path = "../swc_ecma_parser" } -swc_ecma_transforms_testing = { version = "0.140.16", path = "../swc_ecma_transforms_testing" } +swc_ecma_parser = { version = "0.144.0", path = "../swc_ecma_parser" } +swc_ecma_transforms_testing = { version = "0.141.0", path = "../swc_ecma_transforms_testing" } diff --git a/crates/swc_ecma_compat_es2020/Cargo.toml b/crates/swc_ecma_compat_es2020/Cargo.toml index 0080a19746f9..c5e5958650fd 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.17" +version = "0.5.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -16,14 +16,14 @@ version = "0.4.17" serde = { version = "1.0.197", features = ["derive"] } swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.20", path = "../swc_common" } -swc_ecma_ast = { version = "0.112.6", path = "../swc_ecma_ast" } -swc_ecma_compat_es2022 = { version = "0.4.16", path = "../swc_ecma_compat_es2022" } -swc_ecma_transforms_base = { version = "0.137.16", path = "../swc_ecma_transforms_base" } -swc_ecma_utils = { version = "0.127.13", path = "../swc_ecma_utils" } -swc_ecma_visit = { version = "0.98.7", path = "../swc_ecma_visit" } +swc_ecma_ast = { version = "0.113.0", path = "../swc_ecma_ast" } +swc_ecma_compat_es2022 = { version = "0.5.0", path = "../swc_ecma_compat_es2022" } +swc_ecma_transforms_base = { version = "0.138.0", path = "../swc_ecma_transforms_base" } +swc_ecma_utils = { version = "0.128.0", path = "../swc_ecma_utils" } +swc_ecma_visit = { version = "0.99.0", path = "../swc_ecma_visit" } swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" } tracing = "0.1.40" [dev-dependencies] -swc_ecma_parser = { version = "0.143.10", path = "../swc_ecma_parser" } -swc_ecma_transforms_testing = { version = "0.140.16", path = "../swc_ecma_transforms_testing" } +swc_ecma_parser = { version = "0.144.0", path = "../swc_ecma_parser" } +swc_ecma_transforms_testing = { version = "0.141.0", path = "../swc_ecma_transforms_testing" } diff --git a/crates/swc_ecma_compat_es2021/Cargo.toml b/crates/swc_ecma_compat_es2021/Cargo.toml index 9fd749a7e804..e98f251765c3 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.16" +version = "0.5.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -17,8 +17,8 @@ tracing = "0.1.40" swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.20", path = "../swc_common" } -swc_ecma_ast = { version = "0.112.6", path = "../swc_ecma_ast" } -swc_ecma_transforms_base = { version = "0.137.16", path = "../swc_ecma_transforms_base" } -swc_ecma_utils = { version = "0.127.13", path = "../swc_ecma_utils" } -swc_ecma_visit = { version = "0.98.7", path = "../swc_ecma_visit" } +swc_ecma_ast = { version = "0.113.0", path = "../swc_ecma_ast" } +swc_ecma_transforms_base = { version = "0.138.0", path = "../swc_ecma_transforms_base" } +swc_ecma_utils = { version = "0.128.0", path = "../swc_ecma_utils" } +swc_ecma_visit = { version = "0.99.0", 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 f605b8b86d51..fe6f97247682 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.17" +version = "0.5.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -18,11 +18,11 @@ tracing = "0.1.40" swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.20", path = "../swc_common" } -swc_ecma_ast = { version = "0.112.6", path = "../swc_ecma_ast" } -swc_ecma_compat_common = { version = "0.4.13", path = "../swc_ecma_compat_common" } -swc_ecma_transforms_base = { version = "0.137.16", path = "../swc_ecma_transforms_base" } -swc_ecma_transforms_classes = { version = "0.126.16", path = "../swc_ecma_transforms_classes" } +swc_ecma_ast = { version = "0.113.0", path = "../swc_ecma_ast" } +swc_ecma_compat_common = { version = "0.5.0", path = "../swc_ecma_compat_common" } +swc_ecma_transforms_base = { version = "0.138.0", path = "../swc_ecma_transforms_base" } +swc_ecma_transforms_classes = { version = "0.127.0", path = "../swc_ecma_transforms_classes" } swc_ecma_transforms_macros = { version = "0.5.4", path = "../swc_ecma_transforms_macros" } -swc_ecma_utils = { version = "0.127.13", path = "../swc_ecma_utils" } -swc_ecma_visit = { version = "0.98.7", path = "../swc_ecma_visit" } +swc_ecma_utils = { version = "0.128.0", path = "../swc_ecma_utils" } +swc_ecma_visit = { version = "0.99.0", 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 9cb0aac9c217..b7f1bcaffa1f 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.16" +version = "0.5.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -16,12 +16,12 @@ version = "0.4.16" tracing = "0.1.40" swc_common = { version = "0.33.20", path = "../swc_common" } -swc_ecma_ast = { version = "0.112.6", path = "../swc_ecma_ast" } -swc_ecma_transforms_base = { version = "0.137.16", path = "../swc_ecma_transforms_base" } -swc_ecma_utils = { version = "0.127.13", path = "../swc_ecma_utils" } -swc_ecma_visit = { version = "0.98.7", path = "../swc_ecma_visit" } +swc_ecma_ast = { version = "0.113.0", path = "../swc_ecma_ast" } +swc_ecma_transforms_base = { version = "0.138.0", path = "../swc_ecma_transforms_base" } +swc_ecma_utils = { version = "0.128.0", path = "../swc_ecma_utils" } +swc_ecma_visit = { version = "0.99.0", path = "../swc_ecma_visit" } swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" } [dev-dependencies] -swc_ecma_parser = { version = "0.143.10", path = "../swc_ecma_parser" } -swc_ecma_transforms_testing = { version = "0.140.16", path = "../swc_ecma_transforms_testing" } +swc_ecma_parser = { version = "0.144.0", path = "../swc_ecma_parser" } +swc_ecma_transforms_testing = { version = "0.141.0", path = "../swc_ecma_transforms_testing" } diff --git a/crates/swc_ecma_ext_transforms/Cargo.toml b/crates/swc_ecma_ext_transforms/Cargo.toml index 6e72e4abd765..d7dc2bbf99c7 100644 --- a/crates/swc_ecma_ext_transforms/Cargo.toml +++ b/crates/swc_ecma_ext_transforms/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_ecma_ext_transforms" repository = "https://github.com/swc-project/swc.git" -version = "0.113.14" +version = "0.114.0" [lib] bench = false @@ -16,6 +16,6 @@ phf = { version = "0.11", features = ["macros"] } swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.20", path = "../swc_common" } -swc_ecma_ast = { version = "0.112.6", path = "../swc_ecma_ast" } -swc_ecma_utils = { version = "0.127.13", path = "../swc_ecma_utils" } -swc_ecma_visit = { version = "0.98.7", path = "../swc_ecma_visit" } +swc_ecma_ast = { version = "0.113.0", path = "../swc_ecma_ast" } +swc_ecma_utils = { version = "0.128.0", path = "../swc_ecma_utils" } +swc_ecma_visit = { version = "0.99.0", path = "../swc_ecma_visit" } diff --git a/crates/swc_ecma_lints/Cargo.toml b/crates/swc_ecma_lints/Cargo.toml index d4a84d9c72ef..bf9a0615adff 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.21" +version = "0.93.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] @@ -25,16 +25,16 @@ swc_common = { version = "0.33.20", path = "../swc_common", features = [ "concurrent", ] } swc_config = { version = "0.1.11", path = "../swc_config" } -swc_ecma_ast = { version = "0.112.6", path = "../swc_ecma_ast", features = [ +swc_ecma_ast = { version = "0.113.0", path = "../swc_ecma_ast", features = [ "serde", ] } -swc_ecma_utils = { version = "0.127.13", path = "../swc_ecma_utils" } -swc_ecma_visit = { version = "0.98.7", path = "../swc_ecma_visit" } +swc_ecma_utils = { version = "0.128.0", path = "../swc_ecma_utils" } +swc_ecma_visit = { version = "0.99.0", path = "../swc_ecma_visit" } [dev-dependencies] -swc_ecma_codegen = { version = "0.148.12", path = "../swc_ecma_codegen" } -swc_ecma_parser = { version = "0.143.10", path = "../swc_ecma_parser" } -swc_ecma_transforms_base = { version = "0.137.16", path = "../swc_ecma_transforms_base" } +swc_ecma_codegen = { version = "0.149.0", path = "../swc_ecma_codegen" } +swc_ecma_parser = { version = "0.144.0", path = "../swc_ecma_parser" } +swc_ecma_transforms_base = { version = "0.138.0", path = "../swc_ecma_transforms_base" } testing = { version = "0.35.21", path = "../testing" } [features] diff --git a/crates/swc_ecma_minifier/Cargo.toml b/crates/swc_ecma_minifier/Cargo.toml index f95f9a523352..31f2788f1a9f 100644 --- a/crates/swc_ecma_minifier/Cargo.toml +++ b/crates/swc_ecma_minifier/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/lists/*.json"] license = "Apache-2.0" name = "swc_ecma_minifier" repository = "https://github.com/swc-project/swc.git" -version = "0.192.24" +version = "0.193.0" [package.metadata.docs.rs] all-features = true @@ -55,16 +55,16 @@ swc_common = { version = "0.33.20", path = "../swc_common" } swc_config = { version = "0.1.11", path = "../swc_config", features = [ "sourcemap", ] } -swc_ecma_ast = { version = "0.112.6", path = "../swc_ecma_ast", features = [ +swc_ecma_ast = { version = "0.113.0", path = "../swc_ecma_ast", features = [ "serde", ] } -swc_ecma_codegen = { version = "0.148.12", path = "../swc_ecma_codegen" } -swc_ecma_parser = { version = "0.143.10", path = "../swc_ecma_parser" } -swc_ecma_transforms_base = { version = "0.137.16", path = "../swc_ecma_transforms_base" } -swc_ecma_transforms_optimization = { version = "0.198.17", path = "../swc_ecma_transforms_optimization" } -swc_ecma_usage_analyzer = { version = "0.23.13", path = "../swc_ecma_usage_analyzer" } -swc_ecma_utils = { version = "0.127.13", path = "../swc_ecma_utils" } -swc_ecma_visit = { version = "0.98.7", path = "../swc_ecma_visit" } +swc_ecma_codegen = { version = "0.149.0", path = "../swc_ecma_codegen" } +swc_ecma_parser = { version = "0.144.0", path = "../swc_ecma_parser" } +swc_ecma_transforms_base = { version = "0.138.0", path = "../swc_ecma_transforms_base" } +swc_ecma_transforms_optimization = { version = "0.199.0", path = "../swc_ecma_transforms_optimization" } +swc_ecma_usage_analyzer = { version = "0.24.0", path = "../swc_ecma_usage_analyzer" } +swc_ecma_utils = { version = "0.128.0", path = "../swc_ecma_utils" } +swc_ecma_visit = { version = "0.99.0", path = "../swc_ecma_visit" } swc_timer = { version = "0.21.21", path = "../swc_timer" } [dev-dependencies] diff --git a/crates/swc_ecma_parser/Cargo.toml b/crates/swc_ecma_parser/Cargo.toml index cdd5d679b92e..cbc4e961dc31 100644 --- a/crates/swc_ecma_parser/Cargo.toml +++ b/crates/swc_ecma_parser/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "examples/**/*.rs"] license = "Apache-2.0" name = "swc_ecma_parser" repository = "https://github.com/swc-project/swc.git" -version = "0.143.16" +version = "0.144.0" [package.metadata.docs.rs] all-features = true @@ -37,8 +37,8 @@ new_debug_unreachable = "1.0.4" phf = { version = "0.11.2", features = ["macros"] } swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.20", path = "../swc_common" } -swc_ecma_ast = { version = "0.112.6", path = "../swc_ecma_ast" } -swc_ecma_visit = { version = "0.98.7", path = "../swc_ecma_visit", optional = true } +swc_ecma_ast = { version = "0.113.0", path = "../swc_ecma_ast" } +swc_ecma_visit = { version = "0.99.0", path = "../swc_ecma_visit", optional = true } [target.'cfg(not(any(target_arch = "wasm32", target_arch = "arm")))'.dependencies] stacker = { version = "0.1.15", optional = true } @@ -49,10 +49,10 @@ pretty_assertions = "1.3" serde_json = "1" walkdir = "2" -swc_ecma_ast = { version = "0.112.6", path = "../swc_ecma_ast", features = [ +swc_ecma_ast = { version = "0.113.0", path = "../swc_ecma_ast", features = [ "serde-impl", ] } -swc_ecma_visit = { version = "0.98.7", path = "../swc_ecma_visit" } +swc_ecma_visit = { version = "0.99.0", path = "../swc_ecma_visit" } swc_malloc = { version = "0.5.10", path = "../swc_malloc" } testing = { version = "0.35.21", path = "../testing" } diff --git a/crates/swc_ecma_preset_env/Cargo.toml b/crates/swc_ecma_preset_env/Cargo.toml index a438f387e987..982e89120d7d 100644 --- a/crates/swc_ecma_preset_env/Cargo.toml +++ b/crates/swc_ecma_preset_env/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json", "data/**/*.json"] license = "Apache-2.0" name = "swc_ecma_preset_env" repository = "https://github.com/swc-project/swc" -version = "0.206.18" +version = "0.207.0" [lib] bench = false @@ -31,20 +31,20 @@ rustc-hash = "1.1.0" string_enum = { version = "0.4.2", path = "../string_enum" } swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.20", path = "../swc_common" } -swc_ecma_ast = { version = "0.112.6", path = "../swc_ecma_ast" } -swc_ecma_transforms = { version = "0.229.17", path = "../swc_ecma_transforms", features = [ +swc_ecma_ast = { version = "0.113.0", path = "../swc_ecma_ast" } +swc_ecma_transforms = { version = "0.230.0", path = "../swc_ecma_transforms", features = [ "compat", "proposal", ] } -swc_ecma_utils = { version = "0.127.13", path = "../swc_ecma_utils" } -swc_ecma_visit = { version = "0.98.7", path = "../swc_ecma_visit" } +swc_ecma_utils = { version = "0.128.0", path = "../swc_ecma_utils" } +swc_ecma_visit = { version = "0.99.0", path = "../swc_ecma_visit" } [dev-dependencies] criterion = "0.5" pretty_assertions = "1.3" -swc_ecma_codegen = { version = "0.148.12", path = "../swc_ecma_codegen" } -swc_ecma_parser = { version = "0.143.10", path = "../swc_ecma_parser" } +swc_ecma_codegen = { version = "0.149.0", path = "../swc_ecma_codegen" } +swc_ecma_parser = { version = "0.144.0", path = "../swc_ecma_parser" } testing = { version = "0.35.21", path = "../testing" } [[bench]] diff --git a/crates/swc_ecma_quote/Cargo.toml b/crates/swc_ecma_quote/Cargo.toml index 564742a59c0a..31ed5eb758fe 100644 --- a/crates/swc_ecma_quote/Cargo.toml +++ b/crates/swc_ecma_quote/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_ecma_quote" repository = "https://github.com/swc-project/swc.git" -version = "0.59.13" +version = "0.60.0" [lib] bench = false @@ -14,8 +14,8 @@ bench = false [dependencies] swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.20", path = "../swc_common" } -swc_ecma_ast = { version = "0.112.6", path = "../swc_ecma_ast" } -swc_ecma_quote_macros = { version = "0.54.13", path = "../swc_ecma_quote_macros" } +swc_ecma_ast = { version = "0.113.0", path = "../swc_ecma_ast" } +swc_ecma_quote_macros = { version = "0.55.0", path = "../swc_ecma_quote_macros" } [dev-dependencies] testing = { version = "0.35.21", path = "../testing" } diff --git a/crates/swc_ecma_quote_macros/Cargo.toml b/crates/swc_ecma_quote_macros/Cargo.toml index 544b310002fb..6125ee9ba755 100644 --- a/crates/swc_ecma_quote_macros/Cargo.toml +++ b/crates/swc_ecma_quote_macros/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_ecma_quote_macros" repository = "https://github.com/swc-project/swc.git" -version = "0.54.13" +version = "0.55.0" [lib] bench = false @@ -20,6 +20,6 @@ syn = "2" swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.20", path = "../swc_common" } -swc_ecma_ast = { version = "0.112.6", path = "../swc_ecma_ast" } -swc_ecma_parser = { version = "0.143.10", path = "../swc_ecma_parser" } +swc_ecma_ast = { version = "0.113.0", path = "../swc_ecma_ast" } +swc_ecma_parser = { version = "0.144.0", path = "../swc_ecma_parser" } swc_macros_common = { version = "0.3.9", path = "../swc_macros_common" } diff --git a/crates/swc_ecma_transforms/Cargo.toml b/crates/swc_ecma_transforms/Cargo.toml index 144b38b0cc55..1534fd1c4273 100644 --- a/crates/swc_ecma_transforms/Cargo.toml +++ b/crates/swc_ecma_transforms/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_ecma_transforms" repository = "https://github.com/swc-project/swc.git" -version = "0.229.18" +version = "0.230.0" [package.metadata.docs.rs] all-features = true @@ -33,23 +33,23 @@ typescript = ["swc_ecma_transforms_typescript"] [dependencies] swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.20", path = "../swc_common" } -swc_ecma_ast = { version = "0.112.6", path = "../swc_ecma_ast" } -swc_ecma_transforms_base = { version = "0.137.16", path = "../swc_ecma_transforms_base" } -swc_ecma_transforms_compat = { version = "0.163.17", path = "../swc_ecma_transforms_compat", optional = true } -swc_ecma_transforms_module = { version = "0.180.17", path = "../swc_ecma_transforms_module", optional = true } -swc_ecma_transforms_optimization = { version = "0.198.17", path = "../swc_ecma_transforms_optimization", optional = true } -swc_ecma_transforms_proposal = { version = "0.171.17", path = "../swc_ecma_transforms_proposal", optional = true } -swc_ecma_transforms_react = { version = "0.183.17", path = "../swc_ecma_transforms_react", optional = true } -swc_ecma_transforms_typescript = { version = "0.188.17", path = "../swc_ecma_transforms_typescript", optional = true } -swc_ecma_utils = { version = "0.127.13", path = "../swc_ecma_utils" } -swc_ecma_visit = { version = "0.98.7", path = "../swc_ecma_visit" } +swc_ecma_ast = { version = "0.113.0", path = "../swc_ecma_ast" } +swc_ecma_transforms_base = { version = "0.138.0", path = "../swc_ecma_transforms_base" } +swc_ecma_transforms_compat = { version = "0.164.0", path = "../swc_ecma_transforms_compat", optional = true } +swc_ecma_transforms_module = { version = "0.181.0", path = "../swc_ecma_transforms_module", optional = true } +swc_ecma_transforms_optimization = { version = "0.199.0", path = "../swc_ecma_transforms_optimization", optional = true } +swc_ecma_transforms_proposal = { version = "0.172.0", path = "../swc_ecma_transforms_proposal", optional = true } +swc_ecma_transforms_react = { version = "0.184.0", path = "../swc_ecma_transforms_react", optional = true } +swc_ecma_transforms_typescript = { version = "0.189.0", path = "../swc_ecma_transforms_typescript", optional = true } +swc_ecma_utils = { version = "0.128.0", path = "../swc_ecma_utils" } +swc_ecma_visit = { version = "0.99.0", path = "../swc_ecma_visit" } [dev-dependencies] pretty_assertions = "1.3" sourcemap = "8.0" tempfile = "3" -swc_ecma_codegen = { version = "0.148.12", path = "../swc_ecma_codegen" } -swc_ecma_parser = { version = "0.143.10", path = "../swc_ecma_parser" } -swc_ecma_transforms_testing = { version = "0.140.16", path = "../swc_ecma_transforms_testing" } +swc_ecma_codegen = { version = "0.149.0", path = "../swc_ecma_codegen" } +swc_ecma_parser = { version = "0.144.0", path = "../swc_ecma_parser" } +swc_ecma_transforms_testing = { version = "0.141.0", path = "../swc_ecma_transforms_testing" } testing = { version = "0.35.21", path = "../testing" } diff --git a/crates/swc_ecma_transforms_base/Cargo.toml b/crates/swc_ecma_transforms_base/Cargo.toml index c3dde9bc7359..9d66806789ca 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.21" +version = "0.138.0" [lib] bench = false @@ -30,16 +30,16 @@ tracing = "0.1.40" swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.20", path = "../swc_common" } -swc_ecma_ast = { version = "0.112.6", path = "../swc_ecma_ast" } -swc_ecma_parser = { version = "0.143.10", path = "../swc_ecma_parser" } -swc_ecma_utils = { version = "0.127.13", path = "../swc_ecma_utils" } -swc_ecma_visit = { version = "0.98.7", path = "../swc_ecma_visit" } +swc_ecma_ast = { version = "0.113.0", path = "../swc_ecma_ast" } +swc_ecma_parser = { version = "0.144.0", path = "../swc_ecma_parser" } +swc_ecma_utils = { version = "0.128.0", path = "../swc_ecma_utils" } +swc_ecma_visit = { version = "0.99.0", path = "../swc_ecma_visit" } [dev-dependencies] criterion = "0.5" rayon = "1" -swc_ecma_codegen = { version = "0.148.12", path = "../swc_ecma_codegen" } +swc_ecma_codegen = { version = "0.149.0", path = "../swc_ecma_codegen" } swc_ecma_transforms_macros = { version = "0.5.4", path = "../swc_ecma_transforms_macros" } swc_malloc = { version = "0.5.10", path = "../swc_malloc" } testing = { version = "0.35.21", path = "../testing" } diff --git a/crates/swc_ecma_transforms_classes/Cargo.toml b/crates/swc_ecma_transforms_classes/Cargo.toml index c84ad49fa8d8..1f23b7c1ad5d 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.16" +version = "0.127.0" [lib] bench = false @@ -14,7 +14,7 @@ bench = false [dependencies] swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.20", path = "../swc_common" } -swc_ecma_ast = { version = "0.112.6", path = "../swc_ecma_ast" } -swc_ecma_transforms_base = { version = "0.137.16", path = "../swc_ecma_transforms_base" } -swc_ecma_utils = { version = "0.127.13", path = "../swc_ecma_utils" } -swc_ecma_visit = { version = "0.98.7", path = "../swc_ecma_visit" } +swc_ecma_ast = { version = "0.113.0", path = "../swc_ecma_ast" } +swc_ecma_transforms_base = { version = "0.138.0", path = "../swc_ecma_transforms_base" } +swc_ecma_utils = { version = "0.128.0", path = "../swc_ecma_utils" } +swc_ecma_visit = { version = "0.99.0", path = "../swc_ecma_visit" } diff --git a/crates/swc_ecma_transforms_compat/Cargo.toml b/crates/swc_ecma_transforms_compat/Cargo.toml index 6021427cdc92..18ba8cd543f8 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.19" +version = "0.164.0" [lib] bench = false @@ -32,28 +32,28 @@ tracing = "0.1.40" swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.20", path = "../swc_common" } swc_config = { version = "0.1.11", path = "../swc_config" } -swc_ecma_ast = { version = "0.112.6", path = "../swc_ecma_ast" } -swc_ecma_compat_bugfixes = { version = "0.4.17", path = "../swc_ecma_compat_bugfixes" } -swc_ecma_compat_common = { version = "0.4.13", path = "../swc_ecma_compat_common" } -swc_ecma_compat_es2015 = { version = "0.4.17", path = "../swc_ecma_compat_es2015" } -swc_ecma_compat_es2016 = { version = "0.4.16", path = "../swc_ecma_compat_es2016" } -swc_ecma_compat_es2017 = { version = "0.4.16", path = "../swc_ecma_compat_es2017" } -swc_ecma_compat_es2018 = { version = "0.4.16", path = "../swc_ecma_compat_es2018" } -swc_ecma_compat_es2019 = { version = "0.4.16", path = "../swc_ecma_compat_es2019" } -swc_ecma_compat_es2020 = { version = "0.4.16", path = "../swc_ecma_compat_es2020" } -swc_ecma_compat_es2021 = { version = "0.4.16", path = "../swc_ecma_compat_es2021" } -swc_ecma_compat_es2022 = { version = "0.4.16", path = "../swc_ecma_compat_es2022" } -swc_ecma_compat_es3 = { version = "0.4.16", path = "../swc_ecma_compat_es3" } -swc_ecma_transforms_base = { version = "0.137.16", path = "../swc_ecma_transforms_base" } -swc_ecma_transforms_classes = { version = "0.126.16", path = "../swc_ecma_transforms_classes" } +swc_ecma_ast = { version = "0.113.0", path = "../swc_ecma_ast" } +swc_ecma_compat_bugfixes = { version = "0.5.0", path = "../swc_ecma_compat_bugfixes" } +swc_ecma_compat_common = { version = "0.5.0", path = "../swc_ecma_compat_common" } +swc_ecma_compat_es2015 = { version = "0.5.0", path = "../swc_ecma_compat_es2015" } +swc_ecma_compat_es2016 = { version = "0.5.0", path = "../swc_ecma_compat_es2016" } +swc_ecma_compat_es2017 = { version = "0.5.0", path = "../swc_ecma_compat_es2017" } +swc_ecma_compat_es2018 = { version = "0.5.0", path = "../swc_ecma_compat_es2018" } +swc_ecma_compat_es2019 = { version = "0.5.0", path = "../swc_ecma_compat_es2019" } +swc_ecma_compat_es2020 = { version = "0.5.0", path = "../swc_ecma_compat_es2020" } +swc_ecma_compat_es2021 = { version = "0.5.0", path = "../swc_ecma_compat_es2021" } +swc_ecma_compat_es2022 = { version = "0.5.0", path = "../swc_ecma_compat_es2022" } +swc_ecma_compat_es3 = { version = "0.5.0", path = "../swc_ecma_compat_es3" } +swc_ecma_transforms_base = { version = "0.138.0", path = "../swc_ecma_transforms_base" } +swc_ecma_transforms_classes = { version = "0.127.0", path = "../swc_ecma_transforms_classes" } swc_ecma_transforms_macros = { version = "0.5.4", path = "../swc_ecma_transforms_macros" } -swc_ecma_utils = { version = "0.127.13", path = "../swc_ecma_utils" } -swc_ecma_visit = { version = "0.98.7", path = "../swc_ecma_visit" } +swc_ecma_utils = { version = "0.128.0", path = "../swc_ecma_utils" } +swc_ecma_visit = { version = "0.99.0", path = "../swc_ecma_visit" } swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" } [dev-dependencies] serde_json = "1.0.115" -swc_ecma_parser = { version = "0.143.10", path = "../swc_ecma_parser" } -swc_ecma_transforms_testing = { version = "0.140.16", path = "../swc_ecma_transforms_testing" } +swc_ecma_parser = { version = "0.144.0", path = "../swc_ecma_parser" } +swc_ecma_transforms_testing = { version = "0.141.0", path = "../swc_ecma_transforms_testing" } testing = { version = "0.35.21", path = "../testing" } diff --git a/crates/swc_ecma_transforms_module/Cargo.toml b/crates/swc_ecma_transforms_module/Cargo.toml index 3b1c78cbdca0..5c894043e96d 100644 --- a/crates/swc_ecma_transforms_module/Cargo.toml +++ b/crates/swc_ecma_transforms_module/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_ecma_transforms_module" repository = "https://github.com/swc-project/swc.git" -version = "0.180.19" +version = "0.181.0" [lib] bench = false @@ -27,14 +27,14 @@ tracing = "0.1.40" swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_cached = { version = "0.3.19", path = "../swc_cached" } swc_common = { version = "0.33.20", path = "../swc_common" } -swc_ecma_ast = { version = "0.112.6", path = "../swc_ecma_ast" } +swc_ecma_ast = { version = "0.113.0", path = "../swc_ecma_ast" } swc_ecma_loader = { version = "0.45.23", path = "../swc_ecma_loader", features = [ "node", ] } -swc_ecma_parser = { version = "0.143.10", path = "../swc_ecma_parser" } -swc_ecma_transforms_base = { version = "0.137.16", path = "../swc_ecma_transforms_base" } -swc_ecma_utils = { version = "0.127.13", path = "../swc_ecma_utils" } -swc_ecma_visit = { version = "0.98.7", path = "../swc_ecma_visit" } +swc_ecma_parser = { version = "0.144.0", path = "../swc_ecma_parser" } +swc_ecma_transforms_base = { version = "0.138.0", path = "../swc_ecma_transforms_base" } +swc_ecma_utils = { version = "0.128.0", path = "../swc_ecma_utils" } +swc_ecma_visit = { version = "0.99.0", path = "../swc_ecma_visit" } [dev-dependencies] indexmap = { version = "2.0.0", features = ["serde"] } @@ -44,6 +44,6 @@ swc_ecma_loader = { version = "0.45.23", path = "../swc_ecma_loader", features = "node", "tsc", ] } -swc_ecma_transforms_compat = { version = "0.163.17", path = "../swc_ecma_transforms_compat" } -swc_ecma_transforms_testing = { version = "0.140.16", path = "../swc_ecma_transforms_testing" } +swc_ecma_transforms_compat = { version = "0.164.0", path = "../swc_ecma_transforms_compat" } +swc_ecma_transforms_testing = { version = "0.141.0", path = "../swc_ecma_transforms_testing" } testing = { version = "0.35.21", path = "../testing/" } diff --git a/crates/swc_ecma_transforms_optimization/Cargo.toml b/crates/swc_ecma_transforms_optimization/Cargo.toml index 910c50ee6045..c3acd2f4e35a 100644 --- a/crates/swc_ecma_transforms_optimization/Cargo.toml +++ b/crates/swc_ecma_transforms_optimization/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_ecma_transforms_optimization" repository = "https://github.com/swc-project/swc.git" -version = "0.198.22" +version = "0.199.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] @@ -33,19 +33,19 @@ tracing = "0.1.40" swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.20", path = "../swc_common" } -swc_ecma_ast = { version = "0.112.6", path = "../swc_ecma_ast" } -swc_ecma_parser = { version = "0.143.10", path = "../swc_ecma_parser" } -swc_ecma_transforms_base = { version = "0.137.16", path = "../swc_ecma_transforms_base" } +swc_ecma_ast = { version = "0.113.0", path = "../swc_ecma_ast" } +swc_ecma_parser = { version = "0.144.0", path = "../swc_ecma_parser" } +swc_ecma_transforms_base = { version = "0.138.0", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_macros = { version = "0.5.4", path = "../swc_ecma_transforms_macros" } -swc_ecma_utils = { version = "0.127.13", path = "../swc_ecma_utils" } -swc_ecma_visit = { version = "0.98.7", path = "../swc_ecma_visit" } +swc_ecma_utils = { version = "0.128.0", path = "../swc_ecma_utils" } +swc_ecma_visit = { version = "0.99.0", path = "../swc_ecma_visit" } swc_fast_graph = { version = "0.21.20", path = "../swc_fast_graph" } [dev-dependencies] -swc_ecma_transforms_compat = { version = "0.163.17", path = "../swc_ecma_transforms_compat" } -swc_ecma_transforms_module = { version = "0.180.17", path = "../swc_ecma_transforms_module" } -swc_ecma_transforms_proposal = { version = "0.171.17", path = "../swc_ecma_transforms_proposal" } -swc_ecma_transforms_react = { version = "0.183.17", path = "../swc_ecma_transforms_react" } -swc_ecma_transforms_testing = { version = "0.140.16", path = "../swc_ecma_transforms_testing" } -swc_ecma_transforms_typescript = { version = "0.188.17", path = "../swc_ecma_transforms_typescript" } +swc_ecma_transforms_compat = { version = "0.164.0", path = "../swc_ecma_transforms_compat" } +swc_ecma_transforms_module = { version = "0.181.0", path = "../swc_ecma_transforms_module" } +swc_ecma_transforms_proposal = { version = "0.172.0", path = "../swc_ecma_transforms_proposal" } +swc_ecma_transforms_react = { version = "0.184.0", path = "../swc_ecma_transforms_react" } +swc_ecma_transforms_testing = { version = "0.141.0", path = "../swc_ecma_transforms_testing" } +swc_ecma_transforms_typescript = { version = "0.189.0", path = "../swc_ecma_transforms_typescript" } testing = { version = "0.35.21", path = "../testing" } diff --git a/crates/swc_ecma_transforms_proposal/Cargo.toml b/crates/swc_ecma_transforms_proposal/Cargo.toml index 3b9e21073b19..984ebf296fc9 100644 --- a/crates/swc_ecma_transforms_proposal/Cargo.toml +++ b/crates/swc_ecma_transforms_proposal/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_ecma_transforms_proposal" repository = "https://github.com/swc-project/swc.git" -version = "0.171.23" +version = "0.172.0" [lib] bench = false @@ -24,18 +24,18 @@ smallvec = "1.8.0" swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.20", path = "../swc_common" } -swc_ecma_ast = { version = "0.112.6", path = "../swc_ecma_ast" } +swc_ecma_ast = { version = "0.113.0", path = "../swc_ecma_ast" } swc_ecma_loader = { version = "0.45.23", path = "../swc_ecma_loader", optional = true } -swc_ecma_transforms_base = { version = "0.137.16", path = "../swc_ecma_transforms_base" } -swc_ecma_transforms_classes = { version = "0.126.16", path = "../swc_ecma_transforms_classes" } +swc_ecma_transforms_base = { version = "0.138.0", path = "../swc_ecma_transforms_base" } +swc_ecma_transforms_classes = { version = "0.127.0", path = "../swc_ecma_transforms_classes" } swc_ecma_transforms_macros = { version = "0.5.4", path = "../swc_ecma_transforms_macros" } -swc_ecma_utils = { version = "0.127.13", path = "../swc_ecma_utils" } -swc_ecma_visit = { version = "0.98.7", path = "../swc_ecma_visit" } +swc_ecma_utils = { version = "0.128.0", path = "../swc_ecma_utils" } +swc_ecma_visit = { version = "0.99.0", path = "../swc_ecma_visit" } [dev-dependencies] serde_json = "1.0.115" -swc_ecma_parser = { version = "0.143.10", path = "../swc_ecma_parser" } -swc_ecma_transforms_compat = { version = "0.163.17", path = "../swc_ecma_transforms_compat" } -swc_ecma_transforms_testing = { version = "0.140.16", path = "../swc_ecma_transforms_testing" } +swc_ecma_parser = { version = "0.144.0", path = "../swc_ecma_parser" } +swc_ecma_transforms_compat = { version = "0.164.0", path = "../swc_ecma_transforms_compat" } +swc_ecma_transforms_testing = { version = "0.141.0", path = "../swc_ecma_transforms_testing" } testing = { version = "0.35.21", path = "../testing" } diff --git a/crates/swc_ecma_transforms_react/Cargo.toml b/crates/swc_ecma_transforms_react/Cargo.toml index 09b5a3c94a4c..469b45229dd6 100644 --- a/crates/swc_ecma_transforms_react/Cargo.toml +++ b/crates/swc_ecma_transforms_react/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_ecma_transforms_react" repository = "https://github.com/swc-project/swc.git" -version = "0.183.19" +version = "0.184.0" [lib] bench = false @@ -30,16 +30,16 @@ string_enum = { version = "0.4.2", path = "../string_enum" } swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.20", path = "../swc_common" } swc_config = { version = "0.1.11", path = "../swc_config" } -swc_ecma_ast = { version = "0.112.6", path = "../swc_ecma_ast" } -swc_ecma_parser = { version = "0.143.10", path = "../swc_ecma_parser" } -swc_ecma_transforms_base = { version = "0.137.16", path = "../swc_ecma_transforms_base" } +swc_ecma_ast = { version = "0.113.0", path = "../swc_ecma_ast" } +swc_ecma_parser = { version = "0.144.0", path = "../swc_ecma_parser" } +swc_ecma_transforms_base = { version = "0.138.0", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_macros = { version = "0.5.4", path = "../swc_ecma_transforms_macros" } -swc_ecma_utils = { version = "0.127.13", path = "../swc_ecma_utils" } -swc_ecma_visit = { version = "0.98.7", path = "../swc_ecma_visit" } +swc_ecma_utils = { version = "0.128.0", path = "../swc_ecma_utils" } +swc_ecma_visit = { version = "0.99.0", path = "../swc_ecma_visit" } [dev-dependencies] -swc_ecma_codegen = { version = "0.148.12", path = "../swc_ecma_codegen/" } -swc_ecma_transforms_compat = { version = "0.163.17", path = "../swc_ecma_transforms_compat/" } -swc_ecma_transforms_module = { version = "0.180.17", path = "../swc_ecma_transforms_module" } -swc_ecma_transforms_testing = { version = "0.140.16", path = "../swc_ecma_transforms_testing" } +swc_ecma_codegen = { version = "0.149.0", path = "../swc_ecma_codegen/" } +swc_ecma_transforms_compat = { version = "0.164.0", path = "../swc_ecma_transforms_compat/" } +swc_ecma_transforms_module = { version = "0.181.0", path = "../swc_ecma_transforms_module" } +swc_ecma_transforms_testing = { version = "0.141.0", path = "../swc_ecma_transforms_testing" } testing = { version = "0.35.21", path = "../testing" } diff --git a/crates/swc_ecma_transforms_testing/Cargo.toml b/crates/swc_ecma_transforms_testing/Cargo.toml index 83a8c86284ab..338a5acd7891 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.18" +version = "0.141.0" [lib] bench = false @@ -25,11 +25,11 @@ tempfile = "3.6.0" swc_common = { version = "0.33.20", path = "../swc_common", features = [ "sourcemap", ] } -swc_ecma_ast = { version = "0.112.6", path = "../swc_ecma_ast" } -swc_ecma_codegen = { version = "0.148.12", path = "../swc_ecma_codegen" } -swc_ecma_parser = { version = "0.143.10", path = "../swc_ecma_parser" } +swc_ecma_ast = { version = "0.113.0", path = "../swc_ecma_ast" } +swc_ecma_codegen = { version = "0.149.0", path = "../swc_ecma_codegen" } +swc_ecma_parser = { version = "0.144.0", path = "../swc_ecma_parser" } swc_ecma_testing = { version = "0.22.22", path = "../swc_ecma_testing" } -swc_ecma_transforms_base = { version = "0.137.16", path = "../swc_ecma_transforms_base" } -swc_ecma_utils = { version = "0.127.13", path = "../swc_ecma_utils" } -swc_ecma_visit = { version = "0.98.7", path = "../swc_ecma_visit" } +swc_ecma_transforms_base = { version = "0.138.0", path = "../swc_ecma_transforms_base" } +swc_ecma_utils = { version = "0.128.0", path = "../swc_ecma_utils" } +swc_ecma_visit = { version = "0.99.0", path = "../swc_ecma_visit" } testing = { version = "0.35.21", path = "../testing" } diff --git a/crates/swc_ecma_transforms_typescript/Cargo.toml b/crates/swc_ecma_transforms_typescript/Cargo.toml index 2be0131b6908..3792ba9dfa7f 100644 --- a/crates/swc_ecma_transforms_typescript/Cargo.toml +++ b/crates/swc_ecma_transforms_typescript/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_ecma_transforms_typescript" repository = "https://github.com/swc-project/swc.git" -version = "0.188.19" +version = "0.189.0" [lib] bench = false @@ -18,20 +18,20 @@ serde = { version = "1.0.197", features = ["derive"] } ryu-js = "1.0.0" swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.20", path = "../swc_common" } -swc_ecma_ast = { version = "0.112.6", path = "../swc_ecma_ast" } -swc_ecma_transforms_base = { version = "0.137.16", path = "../swc_ecma_transforms_base" } -swc_ecma_transforms_react = { version = "0.183.17", path = "../swc_ecma_transforms_react" } -swc_ecma_utils = { version = "0.127.13", path = "../swc_ecma_utils" } -swc_ecma_visit = { version = "0.98.7", path = "../swc_ecma_visit" } +swc_ecma_ast = { version = "0.113.0", path = "../swc_ecma_ast" } +swc_ecma_transforms_base = { version = "0.138.0", path = "../swc_ecma_transforms_base" } +swc_ecma_transforms_react = { version = "0.184.0", path = "../swc_ecma_transforms_react" } +swc_ecma_utils = { version = "0.128.0", path = "../swc_ecma_utils" } +swc_ecma_visit = { version = "0.99.0", path = "../swc_ecma_visit" } [dev-dependencies] criterion = "0.5" -swc_ecma_codegen = { version = "0.148.12", path = "../swc_ecma_codegen" } -swc_ecma_parser = { version = "0.143.10", path = "../swc_ecma_parser" } -swc_ecma_transforms_compat = { version = "0.163.17", path = "../swc_ecma_transforms_compat" } -swc_ecma_transforms_proposal = { version = "0.171.17", path = "../swc_ecma_transforms_proposal" } -swc_ecma_transforms_testing = { version = "0.140.16", path = "../swc_ecma_transforms_testing" } +swc_ecma_codegen = { version = "0.149.0", path = "../swc_ecma_codegen" } +swc_ecma_parser = { version = "0.144.0", path = "../swc_ecma_parser" } +swc_ecma_transforms_compat = { version = "0.164.0", path = "../swc_ecma_transforms_compat" } +swc_ecma_transforms_proposal = { version = "0.172.0", path = "../swc_ecma_transforms_proposal" } +swc_ecma_transforms_testing = { version = "0.141.0", path = "../swc_ecma_transforms_testing" } testing = { version = "0.35.21", path = "../testing" } [[bench]] diff --git a/crates/swc_ecma_usage_analyzer/Cargo.toml b/crates/swc_ecma_usage_analyzer/Cargo.toml index 6e16750f2886..0d7e9410fb2a 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.14" +version = "0.24.0" [package.metadata.docs.rs] all-features = true @@ -28,7 +28,7 @@ tracing = "0.1.40" swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.20", path = "../swc_common" } -swc_ecma_ast = { version = "0.112.6", path = "../swc_ecma_ast" } -swc_ecma_utils = { version = "0.127.13", path = "../swc_ecma_utils" } -swc_ecma_visit = { version = "0.98.7", path = "../swc_ecma_visit" } +swc_ecma_ast = { version = "0.113.0", path = "../swc_ecma_ast" } +swc_ecma_utils = { version = "0.128.0", path = "../swc_ecma_utils" } +swc_ecma_visit = { version = "0.99.0", path = "../swc_ecma_visit" } swc_timer = { version = "0.21.21", path = "../swc_timer" } diff --git a/crates/swc_ecma_utils/Cargo.toml b/crates/swc_ecma_utils/Cargo.toml index 881fbd0cce28..a34bd3bb77ac 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.20" +version = "0.128.0" [package.metadata.docs.rs] all-features = true @@ -30,12 +30,12 @@ unicode-id = "0.3" swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.20", path = "../swc_common" } -swc_ecma_ast = { version = "0.112.6", path = "../swc_ecma_ast" } -swc_ecma_visit = { version = "0.98.7", path = "../swc_ecma_visit" } +swc_ecma_ast = { version = "0.113.0", path = "../swc_ecma_ast" } +swc_ecma_visit = { version = "0.99.0", path = "../swc_ecma_visit" } [target.'cfg(not(any(target_arch = "wasm32", target_arch = "arm")))'.dependencies] stacker = { version = "0.1.15", optional = true } [dev-dependencies] -swc_ecma_parser = { version = "0.143.10", path = "../swc_ecma_parser" } +swc_ecma_parser = { version = "0.144.0", path = "../swc_ecma_parser" } testing = { version = "0.35.21", path = "../testing" } diff --git a/crates/swc_ecma_visit/Cargo.toml b/crates/swc_ecma_visit/Cargo.toml index fccfdbd91c4b..b21c9d3644b7 100644 --- a/crates/swc_ecma_visit/Cargo.toml +++ b/crates/swc_ecma_visit/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_ecma_visit" repository = "https://github.com/swc-project/swc.git" -version = "0.98.7" +version = "0.99.0" [package.metadata.docs.rs] all-features = true @@ -27,5 +27,5 @@ tracing = "0.1.40" swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.20", path = "../swc_common" } -swc_ecma_ast = { version = "0.112.6", path = "../swc_ecma_ast" } +swc_ecma_ast = { version = "0.113.0", path = "../swc_ecma_ast" } swc_visit = { version = "0.5.10", path = "../swc_visit" } diff --git a/crates/swc_ecmascript/Cargo.toml b/crates/swc_ecmascript/Cargo.toml index 666541bffdd4..4258bbaf31c5 100644 --- a/crates/swc_ecmascript/Cargo.toml +++ b/crates/swc_ecmascript/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_ecmascript" repository = "https://github.com/swc-project/swc.git" -version = "0.239.21" +version = "0.240.0" [package.metadata.docs.rs] all-features = true @@ -38,14 +38,14 @@ react = ["swc_ecma_transforms/react"] typescript = ["typescript-parser", "swc_ecma_transforms/typescript"] [dependencies] -swc_ecma_ast = { version = "0.112.6", path = "../swc_ecma_ast" } -swc_ecma_codegen = { version = "0.148.12", path = "../swc_ecma_codegen", optional = true } -swc_ecma_minifier = { version = "0.192.18", path = "../swc_ecma_minifier", optional = true } -swc_ecma_parser = { version = "0.143.10", path = "../swc_ecma_parser", optional = true, default-features = false } -swc_ecma_preset_env = { version = "0.206.17", path = "../swc_ecma_preset_env", optional = true } -swc_ecma_quote = { version = "0.59.13", path = "../swc_ecma_quote", optional = true } -swc_ecma_transforms = { version = "0.229.17", path = "../swc_ecma_transforms", optional = true } -swc_ecma_utils = { version = "0.127.13", path = "../swc_ecma_utils", optional = true } -swc_ecma_visit = { version = "0.98.7", path = "../swc_ecma_visit", optional = true } +swc_ecma_ast = { version = "0.113.0", path = "../swc_ecma_ast" } +swc_ecma_codegen = { version = "0.149.0", path = "../swc_ecma_codegen", optional = true } +swc_ecma_minifier = { version = "0.193.0", path = "../swc_ecma_minifier", optional = true } +swc_ecma_parser = { version = "0.144.0", path = "../swc_ecma_parser", optional = true, default-features = false } +swc_ecma_preset_env = { version = "0.207.0", path = "../swc_ecma_preset_env", optional = true } +swc_ecma_quote = { version = "0.60.0", path = "../swc_ecma_quote", optional = true } +swc_ecma_transforms = { version = "0.230.0", path = "../swc_ecma_transforms", optional = true } +swc_ecma_utils = { version = "0.128.0", path = "../swc_ecma_utils", optional = true } +swc_ecma_visit = { version = "0.99.0", 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 297e1c243660..0b65716b4630 100644 --- a/crates/swc_estree_compat/Cargo.toml +++ b/crates/swc_estree_compat/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_estree_compat" repository = "https://github.com/swc-project/swc.git" -version = "0.198.22" +version = "0.199.0" [package.metadata.docs.rs] all-features = true @@ -29,10 +29,10 @@ swc_common = { version = "0.33.20", path = "../swc_common", features = [ "sourcemap", "tty-emitter", ] } -swc_ecma_ast = { version = "0.112.6", path = "../swc_ecma_ast" } -swc_ecma_parser = { version = "0.143.10", path = "../swc_ecma_parser" } -swc_ecma_utils = { version = "0.127.13", path = "../swc_ecma_utils" } -swc_ecma_visit = { version = "0.98.7", path = "../swc_ecma_visit" } +swc_ecma_ast = { version = "0.113.0", path = "../swc_ecma_ast" } +swc_ecma_parser = { version = "0.144.0", path = "../swc_ecma_parser" } +swc_ecma_utils = { version = "0.128.0", path = "../swc_ecma_utils" } +swc_ecma_visit = { version = "0.99.0", path = "../swc_ecma_visit" } swc_estree_ast = { version = "0.23.19", path = "../swc_estree_ast" } swc_node_comments = { version = "0.20.19", path = "../swc_node_comments/" } @@ -40,10 +40,10 @@ swc_node_comments = { version = "0.20.19", path = "../swc_node_comments/" } criterion = "0.5" pretty_assertions = "1.3" -swc = { version = "0.273.22", path = "../swc" } -swc_ecma_ast = { version = "0.112.6", path = "../swc_ecma_ast" } -swc_ecma_parser = { version = "0.143.10", path = "../swc_ecma_parser" } -swc_ecma_transforms = { version = "0.229.17", path = "../swc_ecma_transforms/" } +swc = { version = "0.274.0", path = "../swc" } +swc_ecma_ast = { version = "0.113.0", path = "../swc_ecma_ast" } +swc_ecma_parser = { version = "0.144.0", path = "../swc_ecma_parser" } +swc_ecma_transforms = { version = "0.230.0", path = "../swc_ecma_transforms/" } testing = { version = "0.35.21", path = "../testing" } walkdir = "2" diff --git a/crates/swc_html/Cargo.toml b/crates/swc_html/Cargo.toml index 7aa45d7fc43d..211ec3e93a83 100644 --- a/crates/swc_html/Cargo.toml +++ b/crates/swc_html/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_html" repository = "https://github.com/swc-project/swc.git" -version = "0.137.18" +version = "0.138.0" [package.metadata.docs.rs] all-features = true @@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"] [dependencies] swc_html_ast = {version = "0.33.19", path = "../swc_html_ast"} swc_html_codegen = {version = "0.42.24", path = "../swc_html_codegen"} -swc_html_minifier = {version = "0.134.17", path = "../swc_html_minifier", optional = true} +swc_html_minifier = {version = "0.135.0", path = "../swc_html_minifier", optional = true} swc_html_parser = {version = "0.39.24", path = "../swc_html_parser"} swc_html_visit = {version = "0.33.19", path = "../swc_html_visit"} diff --git a/crates/swc_html_minifier/Cargo.toml b/crates/swc_html_minifier/Cargo.toml index b0e45651b276..db0d51075428 100644 --- a/crates/swc_html_minifier/Cargo.toml +++ b/crates/swc_html_minifier/Cargo.toml @@ -10,7 +10,7 @@ include = ["Cargo.toml", "src/**/*.rs", "data/**/*.json"] license = "Apache-2.0" name = "swc_html_minifier" repository = "https://github.com/swc-project/swc.git" -version = "0.134.19" +version = "0.135.0" [lib] bench = false @@ -27,16 +27,16 @@ swc_css_ast = { version = "0.140.21", path = "../swc_css_ast" } swc_css_codegen = { version = "0.151.31", path = "../swc_css_codegen" } swc_css_minifier = { version = "0.116.32", path = "../swc_css_minifier" } swc_css_parser = { version = "0.150.30", path = "../swc_css_parser" } -swc_ecma_ast = { version = "0.112.6", path = "../swc_ecma_ast" } -swc_ecma_codegen = { version = "0.148.12", path = "../swc_ecma_codegen", features = [ +swc_ecma_ast = { version = "0.113.0", path = "../swc_ecma_ast" } +swc_ecma_codegen = { version = "0.149.0", path = "../swc_ecma_codegen", features = [ "serde-impl", ] } -swc_ecma_minifier = { version = "0.192.18", path = "../swc_ecma_minifier", features = [ +swc_ecma_minifier = { version = "0.193.0", path = "../swc_ecma_minifier", features = [ "extra-serde", ] } -swc_ecma_parser = { version = "0.143.10", path = "../swc_ecma_parser" } -swc_ecma_transforms_base = { version = "0.137.16", path = "../swc_ecma_transforms_base" } -swc_ecma_visit = { version = "0.98.7", path = "../swc_ecma_visit" } +swc_ecma_parser = { version = "0.144.0", path = "../swc_ecma_parser" } +swc_ecma_transforms_base = { version = "0.138.0", path = "../swc_ecma_transforms_base" } +swc_ecma_visit = { version = "0.99.0", path = "../swc_ecma_visit" } swc_html_ast = { version = "0.33.19", path = "../swc_html_ast" } swc_html_codegen = { version = "0.42.24", path = "../swc_html_codegen" } swc_html_parser = { version = "0.39.24", path = "../swc_html_parser" } diff --git a/crates/swc_node_bundler/Cargo.toml b/crates/swc_node_bundler/Cargo.toml index 1a719787591d..f09edb7c99a0 100644 --- a/crates/swc_node_bundler/Cargo.toml +++ b/crates/swc_node_bundler/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_node_bundler" repository = "https://github.com/swc-project/swc.git" -version = "0.62.24" +version = "0.63.0" [lib] bench = false @@ -29,21 +29,21 @@ serde_json = "1" tracing = "0.1.40" string_enum = { version = "0.4.2", path = "../string_enum" } -swc = { version = "0.273.22", path = "../swc" } +swc = { version = "0.274.0", path = "../swc" } swc_atoms = { version = "0.6.5", path = "../swc_atoms" } -swc_bundler = { version = "0.225.17", path = "../swc_bundler", features = [ +swc_bundler = { version = "0.226.0", path = "../swc_bundler", features = [ "concurrent", ] } swc_common = { version = "0.33.20", path = "../swc_common", features = [ "concurrent", ] } -swc_ecma_ast = { version = "0.112.6", path = "../swc_ecma_ast" } -swc_ecma_codegen = { version = "0.148.12", path = "../swc_ecma_codegen" } +swc_ecma_ast = { version = "0.113.0", path = "../swc_ecma_ast" } +swc_ecma_codegen = { version = "0.149.0", path = "../swc_ecma_codegen" } swc_ecma_loader = { version = "0.45.23", path = "../swc_ecma_loader" } -swc_ecma_parser = { version = "0.143.10", path = "../swc_ecma_parser" } -swc_ecma_transforms = { version = "0.229.17", path = "../swc_ecma_transforms" } -swc_ecma_utils = { version = "0.127.13", path = "../swc_ecma_utils" } -swc_ecma_visit = { version = "0.98.7", path = "../swc_ecma_visit" } +swc_ecma_parser = { version = "0.144.0", path = "../swc_ecma_parser" } +swc_ecma_transforms = { version = "0.230.0", path = "../swc_ecma_transforms" } +swc_ecma_utils = { version = "0.128.0", path = "../swc_ecma_utils" } +swc_ecma_visit = { version = "0.99.0", path = "../swc_ecma_visit" } swc_malloc = { version = "0.5.10", path = "../swc_malloc" } [dev-dependencies] diff --git a/crates/swc_plugin_proxy/Cargo.toml b/crates/swc_plugin_proxy/Cargo.toml index 5a17e22669b4..ca067f18e926 100644 --- a/crates/swc_plugin_proxy/Cargo.toml +++ b/crates/swc_plugin_proxy/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_plugin_proxy" repository = "https://github.com/swc-project/swc.git" -version = "0.41.7" +version = "0.42.0" [lib] bench = false @@ -30,5 +30,5 @@ tracing = "0.1.40" better_scoped_tls = { version = "0.1.1", path = "../better_scoped_tls" } swc_common = { version = "0.33.20", path = "../swc_common" } -swc_ecma_ast = { version = "0.112.6", path = "../swc_ecma_ast" } +swc_ecma_ast = { version = "0.113.0", path = "../swc_ecma_ast" } swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" } diff --git a/crates/swc_plugin_runner/Cargo.toml b/crates/swc_plugin_runner/Cargo.toml index fc6cd21f92d6..ba5e855b5bc5 100644 --- a/crates/swc_plugin_runner/Cargo.toml +++ b/crates/swc_plugin_runner/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_plugin_runner" repository = "https://github.com/swc-project/swc.git" -version = "0.106.16" +version = "0.107.0" [lib] bench = false @@ -63,8 +63,8 @@ swc_common = { version = "0.33.20", path = "../swc_common", features = [ "concurrent", ] } swc_css_ast = { version = "0.140.21", path = "../swc_css_ast", optional = true } -swc_ecma_ast = { version = "0.112.6", path = "../swc_ecma_ast", optional = true } -swc_plugin_proxy = { version = "0.41.6", path = "../swc_plugin_proxy" } +swc_ecma_ast = { version = "0.113.0", path = "../swc_ecma_ast", optional = true } +swc_plugin_proxy = { version = "0.42.0", path = "../swc_plugin_proxy" } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] wasmer-cache = { version = "4.0.0", optional = true } @@ -78,12 +78,12 @@ swc_css_ast = { version = "0.140.21", path = "../swc_css_ast", features = [ "rkyv-impl", ] } swc_css_parser = { version = "0.150.30", path = "../swc_css_parser" } -swc_ecma_ast = { version = "0.112.6", path = "../swc_ecma_ast", features = [ +swc_ecma_ast = { version = "0.113.0", path = "../swc_ecma_ast", features = [ "rkyv-impl", ] } swc_ecma_loader = { version = "0.45.23", path = "../swc_ecma_loader" } -swc_ecma_parser = { version = "0.143.10", path = "../swc_ecma_parser" } -swc_ecma_visit = { version = "0.98.7", path = "../swc_ecma_visit" } +swc_ecma_parser = { version = "0.144.0", path = "../swc_ecma_parser" } +swc_ecma_visit = { version = "0.99.0", path = "../swc_ecma_visit" } swc_malloc = { version = "0.5.10", path = "../swc_malloc" } testing = { version = "0.35.21", path = "../testing" } tokio = { version = "1", features = ["rt"] }