Skip to content

Commit bebcc1c

Browse files
committed
chore: Publish crates with swc_core v44.0.1
1 parent d3cd97f commit bebcc1c

File tree

40 files changed

+51
-64
lines changed

40 files changed

+51
-64
lines changed

.changeset/light-cheetahs-protect.md

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

CHANGELOG-CORE.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@
55

66

77

8+
- **(es/parser)** Handle JSX attributes with keyword prefixes correctly ([#11136](https://github.com/swc-project/swc/issues/11136)) ([d3cd97f](https://github.com/swc-project/swc/commit/d3cd97fef10518507249d4b0b82983320483ee1c))
9+
10+
## [[email protected]] - 2025-10-01
11+
12+
### Bug Fixes
13+
14+
15+
816
- **(es/compat)** Apply `Array.prototype.slice` to `arguments` in loose spread ([#11122](https://github.com/swc-project/swc/issues/11122)) ([66428a2](https://github.com/swc-project/swc/commit/66428a2b07fcded28b779860de3b13acd86e6647))
917

1018

@@ -2554,13 +2562,4 @@
25542562

25552563
## [[email protected]] - 2025-03-04
25562564

2557-
### Bug Fixes
2558-
2559-
2560-
2561-
- **(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))
2562-
2563-
2564-
- **(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))
2565-
25662565
<!-- generated by git-cliff -->

CHANGELOG.md

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111
- **(es/compat)** Handle sparse arrays correctly in generator transforms ([#11131](https://github.com/swc-project/swc/issues/11131)) ([9cd4334](https://github.com/swc-project/swc/commit/9cd43343d39ccb0be43f8ce9e8e2cd74c18db4af))
1212

1313

14+
- **(es/parser)** Handle JSX attributes with keyword prefixes correctly ([#11136](https://github.com/swc-project/swc/issues/11136)) ([d3cd97f](https://github.com/swc-project/swc/commit/d3cd97fef10518507249d4b0b82983320483ee1c))
15+
16+
1417
- **(es/transforms)** Check errors::HANDLER.is_set() before failing ([#11130](https://github.com/swc-project/swc/issues/11130)) ([1c9ab27](https://github.com/swc-project/swc/commit/1c9ab2719ca21e4fcc4598c7877648d44f22311c))
1518

1619
### Features
@@ -2048,13 +2051,4 @@
20482051

20492052
## [1.11.6] - 2025-03-04
20502053

2051-
### Bug Fixes
2052-
2053-
2054-
2055-
- **(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))
2056-
2057-
2058-
- **(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))
2059-
20602054
<!-- 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
@@ -34,7 +34,7 @@ swc_ecma_codegen = { version = "17.0.2", path = "../swc_ecma_codegen" }
3434
swc_ecma_minifier = { version = "33.0.0", path = "../swc_ecma_minifier", features = [
3535
"concurrent",
3636
] }
37-
swc_ecma_parser = { version = "24.0.2", path = "../swc_ecma_parser" }
37+
swc_ecma_parser = { version = "24.0.3", path = "../swc_ecma_parser" }
3838
swc_ecma_transforms_base = { version = "27.0.0", path = "../swc_ecma_transforms_base" }
3939
swc_ecma_visit = { version = "15.0.0", path = "../swc_ecma_visit" }
4040
swc_error_reporters = { version = "16.0.1", path = "../swc_error_reporters" }

crates/jsdoc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@ swc_common = { version = "14.0.4", path = "../swc_common" }
2424

2525
[dev-dependencies]
2626
dashmap = { workspace = true }
27-
swc_ecma_parser = { version = "24.0.2", path = "../swc_ecma_parser" }
27+
swc_ecma_parser = { version = "24.0.3", path = "../swc_ecma_parser" }
2828
testing = { version = "15.0.0", path = "../testing" }

crates/swc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ swc_ecma_loader = { version = "14.0.0", path = "../swc_ecma_loader", features =
9494
"tsc",
9595
] }
9696
swc_ecma_minifier = { version = "33.0.0", path = "../swc_ecma_minifier" }
97-
swc_ecma_parser = { version = "24.0.2", path = "../swc_ecma_parser", default-features = false, features = ["typescript"] }
97+
swc_ecma_parser = { version = "24.0.3", path = "../swc_ecma_parser", default-features = false, features = ["typescript"] }
9898
swc_ecma_preset_env = { version = "36.0.0", path = "../swc_ecma_preset_env" }
9999
swc_ecma_transforms = { version = "35.0.0", path = "../swc_ecma_transforms", features = [
100100
"compat",

crates/swc_bundler/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ swc_common = { version = "14.0.4", path = "../swc_common"
4242
swc_ecma_ast = { version = "15.0.0", path = "../swc_ecma_ast" }
4343
swc_ecma_codegen = { version = "17.0.2", path = "../swc_ecma_codegen" }
4444
swc_ecma_loader = { version = "14.0.0", path = "../swc_ecma_loader" }
45-
swc_ecma_parser = { version = "24.0.2", path = "../swc_ecma_parser", default-features = false, features = ["typescript"] }
45+
swc_ecma_parser = { version = "24.0.3", path = "../swc_ecma_parser", default-features = false, features = ["typescript"] }
4646
swc_ecma_transforms_base = { version = "27.0.0", path = "../swc_ecma_transforms_base" }
4747
swc_ecma_transforms_optimization = { version = "29.0.0", path = "../swc_ecma_transforms_optimization" }
4848
swc_ecma_utils = { version = "21.0.0", path = "../swc_ecma_utils" }

crates/swc_cli_impl/Cargo.toml

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

41-
swc_core = { version = "44.0.0", features = [
41+
swc_core = { version = "44.0.1", features = [
4242
"trace_macro",
4343
"common_concurrent",
4444
"base_concurrent",

crates/swc_compiler_base/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ swc_config = { version = "3.1.2", path = "../swc_config" }
3131
swc_ecma_ast = { version = "15.0.0", path = "../swc_ecma_ast" }
3232
swc_ecma_codegen = { version = "17.0.2", path = "../swc_ecma_codegen" }
3333
swc_ecma_minifier = { version = "33.0.0", path = "../swc_ecma_minifier" }
34-
swc_ecma_parser = { version = "24.0.2", path = "../swc_ecma_parser", default-features = false, features = ["typescript"] }
34+
swc_ecma_parser = { version = "24.0.3", path = "../swc_ecma_parser", default-features = false, features = ["typescript"] }
3535
swc_ecma_visit = { version = "15.0.0", path = "../swc_ecma_visit" }
3636
swc_timer = { version = "1.0.0", path = "../swc_timer" }
3737

0 commit comments

Comments
 (0)