Skip to content

Commit dfe9670

Browse files
committed
chore: Publish crates with swc_core v44.0.2
1 parent 9353763 commit dfe9670

File tree

11 files changed

+21
-18
lines changed

11 files changed

+21
-18
lines changed

.changeset/spotty-geese-relate.md

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

CHANGELOG-CORE.md

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

66

77

8+
- **(es/react)** Use correct span for `@jsxFrag` as null literal ([#11139](https://github.com/swc-project/swc/issues/11139)) ([9353763](https://github.com/swc-project/swc/commit/9353763e4d7f880ac3175bbdc058a3c3b3bea3bb))
9+
10+
## [swc_core@v44.0.1] - 2025-10-02
11+
12+
### Bug Fixes
13+
14+
15+
816
- **(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))
917

1018
## [swc_core@v44.0.0] - 2025-10-01
@@ -2560,6 +2568,4 @@
25602568

25612569
- **(ts/fast-strip)** Emit json errors ([#10144](https://github.com/swc-project/swc/issues/10144)) ([740bd57](https://github.com/swc-project/swc/commit/740bd579ae8d081604be606fd69e92298a5d6862))
25622570

2563-
## [swc_core@v16.3.1] - 2025-03-04
2564-
25652571
<!-- generated by git-cliff -->

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
- **(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))
1515

1616

17+
- **(es/react)** Use correct span for `@jsxFrag` as null literal ([#11139](https://github.com/swc-project/swc/issues/11139)) ([9353763](https://github.com/swc-project/swc/commit/9353763e4d7f880ac3175bbdc058a3c3b3bea3bb))
18+
19+
1720
- **(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))
1821

1922
### Features

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/swc_bundler/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ swc_ecma_transforms_base = { version = "27.0.0", path = "../swc_ecma_transforms_
6969
"inline-helpers",
7070
] }
7171
swc_ecma_transforms_proposal = { version = "27.0.0", path = "../swc_ecma_transforms_proposal" }
72-
swc_ecma_transforms_react = { version = "30.0.1", path = "../swc_ecma_transforms_react" }
72+
swc_ecma_transforms_react = { version = "30.0.2", path = "../swc_ecma_transforms_react" }
7373
swc_ecma_transforms_typescript = { version = "30.0.1", path = "../swc_ecma_transforms_typescript" }
7474
swc_malloc = { version = "1.2.3", path = "../swc_malloc" }
7575
testing = { version = "15.0.0", path = "../testing" }

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.1", features = [
41+
swc_core = { version = "44.0.2", features = [
4242
"trace_macro",
4343
"common_concurrent",
4444
"base_concurrent",

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 = "44.0.1"
9+
version = "44.0.2"
1010
[package.metadata.docs.rs]
1111
features = [
1212
"allocator_node",
@@ -373,7 +373,7 @@ swc_ecma_transforms_compat = { optional = true, version = "31.0.0", path =
373373
swc_ecma_transforms_module = { optional = true, version = "30.0.0", path = "../swc_ecma_transforms_module" }
374374
swc_ecma_transforms_optimization = { optional = true, version = "29.0.0", path = "../swc_ecma_transforms_optimization" }
375375
swc_ecma_transforms_proposal = { optional = true, version = "27.0.0", path = "../swc_ecma_transforms_proposal" }
376-
swc_ecma_transforms_react = { optional = true, version = "30.0.1", path = "../swc_ecma_transforms_react" }
376+
swc_ecma_transforms_react = { optional = true, version = "30.0.2", path = "../swc_ecma_transforms_react" }
377377
swc_ecma_transforms_testing = { optional = true, version = "30.0.0", path = "../swc_ecma_transforms_testing" }
378378
swc_ecma_transforms_typescript = { optional = true, version = "30.0.1", path = "../swc_ecma_transforms_typescript" }
379379
swc_ecma_usage_analyzer = { optional = true, version = "22.0.1", path = "../swc_ecma_usage_analyzer" }

crates/swc_ecma_transforms/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ swc_ecma_transforms_compat = { version = "31.0.0", path = "../swc_ecma_tra
4141
swc_ecma_transforms_module = { version = "30.0.0", path = "../swc_ecma_transforms_module", optional = true }
4242
swc_ecma_transforms_optimization = { version = "29.0.0", path = "../swc_ecma_transforms_optimization", optional = true }
4343
swc_ecma_transforms_proposal = { version = "27.0.0", path = "../swc_ecma_transforms_proposal", optional = true }
44-
swc_ecma_transforms_react = { version = "30.0.1", path = "../swc_ecma_transforms_react", optional = true }
44+
swc_ecma_transforms_react = { version = "30.0.2", path = "../swc_ecma_transforms_react", optional = true }
4545
swc_ecma_transforms_typescript = { version = "30.0.1", path = "../swc_ecma_transforms_typescript", optional = true }
4646
swc_ecma_utils = { version = "21.0.0", path = "../swc_ecma_utils" }
4747

crates/swc_ecma_transforms_react/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
77
license = { workspace = true }
88
name = "swc_ecma_transforms_react"
99
repository = { workspace = true }
10-
version = "30.0.1"
10+
version = "30.0.2"
1111

1212
[lib]
1313
bench = false

crates/swc_ecma_transforms_typescript/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ swc_atoms = { version = "7.0.0", path = "../swc_atoms" }
2424
swc_common = { version = "14.0.4", path = "../swc_common" }
2525
swc_ecma_ast = { version = "15.0.0", path = "../swc_ecma_ast" }
2626
swc_ecma_transforms_base = { version = "27.0.0", path = "../swc_ecma_transforms_base" }
27-
swc_ecma_transforms_react = { version = "30.0.1", path = "../swc_ecma_transforms_react" }
27+
swc_ecma_transforms_react = { version = "30.0.2", path = "../swc_ecma_transforms_react" }
2828
swc_ecma_utils = { version = "21.0.0", path = "../swc_ecma_utils" }
2929
swc_ecma_visit = { version = "15.0.0", path = "../swc_ecma_visit" }
3030

0 commit comments

Comments
 (0)