Skip to content

Commit 4808875

Browse files
committed
chore: Publish crates with swc_core v34.0.2
1 parent dd70fbd commit 4808875

42 files changed

Lines changed: 66 additions & 58 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.changeset/curvy-dancers-attend.md

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

.changeset/nice-chairs-yawn.md

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

CHANGELOG-CORE.md

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

4+
### Bug Fixes
5+
6+
7+
8+
- **(es/parser)** Correctly handle EOF position ([#10934](https://github.com/swc-project/swc/issues/10934)) ([dd70fbd](https://github.com/swc-project/swc/commit/dd70fbd0dd24f5c7652cf79d1be99d5f4bb9e1c6))
9+
10+
### Performance
11+
12+
13+
14+
- **(es/parser)** Reduce comparison ([#10933](https://github.com/swc-project/swc/issues/10933)) ([e44fbd4](https://github.com/swc-project/swc/commit/e44fbd44f348dcd16608b4a29a5582198a70e229))
15+
16+
## [swc_core@v34.0.1] - 2025-07-24
17+
418
### Performance
519

620

@@ -2706,6 +2720,4 @@
27062720

27072721
- **(es/minifier)** Do heavy operation only if required ([#9902](https://github.com/swc-project/swc/issues/9902)) ([2687231](https://github.com/swc-project/swc/commit/26872310f60d4de40e717cd30e7bf856bad3edba))
27082722

2709-
## [swc_core@v10.4.0] - 2025-01-19
2710-
27112723
<!-- generated by git-cliff -->

CHANGELOG.md

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

4+
### Bug Fixes
5+
6+
7+
8+
- **(es/parser)** Correctly handle EOF position ([#10934](https://github.com/swc-project/swc/issues/10934)) ([dd70fbd](https://github.com/swc-project/swc/commit/dd70fbd0dd24f5c7652cf79d1be99d5f4bb9e1c6))
9+
410
### Performance
511

612

@@ -10,6 +16,9 @@
1016

1117
- **(es/minifier)** Remove pre-compress pass ([#10932](https://github.com/swc-project/swc/issues/10932)) ([c7f0e4d](https://github.com/swc-project/swc/commit/c7f0e4d5e6c0d6492e750d662711f9b495bc280d))
1218

19+
20+
- **(es/parser)** Reduce comparison ([#10933](https://github.com/swc-project/swc/issues/10933)) ([e44fbd4](https://github.com/swc-project/swc/commit/e44fbd44f348dcd16608b4a29a5582198a70e229))
21+
1322
## [1.13.2] - 2025-07-22
1423

1524
### Bug Fixes

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
@@ -34,7 +34,7 @@ swc_ecma_codegen = { version = "16.0.0", path = "../swc_ecma_codegen" }
3434
swc_ecma_minifier = { version = "28.0.1", path = "../swc_ecma_minifier", features = [
3535
"concurrent",
3636
] }
37-
swc_ecma_parser = { version = "22.0.0", path = "../swc_ecma_parser" }
37+
swc_ecma_parser = { version = "22.0.1", path = "../swc_ecma_parser" }
3838
swc_ecma_transforms_base = { version = "23.0.0", path = "../swc_ecma_transforms_base" }
3939
swc_ecma_visit = { version = "14.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.2", path = "../swc_common" }
2424

2525
[dev-dependencies]
2626
dashmap = { workspace = true }
27-
swc_ecma_parser = { version = "22.0.0", path = "../swc_ecma_parser" }
27+
swc_ecma_parser = { version = "22.0.1", 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
@@ -91,7 +91,7 @@ swc_ecma_loader = { version = "14.0.0", path = "../swc_ecma_loader", features =
9191
"tsc",
9292
] }
9393
swc_ecma_minifier = { version = "28.0.1", path = "../swc_ecma_minifier" }
94-
swc_ecma_parser = { version = "22.0.0", path = "../swc_ecma_parser", default-features = false, features = ["typescript"] }
94+
swc_ecma_parser = { version = "22.0.1", path = "../swc_ecma_parser", default-features = false, features = ["typescript"] }
9595
swc_ecma_preset_env = { version = "28.0.0", path = "../swc_ecma_preset_env" }
9696
swc_ecma_transforms = { version = "27.0.0", path = "../swc_ecma_transforms", features = [
9797
"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.2", path = "../swc_common"
4242
swc_ecma_ast = { version = "14.0.0", path = "../swc_ecma_ast" }
4343
swc_ecma_codegen = { version = "16.0.0", path = "../swc_ecma_codegen" }
4444
swc_ecma_loader = { version = "14.0.0", path = "../swc_ecma_loader" }
45-
swc_ecma_parser = { version = "22.0.0", path = "../swc_ecma_parser", default-features = false, features = ["typescript"] }
45+
swc_ecma_parser = { version = "22.0.1", path = "../swc_ecma_parser", default-features = false, features = ["typescript"] }
4646
swc_ecma_transforms_base = { version = "23.0.0", path = "../swc_ecma_transforms_base" }
4747
swc_ecma_transforms_optimization = { version = "24.0.0", path = "../swc_ecma_transforms_optimization" }
4848
swc_ecma_utils = { version = "19.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
@@ -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 = "34.0.1", features = [
40+
swc_core = { version = "34.0.2", features = [
4141
"trace_macro",
4242
"common_concurrent",
4343
"base_concurrent",

0 commit comments

Comments
 (0)