Skip to content

Commit f8ff9be

Browse files
committed
chore: Publish crates with swc_core v32.0.3
1 parent 2b1ce3d commit f8ff9be

File tree

13 files changed

+32
-27
lines changed

13 files changed

+32
-27
lines changed

.changeset/minifier-foo.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

CHANGELOG-CORE.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
# Changelog
22
## [unreleased]
33

4+
### Features
5+
6+
7+
8+
- **(es/minifier)** Drop unused rest paramters ([#10857](https://github.com/swc-project/swc/issues/10857)) ([5305486](https://github.com/swc-project/swc/commit/5305486d58d9cbee06d1f81691cf6f261d7158ed))
9+
10+
11+
- **(es/minifier)** Enhance IIFE invoker for arrow functions ([#10860](https://github.com/swc-project/swc/issues/10860)) ([2b1ce3d](https://github.com/swc-project/swc/commit/2b1ce3d2322d3726cad799b2b3ca9ca1f04449bf))
12+
13+
## [swc_core@v32.0.2] - 2025-07-14
14+
415
### Miscellaneous Tasks
516

617

@@ -2698,7 +2709,4 @@
26982709

26992710
- **(typescript)** Fix wrong check for super class ([#9822](https://github.com/swc-project/swc/issues/9822)) ([2307a4d](https://github.com/swc-project/swc/commit/2307a4d4d3def405c4a04726272e14d998880abb))
27002711

2701-
2702-
- Remove `Caused by: 'failed to parse'` from TS blank space ([#9820](https://github.com/swc-project/swc/issues/9820)) ([aaeb0ab](https://github.com/swc-project/swc/commit/aaeb0ab3b325c4f9d789aec78a52eec0dfcfac83))
2703-
27042712
<!-- generated by git-cliff -->

CHANGELOG.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
# Changelog
22
## [unreleased]
33

4+
### Features
5+
6+
7+
8+
- **(es/minifier)** Drop unused rest paramters ([#10857](https://github.com/swc-project/swc/issues/10857)) ([5305486](https://github.com/swc-project/swc/commit/5305486d58d9cbee06d1f81691cf6f261d7158ed))
9+
10+
11+
- **(es/minifier)** Enhance IIFE invoker for arrow functions ([#10860](https://github.com/swc-project/swc/issues/10860)) ([2b1ce3d](https://github.com/swc-project/swc/commit/2b1ce3d2322d3726cad799b2b3ca9ca1f04449bf))
12+
413
### Performance
514

615

@@ -2191,10 +2200,4 @@
21912200

21922201
## [1.10.4] - 2024-12-30
21932202

2194-
### Bug Fixes
2195-
2196-
2197-
2198-
- Remove `Caused by: 'failed to parse'` from TS blank space ([#9820](https://github.com/swc-project/swc/issues/9820)) ([aaeb0ab](https://github.com/swc-project/swc/commit/aaeb0ab3b325c4f9d789aec78a52eec0dfcfac83))
2199-
22002203
<!-- generated by git-cliff -->

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/dbg-swc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ swc_common = { version = "14.0.0", features = [
3131
], path = "../swc_common" }
3232
swc_ecma_ast = { version = "14.0.0", path = "../swc_ecma_ast" }
3333
swc_ecma_codegen = { version = "16.0.0", path = "../swc_ecma_codegen" }
34-
swc_ecma_minifier = { version = "26.0.0", path = "../swc_ecma_minifier", features = [
34+
swc_ecma_minifier = { version = "26.0.1", path = "../swc_ecma_minifier", features = [
3535
"concurrent",
3636
] }
3737
swc_ecma_parser = { version = "20.0.0", path = "../swc_ecma_parser" }

crates/swc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ swc_ecma_loader = { version = "14.0.0", path = "../swc_ecma_loader", features =
9090
"node",
9191
"tsc",
9292
] }
93-
swc_ecma_minifier = { version = "26.0.0", path = "../swc_ecma_minifier" }
93+
swc_ecma_minifier = { version = "26.0.1", path = "../swc_ecma_minifier" }
9494
swc_ecma_parser = { version = "20.0.0", path = "../swc_ecma_parser" }
9595
swc_ecma_preset_env = { version = "26.0.0", path = "../swc_ecma_preset_env" }
9696
swc_ecma_transforms = { version = "25.0.0", path = "../swc_ecma_transforms", features = [

crates/swc_bundler/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ swc_ecma_loader = { version = "14.0.0", path = "../swc_ecma_loader", features =
6262
"node",
6363
"cache",
6464
] }
65-
swc_ecma_minifier = { version = "26.0.0", path = "../swc_ecma_minifier", features = [
65+
swc_ecma_minifier = { version = "26.0.1", path = "../swc_ecma_minifier", features = [
6666
"concurrent",
6767
] }
6868
swc_ecma_transforms_base = { version = "21.0.0", path = "../swc_ecma_transforms_base", features = [

crates/swc_cli_impl/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ tracing-chrome = { workspace = true }
3737
tracing-subscriber = { workspace = true, features = ["env-filter"] }
3838
walkdir = { workspace = true }
3939

40-
swc_core = { version = "32.0.2", features = [
40+
swc_core = { version = "32.0.3", features = [
4141
"trace_macro",
4242
"common_concurrent",
4343
"base_concurrent",

crates/swc_compiler_base/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ swc_common = { version = "14.0.0", path = "../swc_common", features = [
3030
swc_config = { version = "3.1.1", path = "../swc_config" }
3131
swc_ecma_ast = { version = "14.0.0", path = "../swc_ecma_ast" }
3232
swc_ecma_codegen = { version = "16.0.0", path = "../swc_ecma_codegen" }
33-
swc_ecma_minifier = { version = "26.0.0", path = "../swc_ecma_minifier" }
33+
swc_ecma_minifier = { version = "26.0.1", path = "../swc_ecma_minifier" }
3434
swc_ecma_parser = { version = "20.0.0", path = "../swc_ecma_parser" }
3535
swc_ecma_visit = { version = "14.0.0", path = "../swc_ecma_visit" }
3636
swc_timer = { version = "1.0.0", path = "../swc_timer" }

crates/swc_core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = { workspace = true }
66
license = { workspace = true }
77
name = "swc_core"
88
repository = { workspace = true }
9-
version = "32.0.2"
9+
version = "32.0.3"
1010
[package.metadata.docs.rs]
1111
features = [
1212
"allocator_node",
@@ -368,7 +368,7 @@ swc_ecma_ast = { optional = true, version = "14.0.0", path =
368368
swc_ecma_codegen = { optional = true, version = "16.0.0", path = "../swc_ecma_codegen" }
369369
swc_ecma_lints = { optional = true, version = "20.0.0", path = "../swc_ecma_lints" }
370370
swc_ecma_loader = { optional = true, version = "14.0.0", path = "../swc_ecma_loader" }
371-
swc_ecma_minifier = { optional = true, version = "26.0.0", path = "../swc_ecma_minifier" }
371+
swc_ecma_minifier = { optional = true, version = "26.0.1", path = "../swc_ecma_minifier" }
372372
swc_ecma_parser = { optional = true, version = "20.0.0", path = "../swc_ecma_parser" }
373373
swc_ecma_preset_env = { optional = true, version = "26.0.0", path = "../swc_ecma_preset_env" }
374374
swc_ecma_quote_macros = { optional = true, version = "20.0.0", path = "../swc_ecma_quote_macros" }

0 commit comments

Comments
 (0)