From 52b6fd8808aa8cfd050f285ad030d9a77499c7e7 Mon Sep 17 00:00:00 2001 From: SWC Bot Date: Tue, 13 Feb 2024 04:34:24 +0000 Subject: [PATCH] chore: Bump crates --- CHANGELOG.md | 6 +++--- Cargo.lock | 4 ++-- crates/swc_bundler/Cargo.toml | 2 +- crates/swc_core/Cargo.toml | 4 ++-- crates/swc_ecma_transforms/Cargo.toml | 4 ++-- crates/swc_ecma_transforms_module/Cargo.toml | 2 +- crates/swc_ecma_transforms_optimization/Cargo.toml | 4 ++-- crates/swc_ecma_transforms_react/Cargo.toml | 4 ++-- crates/swc_ecma_transforms_typescript/Cargo.toml | 2 +- 9 files changed, 16 insertions(+), 16 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3030b27d95e5..7e75845f5abe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -68,6 +68,9 @@ +- **(cargo)** Update `rustc` to `nightly-2024-02-06` ([#8618](https://github.com/swc-project/swc/issues/8618)) ([6726b63](https://github.com/swc-project/swc/commit/6726b631e68cf7f14612e046c8cf057411e4a3c2)) + + - **(plugin)** Update `wasmer` to `v4.2.5` ([#8624](https://github.com/swc-project/swc/issues/8624)) ([4e0d240](https://github.com/swc-project/swc/commit/4e0d24089588da8952c6986f1bfcc47bcd9f84a2)) ## [1.4.0] - 2024-02-05 @@ -1449,9 +1452,6 @@ -- **(es/minifier)** Fix a bug about `eval` of name mangler ([#7615](https://github.com/swc-project/swc/issues/7615)) ([6be1f70](https://github.com/swc-project/swc/commit/6be1f7075d8d14cc56b05079ee134153ab65c6fc)) - - - **(es/minifier)** Do not reuse identifier used for import bindings ([#7639](https://github.com/swc-project/swc/issues/7639)) ([a65be14](https://github.com/swc-project/swc/commit/a65be14a00f41e9b0b4439c31b49febeefd1f845)) ### Buiild diff --git a/Cargo.lock b/Cargo.lock index ee2fe7974258..2415da0a93ad 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4685,7 +4685,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms_module" -version = "0.180.3" +version = "0.180.4" dependencies = [ "Inflector", "anyhow", @@ -4768,7 +4768,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms_react" -version = "0.183.3" +version = "0.183.4" dependencies = [ "base64", "dashmap", diff --git a/crates/swc_bundler/Cargo.toml b/crates/swc_bundler/Cargo.toml index 743b3c9ee2e4..ba81f899687a 100644 --- a/crates/swc_bundler/Cargo.toml +++ b/crates/swc_bundler/Cargo.toml @@ -67,7 +67,7 @@ swc_ecma_minifier = { version = "0.192.4", path = "../swc_ecma_minifier", featur "concurrent", ] } swc_ecma_transforms_proposal = { version = "0.171.4", path = "../swc_ecma_transforms_proposal" } -swc_ecma_transforms_react = { version = "0.183.3", path = "../swc_ecma_transforms_react" } +swc_ecma_transforms_react = { version = "0.183.4", path = "../swc_ecma_transforms_react" } swc_ecma_transforms_typescript = { version = "0.188.4", path = "../swc_ecma_transforms_typescript" } swc_malloc = { version = "0.5.10", path = "../swc_malloc" } testing = { version = "0.35.18", path = "../testing" } diff --git a/crates/swc_core/Cargo.toml b/crates/swc_core/Cargo.toml index d475080034a9..3d556f8eedbf 100644 --- a/crates/swc_core/Cargo.toml +++ b/crates/swc_core/Cargo.toml @@ -348,10 +348,10 @@ swc_ecma_preset_env = { optional = true, version = "0.206.4", path swc_ecma_quote_macros = { optional = true, version = "0.54.6", path = "../swc_ecma_quote_macros" } swc_ecma_transforms_base = { optional = true, version = "0.137.3", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_compat = { optional = true, version = "0.163.3", path = "../swc_ecma_transforms_compat" } -swc_ecma_transforms_module = { optional = true, version = "0.180.3", path = "../swc_ecma_transforms_module" } +swc_ecma_transforms_module = { optional = true, version = "0.180.4", path = "../swc_ecma_transforms_module" } swc_ecma_transforms_optimization = { optional = true, version = "0.198.4", path = "../swc_ecma_transforms_optimization" } swc_ecma_transforms_proposal = { optional = true, version = "0.171.4", path = "../swc_ecma_transforms_proposal" } -swc_ecma_transforms_react = { optional = true, version = "0.183.3", path = "../swc_ecma_transforms_react" } +swc_ecma_transforms_react = { optional = true, version = "0.183.4", path = "../swc_ecma_transforms_react" } swc_ecma_transforms_testing = { optional = true, version = "0.140.3", path = "../swc_ecma_transforms_testing" } swc_ecma_transforms_typescript = { optional = true, version = "0.188.4", path = "../swc_ecma_transforms_typescript" } swc_ecma_usage_analyzer = { optional = true, version = "0.23.3", path = "../swc_ecma_usage_analyzer" } diff --git a/crates/swc_ecma_transforms/Cargo.toml b/crates/swc_ecma_transforms/Cargo.toml index 26cbb5824a90..e1de68ed239c 100644 --- a/crates/swc_ecma_transforms/Cargo.toml +++ b/crates/swc_ecma_transforms/Cargo.toml @@ -36,10 +36,10 @@ swc_common = { version = "0.33.17", path = "../swc_common" swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" } swc_ecma_transforms_base = { version = "0.137.3", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_compat = { version = "0.163.3", path = "../swc_ecma_transforms_compat", optional = true } -swc_ecma_transforms_module = { version = "0.180.3", path = "../swc_ecma_transforms_module", optional = true } +swc_ecma_transforms_module = { version = "0.180.4", path = "../swc_ecma_transforms_module", optional = true } swc_ecma_transforms_optimization = { version = "0.198.4", path = "../swc_ecma_transforms_optimization", optional = true } swc_ecma_transforms_proposal = { version = "0.171.4", path = "../swc_ecma_transforms_proposal", optional = true } -swc_ecma_transforms_react = { version = "0.183.3", path = "../swc_ecma_transforms_react", optional = true } +swc_ecma_transforms_react = { version = "0.183.4", path = "../swc_ecma_transforms_react", optional = true } swc_ecma_transforms_typescript = { version = "0.188.4", path = "../swc_ecma_transforms_typescript", optional = true } swc_ecma_utils = { version = "0.127.3", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } diff --git a/crates/swc_ecma_transforms_module/Cargo.toml b/crates/swc_ecma_transforms_module/Cargo.toml index 35a577b534fc..212e482ac880 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.3" +version = "0.180.4" [lib] bench = false diff --git a/crates/swc_ecma_transforms_optimization/Cargo.toml b/crates/swc_ecma_transforms_optimization/Cargo.toml index 1238a26d403e..deebd40a6b31 100644 --- a/crates/swc_ecma_transforms_optimization/Cargo.toml +++ b/crates/swc_ecma_transforms_optimization/Cargo.toml @@ -43,9 +43,9 @@ swc_fast_graph = { version = "0.21.17", path = "../swc_fast_graph" } [dev-dependencies] swc_ecma_transforms_compat = { version = "0.163.3", path = "../swc_ecma_transforms_compat" } -swc_ecma_transforms_module = { version = "0.180.3", path = "../swc_ecma_transforms_module" } +swc_ecma_transforms_module = { version = "0.180.4", path = "../swc_ecma_transforms_module" } swc_ecma_transforms_proposal = { version = "0.171.4", path = "../swc_ecma_transforms_proposal" } -swc_ecma_transforms_react = { version = "0.183.3", path = "../swc_ecma_transforms_react" } +swc_ecma_transforms_react = { version = "0.183.4", path = "../swc_ecma_transforms_react" } swc_ecma_transforms_testing = { version = "0.140.3", path = "../swc_ecma_transforms_testing" } swc_ecma_transforms_typescript = { version = "0.188.4", path = "../swc_ecma_transforms_typescript" } testing = { version = "0.35.18", path = "../testing" } diff --git a/crates/swc_ecma_transforms_react/Cargo.toml b/crates/swc_ecma_transforms_react/Cargo.toml index 636671cd0877..db9d80c55ba0 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.3" +version = "0.183.4" [lib] bench = false @@ -40,6 +40,6 @@ swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" } [dev-dependencies] swc_ecma_codegen = { version = "0.148.3", path = "../swc_ecma_codegen/" } swc_ecma_transforms_compat = { version = "0.163.3", path = "../swc_ecma_transforms_compat/" } -swc_ecma_transforms_module = { version = "0.180.3", path = "../swc_ecma_transforms_module" } +swc_ecma_transforms_module = { version = "0.180.4", path = "../swc_ecma_transforms_module" } swc_ecma_transforms_testing = { version = "0.140.3", path = "../swc_ecma_transforms_testing" } testing = { version = "0.35.18", path = "../testing" } diff --git a/crates/swc_ecma_transforms_typescript/Cargo.toml b/crates/swc_ecma_transforms_typescript/Cargo.toml index ef6a0eb68306..0141deb0288c 100644 --- a/crates/swc_ecma_transforms_typescript/Cargo.toml +++ b/crates/swc_ecma_transforms_typescript/Cargo.toml @@ -20,7 +20,7 @@ swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.17", path = "../swc_common" } swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" } swc_ecma_transforms_base = { version = "0.137.3", path = "../swc_ecma_transforms_base" } -swc_ecma_transforms_react = { version = "0.183.3", path = "../swc_ecma_transforms_react" } +swc_ecma_transforms_react = { version = "0.183.4", path = "../swc_ecma_transforms_react" } swc_ecma_utils = { version = "0.127.3", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" }