Skip to content

Commit 4e903e9

Browse files
committed
chore: Publish crates with swc_core v6.0.1
1 parent e0fdd68 commit 4e903e9

File tree

63 files changed

+140
-148
lines changed

Some content is hidden

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

63 files changed

+140
-148
lines changed

.changeset/silent-flowers-agree.md

-8
This file was deleted.

.changeset/smart-horses-repeat.md

-9
This file was deleted.

CHANGELOG.md

+15-6
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,23 @@
55

66

77

8+
- **(@swc/types)** Tsc build file ignored by npm ([#9754](https://github.com/swc-project/swc/issues/9754)) ([14a5c1e](https://github.com/swc-project/swc/commit/14a5c1ebd233ab0e105a1affdf04d689446d80dc))
9+
10+
11+
- **(es)** Source map `super(...args)` calls in injected constructors ([#9745](https://github.com/swc-project/swc/issues/9745)) ([35b0ca0](https://github.com/swc-project/swc/commit/35b0ca007147dea03e911795639c8b032a0fbd28))
12+
13+
814
- **(es/plugin)** Migrate `swc plugin new` to use `.cargo/config.toml` ([#9740](https://github.com/swc-project/swc/issues/9740)) ([4ffb21e](https://github.com/swc-project/swc/commit/4ffb21ebe6e40f85f8b7f78cd29b10965fe035b1))
915

1016

1117
- **(es/resolver)** Ignore `VarDecl` with `declare: true` ([#9734](https://github.com/swc-project/swc/issues/9734)) ([aa0f784](https://github.com/swc-project/swc/commit/aa0f784c7d38d106e65e6aae1f0a318f575a0f09))
1218

19+
### Documentation
20+
21+
22+
23+
- **(types)** Document `Assumptions` API ([#9746](https://github.com/swc-project/swc/issues/9746)) ([cd4321c](https://github.com/swc-project/swc/commit/cd4321c88a97a9a6f9d0f972dcebe5e19a1326bb))
24+
1325
### Features
1426

1527

@@ -19,6 +31,9 @@
1931

2032
- **(plugin)** Update `wasmer` to `v5` ([#9731](https://github.com/swc-project/swc/issues/9731)) ([9b74ccd](https://github.com/swc-project/swc/commit/9b74ccd92cf138d11790178f5817c89e44aa2deb))
2133

34+
35+
- **(visit)** Derive serde for `AstParentKind` ([#9744](https://github.com/swc-project/swc/issues/9744)) ([e0fdd68](https://github.com/swc-project/swc/commit/e0fdd68183b9851050e1a03a903261275872044e))
36+
2237
### Miscellaneous Tasks
2338

2439

@@ -1463,12 +1478,6 @@
14631478
- **(es)** Integrate experimental data API ([#9027](https://github.com/swc-project/swc/issues/9027)) ([825749f](https://github.com/swc-project/swc/commit/825749f44052234ba0de9db3f4cea40517ddd917))
14641479

14651480

1466-
- **(es/minifier)** Support `module: "unknown"` ([#9026](https://github.com/swc-project/swc/issues/9026)) ([cada50b](https://github.com/swc-project/swc/commit/cada50b01746978d7c2c16fd03c3a6672aeed118))
1467-
1468-
14691481
- **(es/renamer)** Workaround a bug of Safari ([#9029](https://github.com/swc-project/swc/issues/9029)) ([54ac992](https://github.com/swc-project/swc/commit/54ac992781fa5a619ee1bcb9f097c3915276d9a3))
14701482

1471-
1472-
- **(es/transforms)** Add an API for returning metadata to JS ([#9022](https://github.com/swc-project/swc/issues/9022)) ([6ce112c](https://github.com/swc-project/swc/commit/6ce112cfebc9be87df7d6e532a67a1af43cc0038))
1473-
14741483
<!-- generated by git-cliff -->

Cargo.lock

+9-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/binding_macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ swc = { optional = true, version = "6.0.0", path = "../swc" }
3737
swc_common = { optional = true, version = "4.0.1", path = "../swc_common" }
3838
swc_ecma_ast = { optional = true, version = "4.0.1", path = "../swc_ecma_ast" }
3939
swc_ecma_transforms = { optional = true, version = "6.0.0", path = "../swc_ecma_transforms" }
40-
swc_ecma_visit = { optional = true, version = "4.0.0", path = "../swc_ecma_visit" }
40+
swc_ecma_visit = { optional = true, version = "4.0.1", path = "../swc_ecma_visit" }
4141

4242
# Optional deps for the wasm binding macro
4343
anyhow = { workspace = true, optional = true }

crates/dbg-swc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,6 @@ swc_ecma_minifier = { version = "5.0.0", path = "../swc_ecma_minifier", features
3838
] }
3939
swc_ecma_parser = { version = "5.0.0", path = "../swc_ecma_parser" }
4040
swc_ecma_transforms_base = { version = "5.0.1", path = "../swc_ecma_transforms_base" }
41-
swc_ecma_visit = { version = "4.0.0", path = "../swc_ecma_visit" }
41+
swc_ecma_visit = { version = "4.0.1", path = "../swc_ecma_visit" }
4242
swc_error_reporters = { version = "5.0.0", path = "../swc_error_reporters" }
4343
swc_timer = { version = "1.0.0", path = "../swc_timer" }

crates/swc/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -100,10 +100,10 @@ swc_ecma_transforms = { version = "6.0.0", path = "../swc_ecma_transforms", feat
100100
"typescript",
101101
] }
102102
swc_ecma_transforms_base = { version = "5.0.1", path = "../swc_ecma_transforms_base" }
103-
swc_ecma_transforms_compat = { version = "6.0.0", path = "../swc_ecma_transforms_compat" }
103+
swc_ecma_transforms_compat = { version = "6.0.1", path = "../swc_ecma_transforms_compat" }
104104
swc_ecma_transforms_optimization = { version = "5.0.0", path = "../swc_ecma_transforms_optimization" }
105-
swc_ecma_utils = { version = "5.0.0", path = "../swc_ecma_utils" }
106-
swc_ecma_visit = { version = "4.0.0", path = "../swc_ecma_visit" }
105+
swc_ecma_utils = { version = "5.0.1", path = "../swc_ecma_utils" }
106+
swc_ecma_visit = { version = "4.0.1", path = "../swc_ecma_visit" }
107107
swc_error_reporters = { version = "5.0.0", path = "../swc_error_reporters" }
108108
swc_node_comments = { version = "4.0.0", path = "../swc_node_comments" }
109109
swc_plugin_proxy = { version = "4.0.0", path = "../swc_plugin_proxy", optional = true }

crates/swc_bundler/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ swc_ecma_loader = { version = "4.0.0", path = "../swc_ecma_load
4545
swc_ecma_parser = { version = "5.0.0", path = "../swc_ecma_parser" }
4646
swc_ecma_transforms_base = { version = "5.0.1", path = "../swc_ecma_transforms_base" }
4747
swc_ecma_transforms_optimization = { version = "5.0.0", path = "../swc_ecma_transforms_optimization" }
48-
swc_ecma_utils = { version = "5.0.0", path = "../swc_ecma_utils" }
49-
swc_ecma_visit = { version = "4.0.0", path = "../swc_ecma_visit" }
48+
swc_ecma_utils = { version = "5.0.1", path = "../swc_ecma_utils" }
49+
swc_ecma_visit = { version = "4.0.1", path = "../swc_ecma_visit" }
5050
swc_fast_graph = { version = "5.0.0", path = "../swc_fast_graph/" }
5151
swc_graph_analyzer = { version = "4.0.0", path = "../swc_graph_analyzer/" }
5252

@@ -66,7 +66,7 @@ swc_ecma_loader = { version = "4.0.0", path = "../swc_ecma_loader", features = [
6666
swc_ecma_minifier = { version = "5.0.0", path = "../swc_ecma_minifier", features = [
6767
"concurrent",
6868
] }
69-
swc_ecma_transforms_proposal = { version = "5.0.0", path = "../swc_ecma_transforms_proposal" }
69+
swc_ecma_transforms_proposal = { version = "5.0.1", path = "../swc_ecma_transforms_proposal" }
7070
swc_ecma_transforms_react = { version = "5.0.0", path = "../swc_ecma_transforms_react" }
7171
swc_ecma_transforms_typescript = { version = "5.0.0", path = "../swc_ecma_transforms_typescript" }
7272
swc_malloc = { version = "1.0.0", path = "../swc_malloc" }

crates/swc_compiler_base/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ swc_ecma_ast = { version = "4.0.1", path = "../swc_ecma_ast" }
3232
swc_ecma_codegen = { version = "4.0.2", path = "../swc_ecma_codegen" }
3333
swc_ecma_minifier = { version = "5.0.0", path = "../swc_ecma_minifier" }
3434
swc_ecma_parser = { version = "5.0.0", path = "../swc_ecma_parser" }
35-
swc_ecma_visit = { version = "4.0.0", path = "../swc_ecma_visit" }
35+
swc_ecma_visit = { version = "4.0.1", path = "../swc_ecma_visit" }
3636
swc_timer = { version = "1.0.0", path = "../swc_timer" }
3737

3838
[dependencies.napi-derive]

crates/swc_core/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ swc_css_modules = { optional = true, version = "4.0.0", path =
352352
swc_css_parser = { optional = true, version = "4.0.0", path = "../swc_css_parser" }
353353
swc_css_prefixer = { optional = true, version = "4.0.0", path = "../swc_css_prefixer" }
354354
swc_css_utils = { optional = true, version = "4.0.0", path = "../swc_css_utils/" }
355-
swc_css_visit = { optional = true, version = "4.0.0", path = "../swc_css_visit" }
355+
swc_css_visit = { optional = true, version = "4.0.1", path = "../swc_css_visit" }
356356
swc_ecma_ast = { optional = true, version = "4.0.1", path = "../swc_ecma_ast" }
357357
swc_ecma_codegen = { optional = true, version = "4.0.2", path = "../swc_ecma_codegen" }
358358
swc_ecma_lints = { optional = true, version = "5.0.0", path = "../swc_ecma_lints" }
@@ -362,16 +362,16 @@ swc_ecma_parser = { optional = true, version = "5.0.0", path =
362362
swc_ecma_preset_env = { optional = true, version = "6.0.0", path = "../swc_ecma_preset_env" }
363363
swc_ecma_quote_macros = { optional = true, version = "5.0.0", path = "../swc_ecma_quote_macros" }
364364
swc_ecma_transforms_base = { optional = true, version = "5.0.1", path = "../swc_ecma_transforms_base" }
365-
swc_ecma_transforms_compat = { optional = true, version = "6.0.0", path = "../swc_ecma_transforms_compat" }
365+
swc_ecma_transforms_compat = { optional = true, version = "6.0.1", path = "../swc_ecma_transforms_compat" }
366366
swc_ecma_transforms_module = { optional = true, version = "5.0.0", path = "../swc_ecma_transforms_module" }
367367
swc_ecma_transforms_optimization = { optional = true, version = "5.0.0", path = "../swc_ecma_transforms_optimization" }
368-
swc_ecma_transforms_proposal = { optional = true, version = "5.0.0", path = "../swc_ecma_transforms_proposal" }
368+
swc_ecma_transforms_proposal = { optional = true, version = "5.0.1", path = "../swc_ecma_transforms_proposal" }
369369
swc_ecma_transforms_react = { optional = true, version = "5.0.0", path = "../swc_ecma_transforms_react" }
370370
swc_ecma_transforms_testing = { optional = true, version = "5.0.0", path = "../swc_ecma_transforms_testing" }
371371
swc_ecma_transforms_typescript = { optional = true, version = "5.0.0", path = "../swc_ecma_transforms_typescript" }
372372
swc_ecma_usage_analyzer = { optional = true, version = "5.0.0", path = "../swc_ecma_usage_analyzer" }
373-
swc_ecma_utils = { optional = true, version = "5.0.0", path = "../swc_ecma_utils" }
374-
swc_ecma_visit = { optional = true, version = "4.0.0", path = "../swc_ecma_visit" }
373+
swc_ecma_utils = { optional = true, version = "5.0.1", path = "../swc_ecma_utils" }
374+
swc_ecma_visit = { optional = true, version = "4.0.1", path = "../swc_ecma_visit" }
375375
swc_malloc = { optional = true, version = "1.0.0", path = "../swc_malloc" }
376376
swc_node_bundler = { optional = true, version = "6.0.0", path = "../swc_node_bundler" }
377377
swc_nodejs_common = { optional = true, version = "1.0.0", path = "../swc_nodejs_common" }

crates/swc_css/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ swc_css_modules = { version = "4.0.0", path = "../swc_css_modules", optional =
3030
swc_css_parser = { version = "4.0.0", path = "../swc_css_parser" }
3131
swc_css_prefixer = { version = "4.0.0", path = "../swc_css_prefixer", optional = true }
3232
swc_css_utils = { version = "4.0.0", path = "../swc_css_utils/" }
33-
swc_css_visit = { version = "4.0.0", path = "../swc_css_visit" }
33+
swc_css_visit = { version = "4.0.1", path = "../swc_css_visit" }

crates/swc_css_codegen/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ swc_common = { version = "4.0.1", path = "../swc_common", features = [
2929
"sourcemap",
3030
] }
3131
swc_css_parser = { version = "4.0.0", path = "../swc_css_parser" }
32-
swc_css_visit = { version = "4.0.0", path = "../swc_css_visit" }
32+
swc_css_visit = { version = "4.0.1", path = "../swc_css_visit" }
3333
testing = { version = "4.0.0", path = "../testing" }

crates/swc_css_compat/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ swc_atoms = { version = "2.0.0", path = "../swc_atoms" }
2222
swc_common = { version = "4.0.1", path = "../swc_common" }
2323
swc_css_ast = { version = "4.0.1", path = "../swc_css_ast" }
2424
swc_css_utils = { version = "4.0.0", path = "../swc_css_utils/" }
25-
swc_css_visit = { version = "4.0.0", path = "../swc_css_visit" }
25+
swc_css_visit = { version = "4.0.1", path = "../swc_css_visit" }
2626

2727
[dev-dependencies]
2828
swc_css_codegen = { version = "4.0.0", path = "../swc_css_codegen" }

crates/swc_css_lints/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ swc_atoms = { version = "2.0.0", path = "../swc_atoms" }
2323
swc_cached = { version = "1.0.0", path = "../swc_cached" }
2424
swc_common = { version = "4.0.1", path = "../swc_common" }
2525
swc_css_ast = { version = "4.0.1", path = "../swc_css_ast" }
26-
swc_css_visit = { version = "4.0.0", path = "../swc_css_visit" }
26+
swc_css_visit = { version = "4.0.1", path = "../swc_css_visit" }
2727

2828
[dev-dependencies]
2929
serde_json = { workspace = true }

crates/swc_css_minifier/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ swc_atoms = { version = "2.0.0", path = "../swc_atoms" }
1919
swc_common = { version = "4.0.1", path = "../swc_common" }
2020
swc_css_ast = { version = "4.0.1", path = "../swc_css_ast" }
2121
swc_css_utils = { version = "4.0.0", path = "../swc_css_utils/" }
22-
swc_css_visit = { version = "4.0.0", path = "../swc_css_visit" }
22+
swc_css_visit = { version = "4.0.1", path = "../swc_css_visit" }
2323

2424
[dev-dependencies]
2525
codspeed-criterion-compat = { workspace = true }

crates/swc_css_modules/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ swc_common = { version = "4.0.1", path = "../swc_common" }
2323
swc_css_ast = { version = "4.0.1", path = "../swc_css_ast" }
2424
swc_css_codegen = { version = "4.0.0", path = "../swc_css_codegen" }
2525
swc_css_parser = { version = "4.0.0", path = "../swc_css_parser" }
26-
swc_css_visit = { version = "4.0.0", path = "../swc_css_visit" }
26+
swc_css_visit = { version = "4.0.1", path = "../swc_css_visit" }
2727

2828
[dev-dependencies]
2929
indexmap = { workspace = true, features = ["serde"] }

crates/swc_css_parser/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ serde_json = { workspace = true }
3131
swc_css_ast = { version = "4.0.1", path = "../swc_css_ast", features = [
3232
"serde-impl",
3333
] }
34-
swc_css_visit = { version = "4.0.0", path = "../swc_css_visit" }
34+
swc_css_visit = { version = "4.0.1", path = "../swc_css_visit" }
3535
swc_malloc = { version = "1.0.0", path = "../swc_malloc" }
3636
testing = { version = "4.0.0", path = "../testing" }
3737

crates/swc_css_prefixer/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ swc_atoms = { version = "2.0.0", path = "../swc_atoms" }
2222
swc_common = { version = "4.0.1", path = "../swc_common" }
2323
swc_css_ast = { version = "4.0.1", path = "../swc_css_ast" }
2424
swc_css_utils = { version = "4.0.0", path = "../swc_css_utils/" }
25-
swc_css_visit = { version = "4.0.0", path = "../swc_css_visit" }
25+
swc_css_visit = { version = "4.0.1", path = "../swc_css_visit" }
2626

2727
[dev-dependencies]
2828
swc_css_codegen = { version = "4.0.0", path = "../swc_css_codegen" }

crates/swc_css_utils/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ serde_json = { workspace = true }
2020
swc_atoms = { version = "2.0.0", path = "../swc_atoms" }
2121
swc_common = { version = "4.0.1", path = "../swc_common" }
2222
swc_css_ast = { version = "4.0.1", path = "../swc_css_ast" }
23-
swc_css_visit = { version = "4.0.0", path = "../swc_css_visit" }
23+
swc_css_visit = { version = "4.0.1", path = "../swc_css_visit" }

crates/swc_css_visit/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
license = "Apache-2.0"
77
name = "swc_css_visit"
88
repository = "https://github.com/swc-project/swc.git"
9-
version = "4.0.0"
9+
version = "4.0.1"
1010

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

crates/swc_ecma_compat_bugfixes/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ version = "5.0.0"
1414
swc_atoms = { version = "2.0.0", path = "../swc_atoms" }
1515
swc_common = { version = "4.0.1", path = "../swc_common" }
1616
swc_ecma_ast = { version = "4.0.1", path = "../swc_ecma_ast" }
17-
swc_ecma_compat_es2015 = { version = "5.0.0", path = "../swc_ecma_compat_es2015" }
17+
swc_ecma_compat_es2015 = { version = "5.0.1", path = "../swc_ecma_compat_es2015" }
1818
swc_ecma_transforms_base = { version = "5.0.1", path = "../swc_ecma_transforms_base" }
19-
swc_ecma_utils = { version = "5.0.0", path = "../swc_ecma_utils" }
20-
swc_ecma_visit = { version = "4.0.0", path = "../swc_ecma_visit" }
19+
swc_ecma_utils = { version = "5.0.1", path = "../swc_ecma_utils" }
20+
swc_ecma_visit = { version = "4.0.1", path = "../swc_ecma_visit" }
2121
swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" }
2222
tracing = { workspace = true }
2323

crates/swc_ecma_compat_common/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ version = "5.0.0"
1414
[dependencies]
1515
swc_common = { version = "4.0.1", path = "../swc_common" }
1616
swc_ecma_ast = { version = "4.0.1", path = "../swc_ecma_ast" }
17-
swc_ecma_utils = { version = "5.0.0", path = "../swc_ecma_utils" }
18-
swc_ecma_visit = { version = "4.0.0", path = "../swc_ecma_visit" }
17+
swc_ecma_utils = { version = "5.0.1", path = "../swc_ecma_utils" }
18+
swc_ecma_visit = { version = "4.0.1", path = "../swc_ecma_visit" }
1919
swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" }

crates/swc_ecma_compat_es2015/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
77
license = "Apache-2.0"
88
name = "swc_ecma_compat_es2015"
99
repository = "https://github.com/swc-project/swc.git"
10-
version = "5.0.0"
10+
version = "5.0.1"
1111

1212

1313
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@@ -30,8 +30,8 @@ swc_ecma_compat_common = { version = "5.0.0", path = "../swc_ecma_compat_co
3030
swc_ecma_transforms_base = { version = "5.0.1", path = "../swc_ecma_transforms_base" }
3131
swc_ecma_transforms_classes = { version = "5.0.0", path = "../swc_ecma_transforms_classes" }
3232
swc_ecma_transforms_macros = { version = "1.0.0", path = "../swc_ecma_transforms_macros" }
33-
swc_ecma_utils = { version = "5.0.0", path = "../swc_ecma_utils" }
34-
swc_ecma_visit = { version = "4.0.0", path = "../swc_ecma_visit" }
33+
swc_ecma_utils = { version = "5.0.1", path = "../swc_ecma_utils" }
34+
swc_ecma_visit = { version = "4.0.1", path = "../swc_ecma_visit" }
3535
swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" }
3636
tracing = { workspace = true }
3737

crates/swc_ecma_compat_es2016/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ swc_common = { version = "4.0.1", path = "../swc_common" }
1818
swc_ecma_ast = { version = "4.0.1", path = "../swc_ecma_ast" }
1919
swc_ecma_transforms_base = { version = "5.0.1", path = "../swc_ecma_transforms_base" }
2020
swc_ecma_transforms_macros = { version = "1.0.0", path = "../swc_ecma_transforms_macros" }
21-
swc_ecma_utils = { version = "5.0.0", path = "../swc_ecma_utils" }
22-
swc_ecma_visit = { version = "4.0.0", path = "../swc_ecma_visit" }
21+
swc_ecma_utils = { version = "5.0.1", path = "../swc_ecma_utils" }
22+
swc_ecma_visit = { version = "4.0.1", path = "../swc_ecma_visit" }
2323
swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" }
2424
tracing = { workspace = true }
2525

0 commit comments

Comments
 (0)