From 487992d9fa4b2773e4773838196fbdb9667baea7 Mon Sep 17 00:00:00 2001 From: SWC Bot Date: Tue, 9 Apr 2024 06:24:27 +0000 Subject: [PATCH] chore: Bump crates --- CHANGELOG.md | 9 +++------ Cargo.lock | 4 ++-- crates/swc_core/Cargo.toml | 2 +- crates/swc_ecma_minifier/Cargo.toml | 2 +- 4 files changed, 7 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cc9df346f7f5..c5cd4464b7f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,9 @@ - **(es/minifier)** Respect `top_retain` for top-level functions ([#8814](https://github.com/swc-project/swc/issues/8814)) ([811308c](https://github.com/swc-project/swc/commit/811308c3526003608e61c559f43408f6065ff9ee)) +- **(es/minifier)** Abort IIFE invoker in function parameters ([#8828](https://github.com/swc-project/swc/issues/8828)) ([ebb68db](https://github.com/swc-project/swc/commit/ebb68db24d7287ca12d85a68a34aabfa660eeae0)) + + - **(es/module)** Respect `module.resolveFully` in more cases ([#8820](https://github.com/swc-project/swc/issues/8820)) ([e1f7704](https://github.com/swc-project/swc/commit/e1f770463d1f0402468e07fca9c637e3823bb2d1)) @@ -1367,16 +1370,10 @@ - **(es/compat)** Handle single expression case in static block ([#7944](https://github.com/swc-project/swc/issues/7944)) ([a80aec4](https://github.com/swc-project/swc/commit/a80aec47efcff953d3408cf6910b66c2312f3006)) - -- **(es/minifier)** Parse a file as a module only if `opts.module` is `true` ([#7943](https://github.com/swc-project/swc/issues/7943)) ([b87ac64](https://github.com/swc-project/swc/commit/b87ac646f81f181b574da798b3e613a3cfa4cad5)) - ### Features -- **(es/compat)** Support `pure_getters` for `optional_chaining` ([#7933](https://github.com/swc-project/swc/issues/7933)) ([c091c5e](https://github.com/swc-project/swc/commit/c091c5e295ec2ef704be1461f6587ae85051b543)) - - - **(es/module)** Add an option to make resolver fully resolve `index.js` ([#7945](https://github.com/swc-project/swc/issues/7945)) ([7e8d72d](https://github.com/swc-project/swc/commit/7e8d72d03b312b7a48c17afa8d2a4d7f4e802a6a)) diff --git a/Cargo.lock b/Cargo.lock index 24aa0f89a992..5996e3a40b9a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3935,7 +3935,7 @@ dependencies = [ [[package]] name = "swc_core" -version = "0.90.29" +version = "0.90.30" dependencies = [ "anyhow", "binding_macros", @@ -4468,7 +4468,7 @@ dependencies = [ [[package]] name = "swc_ecma_minifier" -version = "0.192.21" +version = "0.192.22" dependencies = [ "ansi_term", "anyhow", diff --git a/crates/swc_core/Cargo.toml b/crates/swc_core/Cargo.toml index 371bb437f551..b5c2df3ec71d 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.29" +version = "0.90.30" [package.metadata.docs.rs] features = [ "allocator_node", diff --git a/crates/swc_ecma_minifier/Cargo.toml b/crates/swc_ecma_minifier/Cargo.toml index c09c4bd867af..a7e3c6e9dc98 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.21" +version = "0.192.22" [package.metadata.docs.rs] all-features = true