From 2b368f67311613b60536705db05ca831f129cc2f Mon Sep 17 00:00:00 2001 From: SWC Bot Date: Sun, 19 Nov 2023 06:35:42 +0000 Subject: [PATCH] chore: Publish crates --- CHANGELOG.md | 80 +++++++++++-------- Cargo.lock | 36 ++++----- crates/binding_macros/Cargo.toml | 6 +- crates/dbg-swc/Cargo.toml | 4 +- crates/swc/Cargo.toml | 12 +-- crates/swc_bundler/Cargo.toml | 10 +-- crates/swc_cli_impl/Cargo.toml | 4 +- crates/swc_compiler_base/Cargo.toml | 4 +- crates/swc_core/Cargo.toml | 20 ++--- crates/swc_ecma_minifier/Cargo.toml | 4 +- crates/swc_ecma_preset_env/Cargo.toml | 4 +- crates/swc_ecma_transforms/Cargo.toml | 8 +- .../Cargo.toml | 6 +- .../swc_ecma_transforms_proposal/Cargo.toml | 2 +- .../swc_ecma_transforms_typescript/Cargo.toml | 4 +- crates/swc_ecmascript/Cargo.toml | 8 +- crates/swc_estree_compat/Cargo.toml | 6 +- crates/swc_html/Cargo.toml | 4 +- crates/swc_html_minifier/Cargo.toml | 4 +- crates/swc_node_bundler/Cargo.toml | 8 +- 20 files changed, 124 insertions(+), 110 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 00496c928fa..fab902dafb4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,12 +5,6 @@ -- **(css/modules)** Allow out-of-order class names for `composes` ([#8218](https://github.com/swc-project/swc/issues/8218)) ([aeb9caf](https://github.com/swc-project/swc/commit/aeb9cafd11c56d9dce41372211d90a3edb4d1848)) - - -- **(css/modules)** Fix handling of `:global()` selector ([#8219](https://github.com/swc-project/swc/issues/8219)) ([02cd7c2](https://github.com/swc-project/swc/commit/02cd7c2608758476545aadf62e01f2d74ed486f2)) - - - **(es/codegen)** Check for trailing comments while emitting an arrow ([#8257](https://github.com/swc-project/swc/issues/8257)) ([0faa2c4](https://github.com/swc-project/swc/commit/0faa2c4a013abf71b5689279b454f86586d21c93)) @@ -52,18 +46,62 @@ - **(es/parser)** Fix ASI hazard of `static` ([#8262](https://github.com/swc-project/swc/issues/8262)) ([c128153](https://github.com/swc-project/swc/commit/c1281534b65d1d7f0069c04d35c1eb29f08e9a14)) + +- **(es/proposal)** Improve resolving of `design:returntype` ([#8303](https://github.com/swc-project/swc/issues/8303)) ([fab51e1](https://github.com/swc-project/swc/commit/fab51e18433d85f29d720ef11371411fa4ecf623)) + ### Features -- **(es/codegen)** Respect `ascii_only: false` for `StrLit` ([#8217](https://github.com/swc-project/swc/issues/8217)) ([1a26be2](https://github.com/swc-project/swc/commit/1a26be2a271437894b1cda86c4707014e684b5ba)) - - - **(es/minifier)** Swap bin expr to save paren ([#8277](https://github.com/swc-project/swc/issues/8277)) ([65c3d0e](https://github.com/swc-project/swc/commit/65c3d0e3f4ec4b447e6d36f31eb40bdafdf65db7)) - **(es/minifier)** Support `format.inline_script` ([#8252](https://github.com/swc-project/swc/issues/8252)) ([f059270](https://github.com/swc-project/swc/commit/f059270348a7ee26ee8ed2d185ba71d166f43e14)) +### Performance + + + +- **(css/parser)** Use `AtomStoreCell` ([#8247](https://github.com/swc-project/swc/issues/8247)) ([302954e](https://github.com/swc-project/swc/commit/302954e4e54b7190c88667534c2dd6105f744f90)) + + +- **(es/minifier)** Improve `format.inline_script` ([#8292](https://github.com/swc-project/swc/issues/8292)) ([7d1836d](https://github.com/swc-project/swc/commit/7d1836de3fd96786351f5ae30c2b0e7bbda2fa55)) + +### Refactor + + + +- **(swc_node_base)** Rename to `swc_malloc` ([#8272](https://github.com/swc-project/swc/issues/8272)) ([9a0572b](https://github.com/swc-project/swc/commit/9a0572b9680e824ff904d7563167faa84aab47b5)) + + +- Remove `swc_ecma_dep_graph` ([#8290](https://github.com/swc-project/swc/issues/8290)) ([7bbe5e6](https://github.com/swc-project/swc/commit/7bbe5e67d9a4316f47158bf717f8dfa86236b41b)) + +### Build + + + +- **(common)** Remove dependency on `string-cache` ([#8291](https://github.com/swc-project/swc/issues/8291)) ([66a4d37](https://github.com/swc-project/swc/commit/66a4d370314d45b5d4a0117401002ac43dbcba0a)) + + +- **(es)** Remove duplicate `phf` dependency ([#8294](https://github.com/swc-project/swc/issues/8294)) ([25ac679](https://github.com/swc-project/swc/commit/25ac679bd3906c09212134859df9c75f38018822)) + +## [1.3.97] - 2023-11-09 + +### Bug Fixes + + + +- **(css/modules)** Allow out-of-order class names for `composes` ([#8218](https://github.com/swc-project/swc/issues/8218)) ([aeb9caf](https://github.com/swc-project/swc/commit/aeb9cafd11c56d9dce41372211d90a3edb4d1848)) + + +- **(css/modules)** Fix handling of `:global()` selector ([#8219](https://github.com/swc-project/swc/issues/8219)) ([02cd7c2](https://github.com/swc-project/swc/commit/02cd7c2608758476545aadf62e01f2d74ed486f2)) + +### Features + + + +- **(es/codegen)** Respect `ascii_only: false` for `StrLit` ([#8217](https://github.com/swc-project/swc/issues/8217)) ([1a26be2](https://github.com/swc-project/swc/commit/1a26be2a271437894b1cda86c4707014e684b5ba)) + ### Miscellaneous Tasks @@ -86,9 +124,6 @@ - **(css/parser)** Use `AtomStore` ([#8238](https://github.com/swc-project/swc/issues/8238)) ([a3c03b3](https://github.com/swc-project/swc/commit/a3c03b30fb3aa19cb590addbf47b0583d1b05dad)) -- **(css/parser)** Use `AtomStoreCell` ([#8247](https://github.com/swc-project/swc/issues/8247)) ([302954e](https://github.com/swc-project/swc/commit/302954e4e54b7190c88667534c2dd6105f744f90)) - - - **(es)** Delete useless partition and extend in comments ([#8214](https://github.com/swc-project/swc/issues/8214)) ([67e2c4a](https://github.com/swc-project/swc/commit/67e2c4a4fd17436732099422c25d1c0d82f815dd)) @@ -98,9 +133,6 @@ - **(es/minifier)** Remove needless operations for char freq analysis ([#8222](https://github.com/swc-project/swc/issues/8222)) ([b745ed7](https://github.com/swc-project/swc/commit/b745ed7ac8a87582d43fb2f975f53ad96ed3477b)) -- **(es/minifier)** Improve `format.inline_script` ([#8292](https://github.com/swc-project/swc/issues/8292)) ([7d1836d](https://github.com/swc-project/swc/commit/7d1836de3fd96786351f5ae30c2b0e7bbda2fa55)) - - - **(es/parser)** Remove needless `strcmp` ops ([#8223](https://github.com/swc-project/swc/issues/8223)) ([3833cf4](https://github.com/swc-project/swc/commit/3833cf4e55a27982c930c18c901a9b06e60f92fc)) @@ -118,12 +150,6 @@ - **(atoms)** Improve APIs ([#8249](https://github.com/swc-project/swc/issues/8249)) ([9a4bad4](https://github.com/swc-project/swc/commit/9a4bad4e9ec67a09761398eae5e6bb37e6d0d94f)) - -- **(swc_node_base)** Rename to `swc_malloc` ([#8272](https://github.com/swc-project/swc/issues/8272)) ([9a0572b](https://github.com/swc-project/swc/commit/9a0572b9680e824ff904d7563167faa84aab47b5)) - - -- Remove `swc_ecma_dep_graph` ([#8290](https://github.com/swc-project/swc/issues/8290)) ([7bbe5e6](https://github.com/swc-project/swc/commit/7bbe5e67d9a4316f47158bf717f8dfa86236b41b)) - ### Build @@ -131,12 +157,6 @@ - **(cargo)** Update rustc to `nightly-2023-11-04` ([#8221](https://github.com/swc-project/swc/issues/8221)) ([14ea705](https://github.com/swc-project/swc/commit/14ea705f272968cba65399271a62e56a9943dc72)) -- **(common)** Remove dependency on `string-cache` ([#8291](https://github.com/swc-project/swc/issues/8291)) ([66a4d37](https://github.com/swc-project/swc/commit/66a4d370314d45b5d4a0117401002ac43dbcba0a)) - - -- **(es)** Remove duplicate `phf` dependency ([#8294](https://github.com/swc-project/swc/issues/8294)) ([25ac679](https://github.com/swc-project/swc/commit/25ac679bd3906c09212134859df9c75f38018822)) - - - **(preset-env/base)** Upgrade `browserslist-rs` to `v0.13.0` ([#8229](https://github.com/swc-project/swc/issues/8229)) ([f9f305c](https://github.com/swc-project/swc/commit/f9f305cc5faa79dd13bfa5763c6250b23a2a91e3)) ## [1.3.96] - 2023-11-03 @@ -1660,12 +1680,6 @@ ## [1.3.49] - 2023-04-10 -### Features - - - -- **(plugin/runner)** Update `wasmer` to `v3` ([#7197](https://github.com/swc-project/swc/issues/7197)) ([56bdacc](https://github.com/swc-project/swc/commit/56bdacc72df967bc613c5b067cf773f39c4bce00)) - ### Refactor diff --git a/Cargo.lock b/Cargo.lock index 6c170fdb705..4e2a2035729 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -284,7 +284,7 @@ dependencies = [ [[package]] name = "binding_macros" -version = "0.60.66" +version = "0.60.67" dependencies = [ "anyhow", "console_error_panic_hook", @@ -1053,7 +1053,7 @@ checksum = "23d8666cb01533c39dde32bcbab8e227b4ed6679b2c925eba05feabea39508fb" [[package]] name = "dbg-swc" -version = "0.89.64" +version = "0.89.65" dependencies = [ "anyhow", "clap 3.2.25", @@ -3696,7 +3696,7 @@ dependencies = [ [[package]] name = "swc" -version = "0.269.59" +version = "0.269.60" dependencies = [ "ansi_term", "anyhow", @@ -3765,7 +3765,7 @@ dependencies = [ [[package]] name = "swc_bundler" -version = "0.222.53" +version = "0.222.54" dependencies = [ "anyhow", "crc", @@ -3820,7 +3820,7 @@ dependencies = [ [[package]] name = "swc_cli_impl" -version = "0.4.66" +version = "0.4.67" dependencies = [ "anyhow", "atty", @@ -3877,7 +3877,7 @@ dependencies = [ [[package]] name = "swc_compiler_base" -version = "0.3.61" +version = "0.3.62" dependencies = [ "anyhow", "base64 0.13.1", @@ -3920,7 +3920,7 @@ dependencies = [ [[package]] name = "swc_core" -version = "0.86.66" +version = "0.86.67" dependencies = [ "anyhow", "binding_macros", @@ -4453,7 +4453,7 @@ dependencies = [ [[package]] name = "swc_ecma_minifier" -version = "0.189.55" +version = "0.189.56" dependencies = [ "ansi_term", "anyhow", @@ -4522,7 +4522,7 @@ dependencies = [ [[package]] name = "swc_ecma_preset_env" -version = "0.203.46" +version = "0.203.47" dependencies = [ "anyhow", "criterion", @@ -4588,7 +4588,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms" -version = "0.226.46" +version = "0.226.47" dependencies = [ "pretty_assertions", "sourcemap", @@ -4731,7 +4731,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms_optimization" -version = "0.195.46" +version = "0.195.47" dependencies = [ "dashmap", "indexmap 1.9.3", @@ -4761,7 +4761,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms_proposal" -version = "0.168.46" +version = "0.168.47" dependencies = [ "either", "rustc-hash", @@ -4837,7 +4837,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms_typescript" -version = "0.185.44" +version = "0.185.45" dependencies = [ "criterion", "ryu-js", @@ -4906,7 +4906,7 @@ dependencies = [ [[package]] name = "swc_ecmascript" -version = "0.236.62" +version = "0.236.63" dependencies = [ "swc_ecma_ast", "swc_ecma_codegen", @@ -4953,7 +4953,7 @@ dependencies = [ [[package]] name = "swc_estree_compat" -version = "0.194.64" +version = "0.194.65" dependencies = [ "ahash 0.8.5", "anyhow", @@ -5001,7 +5001,7 @@ dependencies = [ [[package]] name = "swc_html" -version = "0.134.61" +version = "0.134.62" dependencies = [ "swc_html_ast", "swc_html_codegen", @@ -5052,7 +5052,7 @@ dependencies = [ [[package]] name = "swc_html_minifier" -version = "0.131.61" +version = "0.131.62" dependencies = [ "criterion", "once_cell", @@ -5138,7 +5138,7 @@ dependencies = [ [[package]] name = "swc_node_bundler" -version = "0.58.66" +version = "0.58.67" dependencies = [ "anyhow", "dashmap", diff --git a/crates/binding_macros/Cargo.toml b/crates/binding_macros/Cargo.toml index 137252c04f5..b6df900887a 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.60.66" +version = "0.60.67" [lib] bench = false @@ -33,10 +33,10 @@ binding_wasm = [ [dependencies] # Common deps for the SWC imports -swc = { optional = true, version = "0.269.59", path = "../swc" } +swc = { optional = true, version = "0.269.60", path = "../swc" } swc_common = { optional = true, version = "0.33.9", path = "../swc_common" } swc_ecma_ast = { optional = true, version = "0.110.10", path = "../swc_ecma_ast" } -swc_ecma_transforms = { optional = true, version = "0.226.46", path = "../swc_ecma_transforms" } +swc_ecma_transforms = { optional = true, version = "0.226.47", path = "../swc_ecma_transforms" } swc_ecma_visit = { optional = true, version = "0.96.10", path = "../swc_ecma_visit" } # Optional deps for the wasm binding macro diff --git a/crates/dbg-swc/Cargo.toml b/crates/dbg-swc/Cargo.toml index 59ba473bd4f..44d4f98b3fa 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.89.64" +version = "0.89.65" [[bin]] bench = false @@ -32,7 +32,7 @@ swc_common = { version = "0.33.9", features = [ ], path = "../swc_common" } swc_ecma_ast = { version = "0.110.10", path = "../swc_ecma_ast" } swc_ecma_codegen = { version = "0.146.29", path = "../swc_ecma_codegen" } -swc_ecma_minifier = { version = "0.189.55", path = "../swc_ecma_minifier", features = [ +swc_ecma_minifier = { version = "0.189.56", path = "../swc_ecma_minifier", features = [ "concurrent", ] } swc_ecma_parser = { version = "0.141.23", path = "../swc_ecma_parser" } diff --git a/crates/swc/Cargo.toml b/crates/swc/Cargo.toml index 3e9e94b6cb7..64f9e434b59 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.269.59" +version = "0.269.60" [lib] bench = false @@ -73,7 +73,7 @@ swc_common = { version = "0.33.9", path = "../swc_common", features = [ "sourcemap", "parking_lot", ] } -swc_compiler_base = { version = "0.3.61", path = "../swc_compiler_base" } +swc_compiler_base = { version = "0.3.62", path = "../swc_compiler_base" } swc_config = { version = "0.1.7", path = "../swc_config" } swc_ecma_ast = { version = "0.110.10", path = "../swc_ecma_ast" } swc_ecma_codegen = { version = "0.146.29", path = "../swc_ecma_codegen" } @@ -84,10 +84,10 @@ swc_ecma_loader = { version = "0.45.10", path = "../swc_ecma_loader", features = "node", "tsc", ] } -swc_ecma_minifier = { version = "0.189.55", path = "../swc_ecma_minifier" } +swc_ecma_minifier = { version = "0.189.56", path = "../swc_ecma_minifier" } swc_ecma_parser = { version = "0.141.23", path = "../swc_ecma_parser" } -swc_ecma_preset_env = { version = "0.203.46", path = "../swc_ecma_preset_env" } -swc_ecma_transforms = { version = "0.226.46", path = "../swc_ecma_transforms", features = [ +swc_ecma_preset_env = { version = "0.203.47", path = "../swc_ecma_preset_env" } +swc_ecma_transforms = { version = "0.226.47", path = "../swc_ecma_transforms", features = [ "compat", "module", "optimization", @@ -97,7 +97,7 @@ swc_ecma_transforms = { version = "0.226.46", path = "../swc_ecma_transforms", f ] } swc_ecma_transforms_base = { version = "0.134.38", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_compat = { version = "0.160.44", path = "../swc_ecma_transforms_compat" } -swc_ecma_transforms_optimization = { version = "0.195.46", path = "../swc_ecma_transforms_optimization" } +swc_ecma_transforms_optimization = { version = "0.195.47", path = "../swc_ecma_transforms_optimization" } swc_ecma_utils = { version = "0.124.29", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.96.10", path = "../swc_ecma_visit" } swc_error_reporters = { version = "0.17.9", path = "../swc_error_reporters" } diff --git a/crates/swc_bundler/Cargo.toml b/crates/swc_bundler/Cargo.toml index 575b4ffc7e8..1af14ee0657 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.222.53" +version = "0.222.54" [package.metadata.docs.rs] all-features = true @@ -44,7 +44,7 @@ swc_ecma_codegen = { version = "0.146.29", path = "../swc_ecma_c swc_ecma_loader = { version = "0.45.10", path = "../swc_ecma_loader" } swc_ecma_parser = { version = "0.141.23", path = "../swc_ecma_parser" } swc_ecma_transforms_base = { version = "0.134.38", path = "../swc_ecma_transforms_base" } -swc_ecma_transforms_optimization = { version = "0.195.46", path = "../swc_ecma_transforms_optimization" } +swc_ecma_transforms_optimization = { version = "0.195.47", path = "../swc_ecma_transforms_optimization" } swc_ecma_utils = { version = "0.124.29", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.96.10", path = "../swc_ecma_visit" } swc_fast_graph = { version = "0.21.9", path = "../swc_fast_graph/" } @@ -63,11 +63,11 @@ swc_ecma_loader = { version = "0.45.10", path = "../swc_ecma_loader", features = "node", "cache", ] } -swc_ecma_minifier = { version = "0.189.55", path = "../swc_ecma_minifier", features = [ +swc_ecma_minifier = { version = "0.189.56", path = "../swc_ecma_minifier", features = [ "concurrent", ] } -swc_ecma_transforms_proposal = { version = "0.168.46", path = "../swc_ecma_transforms_proposal" } +swc_ecma_transforms_proposal = { version = "0.168.47", path = "../swc_ecma_transforms_proposal" } swc_ecma_transforms_react = { version = "0.180.47", path = "../swc_ecma_transforms_react" } -swc_ecma_transforms_typescript = { version = "0.185.44", path = "../swc_ecma_transforms_typescript" } +swc_ecma_transforms_typescript = { version = "0.185.45", path = "../swc_ecma_transforms_typescript" } swc_malloc = { version = "0.5.10", path = "../swc_malloc" } testing = { version = "0.35.11", path = "../testing" } diff --git a/crates/swc_cli_impl/Cargo.toml b/crates/swc_cli_impl/Cargo.toml index 7ae3051319f..d352cc6282c 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.4.66" +version = "0.4.67" [features] default = [] @@ -32,7 +32,7 @@ tracing-futures = "0.2.5" tracing-subscriber = { version = "0.3.9", features = ["env-filter"] } walkdir = "2" -swc_core = { version = "0.86.66", features = [ +swc_core = { version = "0.86.67", features = [ "trace_macro", "common_concurrent", "base_concurrent", diff --git a/crates/swc_compiler_base/Cargo.toml b/crates/swc_compiler_base/Cargo.toml index 36c94cf1dc6..4752a6180a2 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.3.61" +version = "0.3.62" [features] node = ["napi", "napi-derive"] @@ -25,7 +25,7 @@ swc_common = { version = "0.33.9", path = "../swc_common", features = [ swc_config = { version = "0.1.7", path = "../swc_config" } swc_ecma_ast = { version = "0.110.10", path = "../swc_ecma_ast" } swc_ecma_codegen = { version = "0.146.29", path = "../swc_ecma_codegen" } -swc_ecma_minifier = { version = "0.189.55", path = "../swc_ecma_minifier" } +swc_ecma_minifier = { version = "0.189.56", path = "../swc_ecma_minifier" } swc_ecma_parser = { version = "0.141.23", path = "../swc_ecma_parser" } swc_ecma_visit = { version = "0.96.10", path = "../swc_ecma_visit" } swc_timer = { version = "0.21.11", path = "../swc_timer" } diff --git a/crates/swc_core/Cargo.toml b/crates/swc_core/Cargo.toml index e99608601fe..cd59195e774 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.86.66" +version = "0.86.67" [package.metadata.docs.rs] features = [ "allocator_node", @@ -324,10 +324,10 @@ __visit = ["__ecma", "swc_ecma_visit"] once_cell = { optional = true, version = "1.18.0" } # swc_* dependencies -binding_macros = { optional = true, version = "0.60.66", path = "../binding_macros" } -swc = { optional = true, version = "0.269.59", path = "../swc" } +binding_macros = { optional = true, version = "0.60.67", path = "../binding_macros" } +swc = { optional = true, version = "0.269.60", path = "../swc" } swc_atoms = { optional = true, version = "0.6.4", path = "../swc_atoms" } -swc_bundler = { optional = true, version = "0.222.53", path = "../swc_bundler" } +swc_bundler = { optional = true, version = "0.222.54", path = "../swc_bundler" } swc_cached = { optional = true, version = "0.3.18", path = "../swc_cached" } swc_common = { optional = true, version = "0.33.9", path = "../swc_common" } swc_css_ast = { optional = true, version = "0.140.10", path = "../swc_css_ast" } @@ -342,23 +342,23 @@ swc_css_visit = { optional = true, version = "0.139.10", path swc_ecma_ast = { optional = true, version = "0.110.10", path = "../swc_ecma_ast" } swc_ecma_codegen = { optional = true, version = "0.146.29", path = "../swc_ecma_codegen" } swc_ecma_loader = { optional = true, version = "0.45.10", path = "../swc_ecma_loader" } -swc_ecma_minifier = { optional = true, version = "0.189.55", path = "../swc_ecma_minifier" } +swc_ecma_minifier = { optional = true, version = "0.189.56", path = "../swc_ecma_minifier" } swc_ecma_parser = { optional = true, version = "0.141.23", path = "../swc_ecma_parser" } -swc_ecma_preset_env = { optional = true, version = "0.203.46", path = "../swc_ecma_preset_env" } +swc_ecma_preset_env = { optional = true, version = "0.203.47", path = "../swc_ecma_preset_env" } swc_ecma_quote_macros = { optional = true, version = "0.52.23", path = "../swc_ecma_quote_macros" } swc_ecma_transforms_base = { optional = true, version = "0.134.38", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_compat = { optional = true, version = "0.160.44", path = "../swc_ecma_transforms_compat" } swc_ecma_transforms_module = { optional = true, version = "0.177.46", path = "../swc_ecma_transforms_module" } -swc_ecma_transforms_optimization = { optional = true, version = "0.195.46", path = "../swc_ecma_transforms_optimization" } -swc_ecma_transforms_proposal = { optional = true, version = "0.168.46", path = "../swc_ecma_transforms_proposal" } +swc_ecma_transforms_optimization = { optional = true, version = "0.195.47", path = "../swc_ecma_transforms_optimization" } +swc_ecma_transforms_proposal = { optional = true, version = "0.168.47", path = "../swc_ecma_transforms_proposal" } swc_ecma_transforms_react = { optional = true, version = "0.180.47", path = "../swc_ecma_transforms_react" } swc_ecma_transforms_testing = { optional = true, version = "0.137.40", path = "../swc_ecma_transforms_testing" } -swc_ecma_transforms_typescript = { optional = true, version = "0.185.44", path = "../swc_ecma_transforms_typescript" } +swc_ecma_transforms_typescript = { optional = true, version = "0.185.45", path = "../swc_ecma_transforms_typescript" } swc_ecma_usage_analyzer = { optional = true, version = "0.20.30", path = "../swc_ecma_usage_analyzer" } swc_ecma_utils = { optional = true, version = "0.124.29", path = "../swc_ecma_utils" } swc_ecma_visit = { optional = true, version = "0.96.10", path = "../swc_ecma_visit" } swc_malloc = { optional = true, version = "0.5.10", path = "../swc_malloc" } -swc_node_bundler = { optional = true, version = "0.58.66", path = "../swc_node_bundler" } +swc_node_bundler = { optional = true, version = "0.58.67", 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.15", path = "../swc_plugin_macro" } diff --git a/crates/swc_ecma_minifier/Cargo.toml b/crates/swc_ecma_minifier/Cargo.toml index cba934f35e1..7620d63bce9 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.189.55" +version = "0.189.56" [package.metadata.docs.rs] all-features = true @@ -60,7 +60,7 @@ swc_ecma_ast = { version = "0.110.10", path = "../swc_ecma_ast", features = [ swc_ecma_codegen = { version = "0.146.29", path = "../swc_ecma_codegen" } swc_ecma_parser = { version = "0.141.23", path = "../swc_ecma_parser" } swc_ecma_transforms_base = { version = "0.134.38", path = "../swc_ecma_transforms_base" } -swc_ecma_transforms_optimization = { version = "0.195.46", path = "../swc_ecma_transforms_optimization" } +swc_ecma_transforms_optimization = { version = "0.195.47", path = "../swc_ecma_transforms_optimization" } swc_ecma_usage_analyzer = { version = "0.20.30", path = "../swc_ecma_usage_analyzer" } swc_ecma_utils = { version = "0.124.29", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.96.10", path = "../swc_ecma_visit" } diff --git a/crates/swc_ecma_preset_env/Cargo.toml b/crates/swc_ecma_preset_env/Cargo.toml index faba8fe2777..d93c617e2d2 100644 --- a/crates/swc_ecma_preset_env/Cargo.toml +++ b/crates/swc_ecma_preset_env/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json", "data/**/*.json"] license = "Apache-2.0" name = "swc_ecma_preset_env" -version = "0.203.46" +version = "0.203.47" [lib] bench = false @@ -32,7 +32,7 @@ string_enum = { version = "0.4.1", path = "../string_enum" } swc_atoms = { version = "0.6.4", path = "../swc_atoms" } swc_common = { version = "0.33.9", path = "../swc_common" } swc_ecma_ast = { version = "0.110.10", path = "../swc_ecma_ast" } -swc_ecma_transforms = { version = "0.226.46", path = "../swc_ecma_transforms", features = [ +swc_ecma_transforms = { version = "0.226.47", path = "../swc_ecma_transforms", features = [ "compat", "proposal", ] } diff --git a/crates/swc_ecma_transforms/Cargo.toml b/crates/swc_ecma_transforms/Cargo.toml index 0ad3e24aa55..19a25326891 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.226.46" +version = "0.226.47" [package.metadata.docs.rs] all-features = true @@ -37,10 +37,10 @@ swc_ecma_ast = { version = "0.110.10", path = "../swc_ecma_a swc_ecma_transforms_base = { version = "0.134.38", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_compat = { version = "0.160.44", path = "../swc_ecma_transforms_compat", optional = true } swc_ecma_transforms_module = { version = "0.177.46", path = "../swc_ecma_transforms_module", optional = true } -swc_ecma_transforms_optimization = { version = "0.195.46", path = "../swc_ecma_transforms_optimization", optional = true } -swc_ecma_transforms_proposal = { version = "0.168.46", path = "../swc_ecma_transforms_proposal", optional = true } +swc_ecma_transforms_optimization = { version = "0.195.47", path = "../swc_ecma_transforms_optimization", optional = true } +swc_ecma_transforms_proposal = { version = "0.168.47", path = "../swc_ecma_transforms_proposal", optional = true } swc_ecma_transforms_react = { version = "0.180.47", path = "../swc_ecma_transforms_react", optional = true } -swc_ecma_transforms_typescript = { version = "0.185.44", path = "../swc_ecma_transforms_typescript", optional = true } +swc_ecma_transforms_typescript = { version = "0.185.45", path = "../swc_ecma_transforms_typescript", optional = true } swc_ecma_utils = { version = "0.124.29", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.96.10", path = "../swc_ecma_visit" } diff --git a/crates/swc_ecma_transforms_optimization/Cargo.toml b/crates/swc_ecma_transforms_optimization/Cargo.toml index 8a8ec24ee62..b3fb5b6354c 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.195.46" +version = "0.195.47" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] @@ -44,8 +44,8 @@ swc_fast_graph = { version = "0.21.9", path = "../swc_fast_graph" } [dev-dependencies] swc_ecma_transforms_compat = { version = "0.160.44", path = "../swc_ecma_transforms_compat" } swc_ecma_transforms_module = { version = "0.177.46", path = "../swc_ecma_transforms_module" } -swc_ecma_transforms_proposal = { version = "0.168.46", path = "../swc_ecma_transforms_proposal" } +swc_ecma_transforms_proposal = { version = "0.168.47", path = "../swc_ecma_transforms_proposal" } swc_ecma_transforms_react = { version = "0.180.47", path = "../swc_ecma_transforms_react" } swc_ecma_transforms_testing = { version = "0.137.40", path = "../swc_ecma_transforms_testing" } -swc_ecma_transforms_typescript = { version = "0.185.44", path = "../swc_ecma_transforms_typescript" } +swc_ecma_transforms_typescript = { version = "0.185.45", path = "../swc_ecma_transforms_typescript" } testing = { version = "0.35.11", path = "../testing" } diff --git a/crates/swc_ecma_transforms_proposal/Cargo.toml b/crates/swc_ecma_transforms_proposal/Cargo.toml index 331711b79f4..17849af537a 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.168.46" +version = "0.168.47" [lib] bench = false diff --git a/crates/swc_ecma_transforms_typescript/Cargo.toml b/crates/swc_ecma_transforms_typescript/Cargo.toml index 15ae36d2667..85a6a44a893 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.185.44" +version = "0.185.45" [lib] bench = false @@ -30,7 +30,7 @@ criterion = "0.5" swc_ecma_codegen = { version = "0.146.29", path = "../swc_ecma_codegen" } swc_ecma_parser = { version = "0.141.23", path = "../swc_ecma_parser" } swc_ecma_transforms_compat = { version = "0.160.44", path = "../swc_ecma_transforms_compat" } -swc_ecma_transforms_proposal = { version = "0.168.46", path = "../swc_ecma_transforms_proposal" } +swc_ecma_transforms_proposal = { version = "0.168.47", path = "../swc_ecma_transforms_proposal" } swc_ecma_transforms_testing = { version = "0.137.40", path = "../swc_ecma_transforms_testing" } testing = { version = "0.35.11", path = "../testing" } diff --git a/crates/swc_ecmascript/Cargo.toml b/crates/swc_ecmascript/Cargo.toml index d62d4e278ff..e940c89573f 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.236.62" +version = "0.236.63" [package.metadata.docs.rs] all-features = true @@ -40,11 +40,11 @@ typescript = ["typescript-parser", "swc_ecma_transforms/typescript"] [dependencies] swc_ecma_ast = { version = "0.110.10", path = "../swc_ecma_ast" } swc_ecma_codegen = { version = "0.146.29", path = "../swc_ecma_codegen", optional = true } -swc_ecma_minifier = { version = "0.189.55", path = "../swc_ecma_minifier", optional = true } +swc_ecma_minifier = { version = "0.189.56", path = "../swc_ecma_minifier", optional = true } swc_ecma_parser = { version = "0.141.23", path = "../swc_ecma_parser", optional = true, default-features = false } -swc_ecma_preset_env = { version = "0.203.46", path = "../swc_ecma_preset_env", optional = true } +swc_ecma_preset_env = { version = "0.203.47", path = "../swc_ecma_preset_env", optional = true } swc_ecma_quote = { version = "0.57.23", path = "../swc_ecma_quote", optional = true } -swc_ecma_transforms = { version = "0.226.46", path = "../swc_ecma_transforms", optional = true } +swc_ecma_transforms = { version = "0.226.47", path = "../swc_ecma_transforms", optional = true } swc_ecma_utils = { version = "0.124.29", path = "../swc_ecma_utils", optional = true } swc_ecma_visit = { version = "0.96.10", path = "../swc_ecma_visit", optional = true } diff --git a/crates/swc_estree_compat/Cargo.toml b/crates/swc_estree_compat/Cargo.toml index 9645a7b409e..287507cf3dc 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.194.64" +version = "0.194.65" [package.metadata.docs.rs] all-features = true @@ -40,10 +40,10 @@ swc_node_comments = { version = "0.20.9", path = "../swc_node_comments/" } criterion = "0.5" pretty_assertions = "1.3" -swc = { version = "0.269.59", path = "../swc" } +swc = { version = "0.269.60", path = "../swc" } swc_ecma_ast = { version = "0.110.10", path = "../swc_ecma_ast" } swc_ecma_parser = { version = "0.141.23", path = "../swc_ecma_parser" } -swc_ecma_transforms = { version = "0.226.46", path = "../swc_ecma_transforms/" } +swc_ecma_transforms = { version = "0.226.47", path = "../swc_ecma_transforms/" } testing = { version = "0.35.11", path = "../testing" } walkdir = "2" diff --git a/crates/swc_html/Cargo.toml b/crates/swc_html/Cargo.toml index 63d3bd1cd0a..b4be2da21fc 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.134.61" +version = "0.134.62" [package.metadata.docs.rs] all-features = true @@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"] [dependencies] swc_html_ast = {version = "0.33.9", path = "../swc_html_ast"} swc_html_codegen = {version = "0.42.13", path = "../swc_html_codegen"} -swc_html_minifier = {version = "0.131.61", path = "../swc_html_minifier", optional = true} +swc_html_minifier = {version = "0.131.62", path = "../swc_html_minifier", optional = true} swc_html_parser = {version = "0.39.13", path = "../swc_html_parser"} swc_html_visit = {version = "0.33.9", path = "../swc_html_visit"} diff --git a/crates/swc_html_minifier/Cargo.toml b/crates/swc_html_minifier/Cargo.toml index 6bcb1757967..3b7e02b4660 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.131.61" +version = "0.131.62" [lib] bench = false @@ -31,7 +31,7 @@ swc_ecma_ast = { version = "0.110.10", path = "../swc_ecma_ast" } swc_ecma_codegen = { version = "0.146.29", path = "../swc_ecma_codegen", features = [ "serde-impl", ] } -swc_ecma_minifier = { version = "0.189.55", path = "../swc_ecma_minifier", features = [ +swc_ecma_minifier = { version = "0.189.56", path = "../swc_ecma_minifier", features = [ "extra-serde", ] } swc_ecma_parser = { version = "0.141.23", path = "../swc_ecma_parser" } diff --git a/crates/swc_node_bundler/Cargo.toml b/crates/swc_node_bundler/Cargo.toml index 8c1913a8d1b..58143b662f9 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.58.66" +version = "0.58.67" [lib] bench = false @@ -29,9 +29,9 @@ serde_json = "1" tracing = "0.1.37" string_enum = { version = "0.4.1", path = "../string_enum" } -swc = { version = "0.269.59", path = "../swc" } +swc = { version = "0.269.60", path = "../swc" } swc_atoms = { version = "0.6.4", path = "../swc_atoms" } -swc_bundler = { version = "0.222.53", path = "../swc_bundler", features = [ +swc_bundler = { version = "0.222.54", path = "../swc_bundler", features = [ "concurrent", ] } swc_common = { version = "0.33.9", path = "../swc_common", features = [ @@ -41,7 +41,7 @@ swc_ecma_ast = { version = "0.110.10", path = "../swc_ecma_ast" } swc_ecma_codegen = { version = "0.146.29", path = "../swc_ecma_codegen" } swc_ecma_loader = { version = "0.45.10", path = "../swc_ecma_loader" } swc_ecma_parser = { version = "0.141.23", path = "../swc_ecma_parser" } -swc_ecma_transforms = { version = "0.226.46", path = "../swc_ecma_transforms" } +swc_ecma_transforms = { version = "0.226.47", path = "../swc_ecma_transforms" } swc_ecma_utils = { version = "0.124.29", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.96.10", path = "../swc_ecma_visit" } swc_malloc = { version = "0.5.10", path = "../swc_malloc" }