Skip to content

Commit 1b5b4f8

Browse files
committed
chore: Publish crates with swc_core v26.3.0
1 parent d9ba838 commit 1b5b4f8

File tree

28 files changed

+48
-51
lines changed

28 files changed

+48
-51
lines changed

.changeset/modern-crews-glow.md

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

.changeset/yellow-bikes-complain.md

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

CHANGELOG-CORE.md

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

66

77

8+
- **(es/codegen)** Improve comments handling ([#10534](https://github.com/swc-project/swc/issues/10534)) ([d9ba838](https://github.com/swc-project/swc/commit/d9ba838df9b88d6c4108bc21dd9d6eebd406aacd))
9+
10+
### Refactor
11+
12+
13+
14+
- **(es/lexer)** Cleanup code for reading tokens ([#10533](https://github.com/swc-project/swc/issues/10533)) ([a72092c](https://github.com/swc-project/swc/commit/a72092c13166fe80d494e49cf0c5ec04e93ee4eb))
15+
16+
## [swc_core@v26.2.2] - 2025-05-27
17+
18+
### Bug Fixes
19+
20+
21+
822
- **(ts/fast-dts)** Ensure correct emission of template literals and symbol-keyed properties ([#10530](https://github.com/swc-project/swc/issues/10530)) ([8dbdbef](https://github.com/swc-project/swc/commit/8dbdbef266f508e09f52ffe1cbe2e953e5039a3d))
923

1024
## [swc_core@v26.2.1] - 2025-05-27
@@ -2393,9 +2407,6 @@
23932407
- **(es/isolated-dts)** Preserve comments ([#9572](https://github.com/swc-project/swc/issues/9572)) ([6d15d9c](https://github.com/swc-project/swc/commit/6d15d9c2eb4397b15908cda38f2e44e02d81ebc1))
23942408

23952409

2396-
- **(es/minifier)** Iterate object properties in reverse direction while inlining property access ([#9507](https://github.com/swc-project/swc/issues/9507)) ([f584ef7](https://github.com/swc-project/swc/commit/f584ef76d75e86da15d0725ac94be35a88a1c946))
2397-
2398-
23992410
- **(es/minifier)** Fix name mangler ([#9524](https://github.com/swc-project/swc/issues/9524)) ([5fd68f9](https://github.com/swc-project/swc/commit/5fd68f9a3a9eeef0e61627a821c52ace69a89696))
24002411

24012412

CHANGELOG.md

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

66

77

8+
- **(es/codegen)** Improve comments handling ([#10534](https://github.com/swc-project/swc/issues/10534)) ([d9ba838](https://github.com/swc-project/swc/commit/d9ba838df9b88d6c4108bc21dd9d6eebd406aacd))
9+
10+
811
- **(es/minifier)** Fix missing variable ([#10478](https://github.com/swc-project/swc/issues/10478)) ([6de3ef6](https://github.com/swc-project/swc/commit/6de3ef65bc599679020de13a3085824f06e047a7))
912

1013

@@ -53,6 +56,9 @@
5356
- **(es/codegen)** Migrate to `ryu-js` for numeric literal codegen ([#10503](https://github.com/swc-project/swc/issues/10503)) ([4bc4244](https://github.com/swc-project/swc/commit/4bc4244c195d3a364b588348657fd8a3d8c22079))
5457

5558

59+
- **(es/lexer)** Cleanup code for reading tokens ([#10533](https://github.com/swc-project/swc/issues/10533)) ([a72092c](https://github.com/swc-project/swc/commit/a72092c13166fe80d494e49cf0c5ec04e93ee4eb))
60+
61+
5662
- **(es/parser)** Share code for parsing strings ([#10522](https://github.com/swc-project/swc/issues/10522)) ([931a2d6](https://github.com/swc-project/swc/commit/931a2d6761bfec72cdda7eb875ad02dc217848b9))
5763

5864

@@ -2079,12 +2085,4 @@
20792085

20802086
- **(es/utils)** Rewrite inject_after_super ([#9496](https://github.com/swc-project/swc/issues/9496)) ([c562cfa](https://github.com/swc-project/swc/commit/c562cfa8af1163a4946ef79cb025d461c7e2e5e0))
20812087

2082-
## [1.7.22] - 2024-08-30
2083-
2084-
### Bug Fixes
2085-
2086-
2087-
2088-
- **(es/minifier)** Iterate object properties in reverse direction while inlining property access ([#9507](https://github.com/swc-project/swc/issues/9507)) ([f584ef7](https://github.com/swc-project/swc/commit/f584ef76d75e86da15d0725ac94be35a88a1c946))
2089-
20902088
<!-- generated by git-cliff -->

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
@@ -32,7 +32,7 @@ swc_common = { version = "11.0.0", features = [
3232
"tty-emitter",
3333
], path = "../swc_common" }
3434
swc_ecma_ast = { version = "11.0.0", path = "../swc_ecma_ast" }
35-
swc_ecma_codegen = { version = "13.1.0", path = "../swc_ecma_codegen" }
35+
swc_ecma_codegen = { version = "13.2.0", path = "../swc_ecma_codegen" }
3636
swc_ecma_minifier = { version = "20.0.3", path = "../swc_ecma_minifier", features = [
3737
"concurrent",
3838
] }

crates/swc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ swc_common = { version = "11.0.0", path = "../swc_common", features = [
8080
swc_compiler_base = { version = "22.0.0", path = "../swc_compiler_base" }
8181
swc_config = { version = "3.0.0", path = "../swc_config" }
8282
swc_ecma_ast = { version = "11.0.0", path = "../swc_ecma_ast" }
83-
swc_ecma_codegen = { version = "13.1.0", path = "../swc_ecma_codegen" }
83+
swc_ecma_codegen = { version = "13.2.0", path = "../swc_ecma_codegen" }
8484
swc_ecma_ext_transforms = { version = "15.0.0", path = "../swc_ecma_ext_transforms" }
8585
swc_ecma_lints = { version = "16.0.0", path = "../swc_ecma_lints" }
8686
swc_ecma_loader = { version = "11.0.0", path = "../swc_ecma_loader", features = [

crates/swc_bundler/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ tracing = { workspace = true }
4141
swc_atoms = { version = "5.0.0", path = "../swc_atoms" }
4242
swc_common = { version = "11.0.0", path = "../swc_common" }
4343
swc_ecma_ast = { version = "11.0.0", path = "../swc_ecma_ast" }
44-
swc_ecma_codegen = { version = "13.1.0", path = "../swc_ecma_codegen" }
44+
swc_ecma_codegen = { version = "13.2.0", path = "../swc_ecma_codegen" }
4545
swc_ecma_loader = { version = "11.0.0", path = "../swc_ecma_loader" }
4646
swc_ecma_parser = { version = "14.0.1", path = "../swc_ecma_parser" }
4747
swc_ecma_transforms_base = { version = "15.1.0", path = "../swc_ecma_transforms_base" }

crates/swc_cli_impl/Cargo.toml

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

43-
swc_core = { version = "26.2.2", features = [
43+
swc_core = { version = "26.3.0", features = [
4444
"trace_macro",
4545
"common_concurrent",
4646
"base_concurrent",

crates/swc_compiler_base/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ swc_common = { version = "11.0.0", path = "../swc_common", features = [
2929
] }
3030
swc_config = { version = "3.0.0", path = "../swc_config" }
3131
swc_ecma_ast = { version = "11.0.0", path = "../swc_ecma_ast" }
32-
swc_ecma_codegen = { version = "13.1.0", path = "../swc_ecma_codegen" }
32+
swc_ecma_codegen = { version = "13.2.0", path = "../swc_ecma_codegen" }
3333
swc_ecma_minifier = { version = "20.0.3", path = "../swc_ecma_minifier" }
3434
swc_ecma_parser = { version = "14.0.1", path = "../swc_ecma_parser" }
3535
swc_ecma_visit = { version = "11.0.0", path = "../swc_ecma_visit" }

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 = "26.2.2"
9+
version = "26.3.0"
1010
[package.metadata.docs.rs]
1111
features = [
1212
"allocator_node",
@@ -365,7 +365,7 @@ swc_css_prefixer = { optional = true, version = "13.0.0", path =
365365
swc_css_utils = { optional = true, version = "11.0.0", path = "../swc_css_utils/" }
366366
swc_css_visit = { optional = true, version = "11.0.0", path = "../swc_css_visit" }
367367
swc_ecma_ast = { optional = true, version = "11.0.0", path = "../swc_ecma_ast" }
368-
swc_ecma_codegen = { optional = true, version = "13.1.0", path = "../swc_ecma_codegen" }
368+
swc_ecma_codegen = { optional = true, version = "13.2.0", path = "../swc_ecma_codegen" }
369369
swc_ecma_lints = { optional = true, version = "16.0.0", path = "../swc_ecma_lints" }
370370
swc_ecma_loader = { optional = true, version = "11.0.0", path = "../swc_ecma_loader" }
371371
swc_ecma_minifier = { optional = true, version = "20.0.3", path = "../swc_ecma_minifier" }

crates/swc_ecma_codegen/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_codegen"
99
repository = { workspace = true }
10-
version = "13.1.0"
10+
version = "13.2.0"
1111

1212
[features]
1313
# This does not enable serde for ast nodes.

crates/swc_ecma_lexer/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", "examples/**/*.rs"]
77
license = { workspace = true }
88
name = "swc_ecma_lexer"
99
repository = { workspace = true }
10-
version = "14.0.2"
10+
version = "14.0.3"
1111

1212
[package.metadata.docs.rs]
1313
all-features = true

crates/swc_ecma_lints/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ anyhow = { workspace = true }
3737
codspeed-criterion-compat = { workspace = true }
3838
criterion = { workspace = true }
3939
pretty_assertions = { workspace = true }
40-
swc_ecma_codegen = { version = "13.1.0", path = "../swc_ecma_codegen" }
40+
swc_ecma_codegen = { version = "13.2.0", path = "../swc_ecma_codegen" }
4141
swc_ecma_parser = { version = "14.0.1", path = "../swc_ecma_parser" }
4242
swc_ecma_testing = { version = "12.0.0", path = "../swc_ecma_testing" }
4343
swc_ecma_transforms_base = { version = "15.1.0", path = "../swc_ecma_transforms_base" }

crates/swc_ecma_minifier/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ swc_config = { version = "3.0.0", path = "../swc_config", features = [
6262
swc_ecma_ast = { version = "11.0.0", path = "../swc_ecma_ast", features = [
6363
"serde",
6464
] }
65-
swc_ecma_codegen = { version = "13.1.0", path = "../swc_ecma_codegen" }
65+
swc_ecma_codegen = { version = "13.2.0", path = "../swc_ecma_codegen" }
6666
swc_ecma_parser = { version = "14.0.1", path = "../swc_ecma_parser" }
6767
swc_ecma_transforms_base = { version = "15.1.0", path = "../swc_ecma_transforms_base" }
6868
swc_ecma_transforms_optimization = { version = "16.0.0", path = "../swc_ecma_transforms_optimization" }

crates/swc_ecma_parser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ phf = { workspace = true, features = ["macros"] }
4242
swc_atoms = { version = "5.0.0", path = "../swc_atoms" }
4343
swc_common = { version = "11.0.0", path = "../swc_common" }
4444
swc_ecma_ast = { version = "11.0.0", path = "../swc_ecma_ast" }
45-
swc_ecma_lexer = { version = "14.0.2", path = "../swc_ecma_lexer" }
45+
swc_ecma_lexer = { version = "14.0.3", path = "../swc_ecma_lexer" }
4646
swc_ecma_visit = { version = "11.0.0", path = "../swc_ecma_visit", optional = true }
4747

4848
[target.'cfg(not(any(target_arch = "wasm32", target_arch = "arm")))'.dependencies]

crates/swc_ecma_preset_env/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ codspeed-criterion-compat = { workspace = true }
4444
criterion = { workspace = true }
4545
pretty_assertions = { workspace = true }
4646

47-
swc_ecma_codegen = { version = "13.1.0", path = "../swc_ecma_codegen" }
47+
swc_ecma_codegen = { version = "13.2.0", path = "../swc_ecma_codegen" }
4848
swc_ecma_parser = { version = "14.0.1", path = "../swc_ecma_parser" }
4949
testing = { version = "12.0.0", path = "../testing" }
5050

crates/swc_ecma_transforms/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ pretty_assertions = { workspace = true }
5555
sourcemap = { workspace = true }
5656
tempfile = { workspace = true }
5757

58-
swc_ecma_codegen = { version = "13.1.0", path = "../swc_ecma_codegen" }
58+
swc_ecma_codegen = { version = "13.2.0", path = "../swc_ecma_codegen" }
5959
swc_ecma_parser = { version = "14.0.1", path = "../swc_ecma_parser" }
6060
swc_ecma_transforms_testing = { version = "18.0.0", path = "../swc_ecma_transforms_testing" }
6161
testing = { version = "12.0.0", path = "../testing" }

crates/swc_ecma_transforms_base/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ criterion = { workspace = true }
4242
par-core = { workspace = true, features = ["chili"] }
4343
rayon = { workspace = true }
4444

45-
swc_ecma_codegen = { version = "13.1.0", path = "../swc_ecma_codegen" }
45+
swc_ecma_codegen = { version = "13.2.0", path = "../swc_ecma_codegen" }
4646
swc_ecma_transforms_macros = { version = "1.0.0", path = "../swc_ecma_transforms_macros" }
4747
swc_malloc = { version = "1.2.3", path = "../swc_malloc" }
4848
testing = { version = "12.0.0", path = "../testing" }

crates/swc_ecma_transforms_proposal/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ swc_ecma_visit = { version = "11.0.0", path = "../swc_ecma_visit" }
3535
[dev-dependencies]
3636
serde_json = { workspace = true }
3737

38-
swc_ecma_codegen = { version = "13.1.0", path = "../swc_ecma_codegen" }
38+
swc_ecma_codegen = { version = "13.2.0", path = "../swc_ecma_codegen" }
3939
swc_ecma_parser = { version = "14.0.1", path = "../swc_ecma_parser" }
4040
swc_ecma_transforms_compat = { version = "17.0.0", path = "../swc_ecma_transforms_compat" }
4141
swc_ecma_transforms_testing = { version = "18.0.0", path = "../swc_ecma_transforms_testing" }

crates/swc_ecma_transforms_react/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ swc_ecma_utils = { version = "15.0.1", path = "../swc_ecma_utils" }
4040
swc_ecma_visit = { version = "11.0.0", path = "../swc_ecma_visit" }
4141

4242
[dev-dependencies]
43-
swc_ecma_codegen = { version = "13.1.0", path = "../swc_ecma_codegen/" }
43+
swc_ecma_codegen = { version = "13.2.0", path = "../swc_ecma_codegen/" }
4444
swc_ecma_transforms_compat = { version = "17.0.0", path = "../swc_ecma_transforms_compat/" }
4545
swc_ecma_transforms_testing = { version = "18.0.0", path = "../swc_ecma_transforms_testing" }
4646
testing = { version = "12.0.0", path = "../testing" }

crates/swc_ecma_transforms_testing/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ swc_common = { version = "11.0.0", path = "../swc_common", features = [
2727
"sourcemap",
2828
] }
2929
swc_ecma_ast = { version = "11.0.0", path = "../swc_ecma_ast" }
30-
swc_ecma_codegen = { version = "13.1.0", path = "../swc_ecma_codegen" }
30+
swc_ecma_codegen = { version = "13.2.0", path = "../swc_ecma_codegen" }
3131
swc_ecma_parser = { version = "14.0.1", path = "../swc_ecma_parser" }
3232
swc_ecma_testing = { version = "12.0.0", path = "../swc_ecma_testing" }
3333
swc_ecma_transforms_base = { version = "15.1.0", path = "../swc_ecma_transforms_base" }

crates/swc_ecma_transforms_typescript/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ swc_ecma_visit = { version = "11.0.0", path = "../swc_ecma_visit" }
3333
codspeed-criterion-compat = { workspace = true }
3434
criterion = { workspace = true }
3535

36-
swc_ecma_codegen = { version = "13.1.0", path = "../swc_ecma_codegen" }
36+
swc_ecma_codegen = { version = "13.2.0", path = "../swc_ecma_codegen" }
3737
swc_ecma_parser = { version = "14.0.1", path = "../swc_ecma_parser" }
3838
swc_ecma_transforms_compat = { version = "17.0.0", path = "../swc_ecma_transforms_compat" }
3939
swc_ecma_transforms_proposal = { version = "15.0.0", path = "../swc_ecma_transforms_proposal" }

crates/swc_ecmascript/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ typescript = ["typescript-parser", "swc_ecma_transforms/typescript"]
3939

4040
[dependencies]
4141
swc_ecma_ast = { version = "11.0.0", path = "../swc_ecma_ast" }
42-
swc_ecma_codegen = { version = "13.1.0", path = "../swc_ecma_codegen", optional = true }
42+
swc_ecma_codegen = { version = "13.2.0", path = "../swc_ecma_codegen", optional = true }
4343
swc_ecma_minifier = { version = "20.0.3", path = "../swc_ecma_minifier", optional = true }
4444
swc_ecma_parser = { version = "14.0.1", path = "../swc_ecma_parser", optional = true, default-features = false }
4545
swc_ecma_preset_env = { version = "20.0.0", path = "../swc_ecma_preset_env", optional = true }

crates/swc_fast_ts_strip/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ swc_common = { version = "11.0.0", path = "../swc_common", features = [
2121
"sourcemap",
2222
] }
2323
swc_ecma_ast = { version = "11.0.0", path = "../swc_ecma_ast" }
24-
swc_ecma_codegen = { version = "13.1.0", path = "../swc_ecma_codegen" }
25-
swc_ecma_lexer = { version = "14.0.2", path = "../swc_ecma_lexer" }
24+
swc_ecma_codegen = { version = "13.2.0", path = "../swc_ecma_codegen" }
25+
swc_ecma_lexer = { version = "14.0.3", path = "../swc_ecma_lexer" }
2626
swc_ecma_transforms_base = { version = "15.1.0", path = "../swc_ecma_transforms_base" }
2727
swc_ecma_transforms_typescript = { version = "17.0.0", path = "../swc_ecma_transforms_typescript" }
2828
swc_ecma_visit = { version = "11.0.0", path = "../swc_ecma_visit" }

crates/swc_html_minifier/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ swc_css_codegen = { version = "11.0.0", path = "../swc_css_codegen", optional =
3939
swc_css_minifier = { version = "11.0.0", path = "../swc_css_minifier", optional = true }
4040
swc_css_parser = { version = "11.0.0", path = "../swc_css_parser", optional = true }
4141
swc_ecma_ast = { version = "11.0.0", path = "../swc_ecma_ast" }
42-
swc_ecma_codegen = { version = "13.1.0", path = "../swc_ecma_codegen", features = [
42+
swc_ecma_codegen = { version = "13.2.0", path = "../swc_ecma_codegen", features = [
4343
"serde-impl",
4444
] }
4545
swc_ecma_minifier = { version = "20.0.3", path = "../swc_ecma_minifier", features = [

crates/swc_node_bundler/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ swc_common = { version = "11.0.0", path = "../swc_common", features = [
3939
"concurrent",
4040
] }
4141
swc_ecma_ast = { version = "11.0.0", path = "../swc_ecma_ast" }
42-
swc_ecma_codegen = { version = "13.1.0", path = "../swc_ecma_codegen" }
42+
swc_ecma_codegen = { version = "13.2.0", path = "../swc_ecma_codegen" }
4343
swc_ecma_loader = { version = "11.0.0", path = "../swc_ecma_loader" }
4444
swc_ecma_parser = { version = "14.0.1", path = "../swc_ecma_parser" }
4545
swc_ecma_transforms = { version = "19.0.0", path = "../swc_ecma_transforms" }

crates/swc_typescript/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ swc_ecma_visit = { version = "11.0.0", path = "../swc_ecma_visit" }
2222

2323

2424
[dev-dependencies]
25-
swc_ecma_codegen = { version = "13.1.0", path = "../swc_ecma_codegen" }
25+
swc_ecma_codegen = { version = "13.2.0", path = "../swc_ecma_codegen" }
2626
swc_ecma_parser = { version = "14.0.1", path = "../swc_ecma_parser" }
2727
swc_ecma_transforms_base = { version = "15.1.0", path = "../swc_ecma_transforms_base" }
2828
testing = { version = "12.0.0", path = "../testing" }

0 commit comments

Comments
 (0)