From 1b4c025e2e26fb3c201ca262570970b7fbf135a9 Mon Sep 17 00:00:00 2001 From: SWC Bot Date: Tue, 21 Jan 2025 12:29:39 +0000 Subject: [PATCH] chore: Publish crates with `swc_core` `v10.6.1` --- .changeset/selfish-coats-shave.md | 6 ------ .changeset/six-rats-fetch.md | 6 ------ Cargo.lock | 4 ++-- crates/dbg-swc/Cargo.toml | 2 +- crates/swc/Cargo.toml | 2 +- crates/swc_bundler/Cargo.toml | 2 +- crates/swc_cli_impl/Cargo.toml | 2 +- crates/swc_compiler_base/Cargo.toml | 2 +- crates/swc_core/Cargo.toml | 4 ++-- crates/swc_ecma_minifier/Cargo.toml | 2 +- crates/swc_ecmascript/Cargo.toml | 2 +- crates/swc_html_minifier/Cargo.toml | 2 +- 12 files changed, 12 insertions(+), 24 deletions(-) delete mode 100644 .changeset/selfish-coats-shave.md delete mode 100644 .changeset/six-rats-fetch.md diff --git a/.changeset/selfish-coats-shave.md b/.changeset/selfish-coats-shave.md deleted file mode 100644 index fd38e86a0753..000000000000 --- a/.changeset/selfish-coats-shave.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -swc_core: patch -swc_ecma_minifier: patch ---- - -perf(es/minifier): Invert cache to be really a cache diff --git a/.changeset/six-rats-fetch.md b/.changeset/six-rats-fetch.md deleted file mode 100644 index 899d4bf8daa2..000000000000 --- a/.changeset/six-rats-fetch.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -swc_core: patch -swc_ecma_minifier: patch ---- - -perf(es/minifier): Cache `var_or_default` calls diff --git a/Cargo.lock b/Cargo.lock index b48d6e120130..5ac7b3b27972 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4680,7 +4680,7 @@ dependencies = [ [[package]] name = "swc_core" -version = "10.6.0" +version = "10.6.1" dependencies = [ "anyhow", "binding_macros", @@ -5233,7 +5233,7 @@ dependencies = [ [[package]] name = "swc_ecma_minifier" -version = "7.4.0" +version = "7.4.1" dependencies = [ "ansi_term", "anyhow", diff --git a/crates/dbg-swc/Cargo.toml b/crates/dbg-swc/Cargo.toml index c860b71eeee7..cbbb1be6b13e 100644 --- a/crates/dbg-swc/Cargo.toml +++ b/crates/dbg-swc/Cargo.toml @@ -33,7 +33,7 @@ swc_common = { version = "5.0.0", features = [ ], path = "../swc_common" } swc_ecma_ast = { version = "5.0.3", path = "../swc_ecma_ast" } swc_ecma_codegen = { version = "5.1.0", path = "../swc_ecma_codegen" } -swc_ecma_minifier = { version = "7.4.0", path = "../swc_ecma_minifier", features = [ +swc_ecma_minifier = { version = "7.4.1", path = "../swc_ecma_minifier", features = [ "concurrent", ] } swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" } diff --git a/crates/swc/Cargo.toml b/crates/swc/Cargo.toml index ce8dce6603f6..2c507ccf1761 100644 --- a/crates/swc/Cargo.toml +++ b/crates/swc/Cargo.toml @@ -88,7 +88,7 @@ swc_ecma_loader = { version = "5.0.0", path = "../swc_ecma_loader", features = [ "node", "tsc", ] } -swc_ecma_minifier = { version = "7.4.0", path = "../swc_ecma_minifier" } +swc_ecma_minifier = { version = "7.4.1", path = "../swc_ecma_minifier" } swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" } swc_ecma_preset_env = { version = "9.0.0", path = "../swc_ecma_preset_env" } swc_ecma_transforms = { version = "9.0.0", path = "../swc_ecma_transforms", features = [ diff --git a/crates/swc_bundler/Cargo.toml b/crates/swc_bundler/Cargo.toml index 71b43696667a..59ad52d55533 100644 --- a/crates/swc_bundler/Cargo.toml +++ b/crates/swc_bundler/Cargo.toml @@ -63,7 +63,7 @@ swc_ecma_loader = { version = "5.0.0", path = "../swc_ecma_loader", features = [ "node", "cache", ] } -swc_ecma_minifier = { version = "7.4.0", path = "../swc_ecma_minifier", features = [ +swc_ecma_minifier = { version = "7.4.1", path = "../swc_ecma_minifier", features = [ "concurrent", ] } swc_ecma_transforms_proposal = { version = "7.0.1", path = "../swc_ecma_transforms_proposal" } diff --git a/crates/swc_cli_impl/Cargo.toml b/crates/swc_cli_impl/Cargo.toml index 45c80d53f76c..bb61c77d2e54 100644 --- a/crates/swc_cli_impl/Cargo.toml +++ b/crates/swc_cli_impl/Cargo.toml @@ -39,7 +39,7 @@ tracing-futures = { workspace = true } tracing-subscriber = { workspace = true, features = ["env-filter"] } walkdir = { workspace = true } -swc_core = { version = "10.6.0", features = [ +swc_core = { version = "10.6.1", features = [ "trace_macro", "common_concurrent", "base_concurrent", diff --git a/crates/swc_compiler_base/Cargo.toml b/crates/swc_compiler_base/Cargo.toml index ea1274f7f1cc..8a104a4bed77 100644 --- a/crates/swc_compiler_base/Cargo.toml +++ b/crates/swc_compiler_base/Cargo.toml @@ -30,7 +30,7 @@ swc_common = { version = "5.0.0", path = "../swc_common", features = [ swc_config = { version = "1.0.0", path = "../swc_config" } swc_ecma_ast = { version = "5.0.3", path = "../swc_ecma_ast" } swc_ecma_codegen = { version = "5.1.0", path = "../swc_ecma_codegen" } -swc_ecma_minifier = { version = "7.4.0", path = "../swc_ecma_minifier" } +swc_ecma_minifier = { version = "7.4.1", path = "../swc_ecma_minifier" } swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" } swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" } swc_timer = { version = "1.0.0", path = "../swc_timer" } diff --git a/crates/swc_core/Cargo.toml b/crates/swc_core/Cargo.toml index 230a0f5bc7bb..1b45caeb10c4 100644 --- a/crates/swc_core/Cargo.toml +++ b/crates/swc_core/Cargo.toml @@ -6,7 +6,7 @@ edition = { workspace = true } license = { workspace = true } name = "swc_core" repository = { workspace = true } -version = "10.6.0" +version = "10.6.1" [package.metadata.docs.rs] features = [ "allocator_node", @@ -357,7 +357,7 @@ swc_ecma_ast = { optional = true, version = "5.0.3", path = swc_ecma_codegen = { optional = true, version = "5.1.0", path = "../swc_ecma_codegen" } swc_ecma_lints = { optional = true, version = "7.0.1", path = "../swc_ecma_lints" } swc_ecma_loader = { optional = true, version = "5.0.0", path = "../swc_ecma_loader" } -swc_ecma_minifier = { optional = true, version = "7.4.0", path = "../swc_ecma_minifier" } +swc_ecma_minifier = { optional = true, version = "7.4.1", path = "../swc_ecma_minifier" } swc_ecma_parser = { optional = true, version = "6.0.2", path = "../swc_ecma_parser" } swc_ecma_preset_env = { optional = true, version = "9.0.0", path = "../swc_ecma_preset_env" } swc_ecma_quote_macros = { optional = true, version = "6.0.0", path = "../swc_ecma_quote_macros" } diff --git a/crates/swc_ecma_minifier/Cargo.toml b/crates/swc_ecma_minifier/Cargo.toml index 8286b2bb9ddf..df275034b939 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 = { workspace = true } name = "swc_ecma_minifier" repository = { workspace = true } -version = "7.4.0" +version = "7.4.1" [package.metadata.docs.rs] all-features = true diff --git a/crates/swc_ecmascript/Cargo.toml b/crates/swc_ecmascript/Cargo.toml index 1c17dd22a236..d1b66ba73ac1 100644 --- a/crates/swc_ecmascript/Cargo.toml +++ b/crates/swc_ecmascript/Cargo.toml @@ -40,7 +40,7 @@ typescript = ["typescript-parser", "swc_ecma_transforms/typescript"] [dependencies] swc_ecma_ast = { version = "5.0.3", path = "../swc_ecma_ast" } swc_ecma_codegen = { version = "5.1.0", path = "../swc_ecma_codegen", optional = true } -swc_ecma_minifier = { version = "7.4.0", path = "../swc_ecma_minifier", optional = true } +swc_ecma_minifier = { version = "7.4.1", path = "../swc_ecma_minifier", optional = true } swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser", optional = true, default-features = false } swc_ecma_preset_env = { version = "9.0.0", path = "../swc_ecma_preset_env", optional = true } swc_ecma_quote = { version = "6.0.0", path = "../swc_ecma_quote", optional = true } diff --git a/crates/swc_html_minifier/Cargo.toml b/crates/swc_html_minifier/Cargo.toml index 06eb91af1412..4880518184ce 100644 --- a/crates/swc_html_minifier/Cargo.toml +++ b/crates/swc_html_minifier/Cargo.toml @@ -36,7 +36,7 @@ swc_ecma_ast = { version = "5.0.3", path = "../swc_ecma_ast" } swc_ecma_codegen = { version = "5.1.0", path = "../swc_ecma_codegen", features = [ "serde-impl", ] } -swc_ecma_minifier = { version = "7.4.0", path = "../swc_ecma_minifier", features = [ +swc_ecma_minifier = { version = "7.4.1", path = "../swc_ecma_minifier", features = [ "extra-serde", ] } swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" }