Skip to content

Commit 60ae9f3

Browse files
committed
chore: Publish crates with swc_core v10.5.1
1 parent a228347 commit 60ae9f3

File tree

53 files changed

+109
-118
lines changed

Some content is hidden

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

53 files changed

+109
-118
lines changed

.changeset/kind-feet-swim.md

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

.changeset/tall-apples-cross.md

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

CHANGELOG.md

Lines changed: 9 additions & 6 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/minifier)** Set param type to unknown ([#9905](https://github.com/swc-project/swc/issues/9905)) ([09b3b37](https://github.com/swc-project/swc/commit/09b3b371f93ca603c61992eca3e44208cd857dc5))
9+
410
### Documentation
511

612

@@ -13,6 +19,9 @@
1319

1420
- **(es/minifier)** Print total size from `minify-all` example ([#9897](https://github.com/swc-project/swc/issues/9897)) ([134000f](https://github.com/swc-project/swc/commit/134000fe93029c3af887726e5be6da1fd812e330))
1521

22+
23+
- **(es/minifier)** Turn `1 * v` into `+v` ([#9903](https://github.com/swc-project/swc/issues/9903)) ([a228347](https://github.com/swc-project/swc/commit/a2283475b1b8f770e113806590f4959550f89f31))
24+
1625
### Miscellaneous Tasks
1726

1827

@@ -1550,12 +1559,6 @@
15501559

15511560
- **(es/minifier)** Handle more indexing expression ([#8750](https://github.com/swc-project/swc/issues/8750)) ([570c47a](https://github.com/swc-project/swc/commit/570c47a9acd7363428f58dfea2f41c097f73ec1f))
15521561

1553-
### Performance
1554-
1555-
1556-
1557-
- **(es/lexer)** Do not use `memchr::memmem` in parser ([#9118](https://github.com/swc-project/swc/issues/9118)) ([72021de](https://github.com/swc-project/swc/commit/72021def15225c7355f80b72b16ab3bfd99f51ad))
1558-
15591562
### Refactor
15601563

15611564

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/binding_macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ binding_wasm = [
3535
# Common deps for the SWC imports
3636
swc = { optional = true, version = "10.0.0", path = "../swc" }
3737
swc_common = { optional = true, version = "5.0.0", path = "../swc_common" }
38-
swc_ecma_ast = { optional = true, version = "5.0.2", path = "../swc_ecma_ast" }
38+
swc_ecma_ast = { optional = true, version = "5.0.3", path = "../swc_ecma_ast" }
3939
swc_ecma_transforms = { optional = true, version = "9.0.0", path = "../swc_ecma_transforms" }
4040
swc_ecma_visit = { optional = true, version = "5.0.0", path = "../swc_ecma_visit" }
4141

crates/dbg-swc/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ swc_common = { version = "5.0.0", features = [
3131
"concurrent",
3232
"tty-emitter",
3333
], path = "../swc_common" }
34-
swc_ecma_ast = { version = "5.0.2", path = "../swc_ecma_ast" }
34+
swc_ecma_ast = { version = "5.0.3", path = "../swc_ecma_ast" }
3535
swc_ecma_codegen = { version = "5.1.0", path = "../swc_ecma_codegen" }
36-
swc_ecma_minifier = { version = "7.3.0", path = "../swc_ecma_minifier", features = [
36+
swc_ecma_minifier = { version = "7.3.1", path = "../swc_ecma_minifier", features = [
3737
"concurrent",
3838
] }
3939
swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" }

crates/jsdoc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ swc_common = { version = "5.0.0", path = "../swc_common" }
2626
anyhow = { workspace = true }
2727
dashmap = { workspace = true }
2828

29-
swc_ecma_ast = { version = "5.0.2", path = "../swc_ecma_ast" }
29+
swc_ecma_ast = { version = "5.0.3", path = "../swc_ecma_ast" }
3030
swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" }
3131
testing = { version = "5.0.0", path = "../testing" }

crates/swc/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ swc_common = { version = "5.0.0", path = "../swc_common", features = [
7979
] }
8080
swc_compiler_base = { version = "8.0.0", path = "../swc_compiler_base" }
8181
swc_config = { version = "1.0.0", path = "../swc_config" }
82-
swc_ecma_ast = { version = "5.0.2", path = "../swc_ecma_ast" }
82+
swc_ecma_ast = { version = "5.0.3", path = "../swc_ecma_ast" }
8383
swc_ecma_codegen = { version = "5.1.0", path = "../swc_ecma_codegen" }
8484
swc_ecma_ext_transforms = { version = "7.0.0", path = "../swc_ecma_ext_transforms" }
8585
swc_ecma_lints = { version = "7.0.1", path = "../swc_ecma_lints" }
@@ -88,7 +88,7 @@ swc_ecma_loader = { version = "5.0.0", path = "../swc_ecma_loader", features = [
8888
"node",
8989
"tsc",
9090
] }
91-
swc_ecma_minifier = { version = "7.3.0", path = "../swc_ecma_minifier" }
91+
swc_ecma_minifier = { version = "7.3.1", path = "../swc_ecma_minifier" }
9292
swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" }
9393
swc_ecma_preset_env = { version = "9.0.0", path = "../swc_ecma_preset_env" }
9494
swc_ecma_transforms = { version = "9.0.0", path = "../swc_ecma_transforms", features = [
@@ -102,7 +102,7 @@ swc_ecma_transforms = { version = "9.0.0", path = "../swc_ecma_transforms", feat
102102
swc_ecma_transforms_base = { version = "7.1.1", path = "../swc_ecma_transforms_base" }
103103
swc_ecma_transforms_compat = { version = "8.0.0", path = "../swc_ecma_transforms_compat" }
104104
swc_ecma_transforms_optimization = { version = "7.1.1", path = "../swc_ecma_transforms_optimization" }
105-
swc_ecma_utils = { version = "7.0.3", path = "../swc_ecma_utils" }
105+
swc_ecma_utils = { version = "7.0.4", path = "../swc_ecma_utils" }
106106
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
107107
swc_error_reporters = { version = "6.0.0", path = "../swc_error_reporters" }
108108
swc_node_comments = { version = "5.0.0", path = "../swc_node_comments" }
@@ -136,7 +136,7 @@ rayon = { workspace = true }
136136
walkdir = { workspace = true }
137137

138138
codspeed-criterion-compat = { workspace = true }
139-
swc_ecma_ast = { version = "5.0.2", path = "../swc_ecma_ast", features = [
139+
swc_ecma_ast = { version = "5.0.3", path = "../swc_ecma_ast", features = [
140140
"serde-impl",
141141
] }
142142
swc_ecma_lints = { version = "7.0.1", path = "../swc_ecma_lints", features = [

crates/swc_bundler/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@ tracing = { workspace = true }
3939

4040
swc_atoms = { version = "3.0.3", path = "../swc_atoms" }
4141
swc_common = { version = "5.0.0", path = "../swc_common" }
42-
swc_ecma_ast = { version = "5.0.2", path = "../swc_ecma_ast" }
42+
swc_ecma_ast = { version = "5.0.3", path = "../swc_ecma_ast" }
4343
swc_ecma_codegen = { version = "5.1.0", path = "../swc_ecma_codegen" }
4444
swc_ecma_loader = { version = "5.0.0", path = "../swc_ecma_loader" }
4545
swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" }
4646
swc_ecma_transforms_base = { version = "7.1.1", path = "../swc_ecma_transforms_base" }
4747
swc_ecma_transforms_optimization = { version = "7.1.1", path = "../swc_ecma_transforms_optimization" }
48-
swc_ecma_utils = { version = "7.0.3", path = "../swc_ecma_utils" }
48+
swc_ecma_utils = { version = "7.0.4", path = "../swc_ecma_utils" }
4949
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
5050
swc_fast_graph = { version = "6.0.0", path = "../swc_fast_graph/" }
5151
swc_graph_analyzer = { version = "5.0.0", path = "../swc_graph_analyzer/" }
@@ -63,7 +63,7 @@ swc_ecma_loader = { version = "5.0.0", path = "../swc_ecma_loader", features = [
6363
"node",
6464
"cache",
6565
] }
66-
swc_ecma_minifier = { version = "7.3.0", path = "../swc_ecma_minifier", features = [
66+
swc_ecma_minifier = { version = "7.3.1", path = "../swc_ecma_minifier", features = [
6767
"concurrent",
6868
] }
6969
swc_ecma_transforms_proposal = { version = "7.0.1", path = "../swc_ecma_transforms_proposal" }

crates/swc_cli_impl/Cargo.toml

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

42-
swc_core = { version = "10.5.0", features = [
42+
swc_core = { version = "10.5.1", features = [
4343
"trace_macro",
4444
"common_concurrent",
4545
"base_concurrent",

0 commit comments

Comments
 (0)