Skip to content

Commit 142d0bd

Browse files
committed
chore: Publish crates with swc_core v16.3.1
1 parent b145275 commit 142d0bd

File tree

19 files changed

+37
-47
lines changed

19 files changed

+37
-47
lines changed

.changeset/blue-crabs-jog.md

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

.changeset/gold-hotels-camp.md

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

CHANGELOG-CORE.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@
88
- **(es/minifier)** Skip inlining if the referential identity of a function matters ([#10123](https://github.com/swc-project/swc/issues/10123)) ([c08fe8d](https://github.com/swc-project/swc/commit/c08fe8dc13ae512cf669eb25356edcd22cc36351))
99

1010

11+
- **(es/minifier)** Fix regression due to #10056 ([#10134](https://github.com/swc-project/swc/issues/10134)) ([b145275](https://github.com/swc-project/swc/commit/b1452757f3ff0b05330578b4e7607db3ee874bd5))
12+
13+
14+
- **(es/typescript)** Remove empty statements that const enum decls are folded into ([#10128](https://github.com/swc-project/swc/issues/10128)) ([7bea830](https://github.com/swc-project/swc/commit/7bea830a0e6f73ab0ba5032d13d5e58e4674bc72))
15+
16+
1117
- **(ts/fast-strip)** Throw object consistently ([#10122](https://github.com/swc-project/swc/issues/10122)) ([010ff2a](https://github.com/swc-project/swc/commit/010ff2af0db625f7a118b4121aff6d709ed10dc9))
1218

1319
### Miscellaneous Tasks
@@ -1537,9 +1543,6 @@
15371543
- **(es/quote)** Fix macro ([#9270](https://github.com/swc-project/swc/issues/9270)) ([93d9e44](https://github.com/swc-project/swc/commit/93d9e44f1c7a3afea673f056d99001a026c0a6d3))
15381544

15391545

1540-
- **(es/typescript)** Fix `transform` mode ([#9243](https://github.com/swc-project/swc/issues/9243)) ([0e79a5b](https://github.com/swc-project/swc/commit/0e79a5b428c811c46c69f7f4a84fcff31c98db67))
1541-
1542-
15431546
- **(es/typescript)** Workaround `wasm-bindgen` ([#9272](https://github.com/swc-project/swc/issues/9272)) ([6b1d2ff](https://github.com/swc-project/swc/commit/6b1d2ff66b5ef73374c3932c0c505e08b9879a18))
15441547

15451548

@@ -1633,9 +1636,6 @@
16331636

16341637

16351638

1636-
- **(allocator)** Implement `default` mode ([#9242](https://github.com/swc-project/swc/issues/9242)) ([b6333db](https://github.com/swc-project/swc/commit/b6333dbcfcc8f25d08a1187704796732366ac9d7))
1637-
1638-
16391639
- **(allocator)** Feature gate `nightly` via macros ([#9274](https://github.com/swc-project/swc/issues/9274)) ([a31fb58](https://github.com/swc-project/swc/commit/a31fb58399cc60ad5052d77b5accd560200a4f3d))
16401640

16411641

CHANGELOG.md

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,15 @@
11
# Changelog
2+
## [unreleased]
3+
4+
### Bug Fixes
5+
6+
7+
8+
- **(es/minifier)** Fix regression due to #10056 ([#10134](https://github.com/swc-project/swc/issues/10134)) ([b145275](https://github.com/swc-project/swc/commit/b1452757f3ff0b05330578b4e7607db3ee874bd5))
9+
10+
11+
- **(es/typescript)** Remove empty statements that const enum decls are folded into ([#10128](https://github.com/swc-project/swc/issues/10128)) ([7bea830](https://github.com/swc-project/swc/commit/7bea830a0e6f73ab0ba5032d13d5e58e4674bc72))
12+
213
## [1.11.5] - 2025-02-28
314

415
### Bug Fixes
@@ -1721,9 +1732,6 @@
17211732
- **(es/quote)** Fix macro ([#9270](https://github.com/swc-project/swc/issues/9270)) ([93d9e44](https://github.com/swc-project/swc/commit/93d9e44f1c7a3afea673f056d99001a026c0a6d3))
17221733

17231734

1724-
- **(es/typescript)** Fix `transform` mode ([#9243](https://github.com/swc-project/swc/issues/9243)) ([0e79a5b](https://github.com/swc-project/swc/commit/0e79a5b428c811c46c69f7f4a84fcff31c98db67))
1725-
1726-
17271735
- **(es/typescript)** Workaround `wasm-bindgen` ([#9272](https://github.com/swc-project/swc/issues/9272)) ([6b1d2ff](https://github.com/swc-project/swc/commit/6b1d2ff66b5ef73374c3932c0c505e08b9879a18))
17281736

17291737
### Documentation
@@ -1732,12 +1740,6 @@
17321740

17331741
- **(contributing)** Fix deno installation url ([#9249](https://github.com/swc-project/swc/issues/9249)) ([ff5bbda](https://github.com/swc-project/swc/commit/ff5bbdae6ad16309efe592788f4cb14956ffc3b1))
17341742

1735-
### Features
1736-
1737-
1738-
1739-
- **(allocator)** Implement `default` mode ([#9242](https://github.com/swc-project/swc/issues/9242)) ([b6333db](https://github.com/swc-project/swc/commit/b6333dbcfcc8f25d08a1187704796732366ac9d7))
1740-
17411743
### Performance
17421744

17431745

Cargo.lock

Lines changed: 3 additions & 3 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
@@ -33,7 +33,7 @@ swc_common = { version = "8.0.0", features = [
3333
], path = "../swc_common" }
3434
swc_ecma_ast = { version = "8.0.0", path = "../swc_ecma_ast" }
3535
swc_ecma_codegen = { version = "8.0.2", path = "../swc_ecma_codegen" }
36-
swc_ecma_minifier = { version = "12.0.2", path = "../swc_ecma_minifier", features = [
36+
swc_ecma_minifier = { version = "12.0.3", path = "../swc_ecma_minifier", features = [
3737
"concurrent",
3838
] }
3939
swc_ecma_parser = { version = "10.0.0", path = "../swc_ecma_parser" }

crates/swc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ swc_ecma_loader = { version = "8.0.0", path = "../swc_ecma_loader", features = [
8686
"node",
8787
"tsc",
8888
] }
89-
swc_ecma_minifier = { version = "12.0.2", path = "../swc_ecma_minifier" }
89+
swc_ecma_minifier = { version = "12.0.3", path = "../swc_ecma_minifier" }
9090
swc_ecma_parser = { version = "10.0.0", path = "../swc_ecma_parser" }
9191
swc_ecma_preset_env = { version = "14.0.0", path = "../swc_ecma_preset_env" }
9292
swc_ecma_transforms = { version = "14.0.0", path = "../swc_ecma_transforms", features = [

crates/swc_bundler/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,11 @@ swc_ecma_loader = { version = "8.0.0", path = "../swc_ecma_loader", features = [
6464
"node",
6565
"cache",
6666
] }
67-
swc_ecma_minifier = { version = "12.0.2", path = "../swc_ecma_minifier", features = [
67+
swc_ecma_minifier = { version = "12.0.3", path = "../swc_ecma_minifier", features = [
6868
"concurrent",
6969
] }
7070
swc_ecma_transforms_proposal = { version = "11.0.1", path = "../swc_ecma_transforms_proposal" }
7171
swc_ecma_transforms_react = { version = "12.0.1", path = "../swc_ecma_transforms_react" }
72-
swc_ecma_transforms_typescript = { version = "12.0.0", path = "../swc_ecma_transforms_typescript" }
72+
swc_ecma_transforms_typescript = { version = "12.0.1", path = "../swc_ecma_transforms_typescript" }
7373
swc_malloc = { version = "1.2.2", path = "../swc_malloc" }
7474
testing = { version = "8.0.0", path = "../testing" }

crates/swc_cli_impl/Cargo.toml

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

42-
swc_core = { version = "16.3.0", features = [
42+
swc_core = { version = "16.3.1", features = [
4343
"trace_macro",
4444
"common_concurrent",
4545
"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 = "8.0.0", path = "../swc_common", features = [
3030
swc_config = { version = "2.0.0", path = "../swc_config" }
3131
swc_ecma_ast = { version = "8.0.0", path = "../swc_ecma_ast" }
3232
swc_ecma_codegen = { version = "8.0.2", path = "../swc_ecma_codegen" }
33-
swc_ecma_minifier = { version = "12.0.2", path = "../swc_ecma_minifier" }
33+
swc_ecma_minifier = { version = "12.0.3", path = "../swc_ecma_minifier" }
3434
swc_ecma_parser = { version = "10.0.0", path = "../swc_ecma_parser" }
3535
swc_ecma_visit = { version = "8.0.0", path = "../swc_ecma_visit" }
3636
swc_timer = { version = "1.0.0", path = "../swc_timer" }

0 commit comments

Comments
 (0)