Skip to content

Commit

Permalink
chore: Publish crates with swc_core v10.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Jan 20, 2025
1 parent a228347 commit 60ae9f3
Show file tree
Hide file tree
Showing 53 changed files with 109 additions and 118 deletions.
6 changes: 0 additions & 6 deletions .changeset/kind-feet-swim.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/tall-apples-cross.md

This file was deleted.

15 changes: 9 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Changelog
## [unreleased]

### Bug Fixes



- **(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))

### Documentation


Expand All @@ -13,6 +19,9 @@

- **(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))


- **(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))

### Miscellaneous Tasks


Expand Down Expand Up @@ -1550,12 +1559,6 @@

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

### Performance



- **(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))

### Refactor


Expand Down
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/binding_macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ binding_wasm = [
# Common deps for the SWC imports
swc = { optional = true, version = "10.0.0", path = "../swc" }
swc_common = { optional = true, version = "5.0.0", path = "../swc_common" }
swc_ecma_ast = { optional = true, version = "5.0.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { optional = true, version = "5.0.3", path = "../swc_ecma_ast" }
swc_ecma_transforms = { optional = true, version = "9.0.0", path = "../swc_ecma_transforms" }
swc_ecma_visit = { optional = true, version = "5.0.0", path = "../swc_ecma_visit" }

Expand Down
4 changes: 2 additions & 2 deletions crates/dbg-swc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ swc_common = { version = "5.0.0", features = [
"concurrent",
"tty-emitter",
], path = "../swc_common" }
swc_ecma_ast = { version = "5.0.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "5.0.3", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "5.1.0", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "7.3.0", path = "../swc_ecma_minifier", features = [
swc_ecma_minifier = { version = "7.3.1", path = "../swc_ecma_minifier", features = [
"concurrent",
] }
swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" }
Expand Down
2 changes: 1 addition & 1 deletion crates/jsdoc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ swc_common = { version = "5.0.0", path = "../swc_common" }
anyhow = { workspace = true }
dashmap = { workspace = true }

swc_ecma_ast = { version = "5.0.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "5.0.3", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" }
testing = { version = "5.0.0", path = "../testing" }
8 changes: 4 additions & 4 deletions crates/swc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ swc_common = { version = "5.0.0", path = "../swc_common", features = [
] }
swc_compiler_base = { version = "8.0.0", path = "../swc_compiler_base" }
swc_config = { version = "1.0.0", path = "../swc_config" }
swc_ecma_ast = { version = "5.0.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "5.0.3", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "5.1.0", path = "../swc_ecma_codegen" }
swc_ecma_ext_transforms = { version = "7.0.0", path = "../swc_ecma_ext_transforms" }
swc_ecma_lints = { version = "7.0.1", path = "../swc_ecma_lints" }
Expand All @@ -88,7 +88,7 @@ swc_ecma_loader = { version = "5.0.0", path = "../swc_ecma_loader", features = [
"node",
"tsc",
] }
swc_ecma_minifier = { version = "7.3.0", path = "../swc_ecma_minifier" }
swc_ecma_minifier = { version = "7.3.1", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" }
swc_ecma_preset_env = { version = "9.0.0", path = "../swc_ecma_preset_env" }
swc_ecma_transforms = { version = "9.0.0", path = "../swc_ecma_transforms", features = [
Expand All @@ -102,7 +102,7 @@ swc_ecma_transforms = { version = "9.0.0", path = "../swc_ecma_transforms", feat
swc_ecma_transforms_base = { version = "7.1.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { version = "8.0.0", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_optimization = { version = "7.1.1", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "7.0.3", path = "../swc_ecma_utils" }
swc_ecma_utils = { version = "7.0.4", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "6.0.0", path = "../swc_error_reporters" }
swc_node_comments = { version = "5.0.0", path = "../swc_node_comments" }
Expand Down Expand Up @@ -136,7 +136,7 @@ rayon = { workspace = true }
walkdir = { workspace = true }

codspeed-criterion-compat = { workspace = true }
swc_ecma_ast = { version = "5.0.2", path = "../swc_ecma_ast", features = [
swc_ecma_ast = { version = "5.0.3", path = "../swc_ecma_ast", features = [
"serde-impl",
] }
swc_ecma_lints = { version = "7.0.1", path = "../swc_ecma_lints", features = [
Expand Down
6 changes: 3 additions & 3 deletions crates/swc_bundler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@ tracing = { workspace = true }

swc_atoms = { version = "3.0.3", path = "../swc_atoms" }
swc_common = { version = "5.0.0", path = "../swc_common" }
swc_ecma_ast = { version = "5.0.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "5.0.3", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "5.1.0", path = "../swc_ecma_codegen" }
swc_ecma_loader = { version = "5.0.0", path = "../swc_ecma_loader" }
swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "7.1.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_optimization = { version = "7.1.1", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "7.0.3", path = "../swc_ecma_utils" }
swc_ecma_utils = { version = "7.0.4", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
swc_fast_graph = { version = "6.0.0", path = "../swc_fast_graph/" }
swc_graph_analyzer = { version = "5.0.0", path = "../swc_graph_analyzer/" }
Expand All @@ -63,7 +63,7 @@ swc_ecma_loader = { version = "5.0.0", path = "../swc_ecma_loader", features = [
"node",
"cache",
] }
swc_ecma_minifier = { version = "7.3.0", path = "../swc_ecma_minifier", features = [
swc_ecma_minifier = { version = "7.3.1", path = "../swc_ecma_minifier", features = [
"concurrent",
] }
swc_ecma_transforms_proposal = { version = "7.0.1", path = "../swc_ecma_transforms_proposal" }
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_cli_impl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ tracing-futures = { workspace = true }
tracing-subscriber = { workspace = true, features = ["env-filter"] }
walkdir = { workspace = true }

swc_core = { version = "10.5.0", features = [
swc_core = { version = "10.5.1", features = [
"trace_macro",
"common_concurrent",
"base_concurrent",
Expand Down
4 changes: 2 additions & 2 deletions crates/swc_compiler_base/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ swc_common = { version = "5.0.0", path = "../swc_common", features = [
"sourcemap",
] }
swc_config = { version = "1.0.0", path = "../swc_config" }
swc_ecma_ast = { version = "5.0.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "5.0.3", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "5.1.0", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "7.3.0", path = "../swc_ecma_minifier" }
swc_ecma_minifier = { version = "7.3.1", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" }
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
swc_timer = { version = "1.0.0", path = "../swc_timer" }
Expand Down
8 changes: 4 additions & 4 deletions crates/swc_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = { workspace = true }
license = { workspace = true }
name = "swc_core"
repository = { workspace = true }
version = "10.5.0"
version = "10.5.1"
[package.metadata.docs.rs]
features = [
"allocator_node",
Expand Down Expand Up @@ -353,11 +353,11 @@ swc_css_parser = { optional = true, version = "5.0.0", path =
swc_css_prefixer = { optional = true, version = "5.0.0", path = "../swc_css_prefixer" }
swc_css_utils = { optional = true, version = "5.0.0", path = "../swc_css_utils/" }
swc_css_visit = { optional = true, version = "5.0.0", path = "../swc_css_visit" }
swc_ecma_ast = { optional = true, version = "5.0.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { optional = true, version = "5.0.3", path = "../swc_ecma_ast" }
swc_ecma_codegen = { optional = true, version = "5.1.0", path = "../swc_ecma_codegen" }
swc_ecma_lints = { optional = true, version = "7.0.1", path = "../swc_ecma_lints" }
swc_ecma_loader = { optional = true, version = "5.0.0", path = "../swc_ecma_loader" }
swc_ecma_minifier = { optional = true, version = "7.3.0", path = "../swc_ecma_minifier" }
swc_ecma_minifier = { optional = true, version = "7.3.1", path = "../swc_ecma_minifier" }
swc_ecma_parser = { optional = true, version = "6.0.2", path = "../swc_ecma_parser" }
swc_ecma_preset_env = { optional = true, version = "9.0.0", path = "../swc_ecma_preset_env" }
swc_ecma_quote_macros = { optional = true, version = "6.0.0", path = "../swc_ecma_quote_macros" }
Expand All @@ -370,7 +370,7 @@ swc_ecma_transforms_react = { optional = true, version = "7.0.0", path =
swc_ecma_transforms_testing = { optional = true, version = "7.0.1", path = "../swc_ecma_transforms_testing" }
swc_ecma_transforms_typescript = { optional = true, version = "7.0.0", path = "../swc_ecma_transforms_typescript" }
swc_ecma_usage_analyzer = { optional = true, version = "7.0.0", path = "../swc_ecma_usage_analyzer" }
swc_ecma_utils = { optional = true, version = "7.0.3", path = "../swc_ecma_utils" }
swc_ecma_utils = { optional = true, version = "7.0.4", path = "../swc_ecma_utils" }
swc_ecma_visit = { optional = true, version = "5.0.0", path = "../swc_ecma_visit" }
swc_malloc = { optional = true, version = "1.0.0", path = "../swc_malloc" }
swc_node_bundler = { optional = true, version = "10.0.0", path = "../swc_node_bundler" }
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_ecma_ast/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = { workspace = true }
license = { workspace = true }
name = "swc_ecma_ast"
repository = { workspace = true }
version = "5.0.2"
version = "5.0.3"

[package.metadata.docs.rs]
all-features = true
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_ecma_codegen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ tracing = { workspace = true }
swc_allocator = { version = "2.0.0", path = "../swc_allocator", default-features = false }
swc_atoms = { version = "3.0.3", path = "../swc_atoms" }
swc_common = { version = "5.0.0", path = "../swc_common" }
swc_ecma_ast = { version = "5.0.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "5.0.3", path = "../swc_ecma_ast" }
swc_ecma_codegen_macros = { version = "1.0.0", path = "../swc_ecma_codegen_macros" }

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions crates/swc_ecma_compat_bugfixes/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ version = "7.0.0"
[dependencies]
swc_atoms = { version = "3.0.3", path = "../swc_atoms" }
swc_common = { version = "5.0.0", path = "../swc_common" }
swc_ecma_ast = { version = "5.0.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "5.0.3", path = "../swc_ecma_ast" }
swc_ecma_compat_es2015 = { version = "7.0.0", path = "../swc_ecma_compat_es2015" }
swc_ecma_transforms_base = { version = "7.1.1", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "7.0.3", path = "../swc_ecma_utils" }
swc_ecma_utils = { version = "7.0.4", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" }
tracing = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions crates/swc_ecma_compat_common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ version = "7.0.0"

[dependencies]
swc_common = { version = "5.0.0", path = "../swc_common" }
swc_ecma_ast = { version = "5.0.2", path = "../swc_ecma_ast" }
swc_ecma_utils = { version = "7.0.3", path = "../swc_ecma_utils" }
swc_ecma_ast = { version = "5.0.3", path = "../swc_ecma_ast" }
swc_ecma_utils = { version = "7.0.4", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" }
4 changes: 2 additions & 2 deletions crates/swc_ecma_compat_es2015/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ swc_atoms = { version = "3.0.3", path = "../swc_atoms" }

swc_common = { version = "5.0.0", path = "../swc_common" }
swc_config = { version = "1.0.0", path = "../swc_config" }
swc_ecma_ast = { version = "5.0.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "5.0.3", path = "../swc_ecma_ast" }
swc_ecma_compat_common = { version = "7.0.0", path = "../swc_ecma_compat_common" }
swc_ecma_transforms_base = { version = "7.1.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_classes = { version = "7.0.0", path = "../swc_ecma_transforms_classes" }
swc_ecma_transforms_macros = { version = "1.0.0", path = "../swc_ecma_transforms_macros" }
swc_ecma_utils = { version = "7.0.3", path = "../swc_ecma_utils" }
swc_ecma_utils = { version = "7.0.4", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" }
tracing = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions crates/swc_ecma_compat_es2016/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ version = "7.0.0"
[dependencies]
swc_atoms = { version = "3.0.3", path = "../swc_atoms" }
swc_common = { version = "5.0.0", path = "../swc_common" }
swc_ecma_ast = { version = "5.0.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "5.0.3", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "7.1.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_macros = { version = "1.0.0", path = "../swc_ecma_transforms_macros" }
swc_ecma_utils = { version = "7.0.3", path = "../swc_ecma_utils" }
swc_ecma_utils = { version = "7.0.4", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" }
tracing = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions crates/swc_ecma_compat_es2017/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ tracing = { workspace = true }

swc_atoms = { version = "3.0.3", path = "../swc_atoms" }
swc_common = { version = "5.0.0", path = "../swc_common" }
swc_ecma_ast = { version = "5.0.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "5.0.3", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "7.1.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_macros = { version = "1.0.0", path = "../swc_ecma_transforms_macros" }
swc_ecma_utils = { version = "7.0.3", path = "../swc_ecma_utils" }
swc_ecma_utils = { version = "7.0.4", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" }

Expand Down
4 changes: 2 additions & 2 deletions crates/swc_ecma_compat_es2018/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ tracing = { workspace = true }

swc_atoms = { version = "3.0.3", path = "../swc_atoms" }
swc_common = { version = "5.0.0", path = "../swc_common" }
swc_ecma_ast = { version = "5.0.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "5.0.3", path = "../swc_ecma_ast" }
swc_ecma_compat_common = { version = "7.0.0", path = "../swc_ecma_compat_common" }
swc_ecma_transforms_base = { version = "7.1.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_macros = { version = "1.0.0", path = "../swc_ecma_transforms_macros" }
swc_ecma_utils = { version = "7.0.3", path = "../swc_ecma_utils" }
swc_ecma_utils = { version = "7.0.4", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" }

Expand Down
4 changes: 2 additions & 2 deletions crates/swc_ecma_compat_es2019/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ tracing = { workspace = true }

swc_atoms = { version = "3.0.3", path = "../swc_atoms" }
swc_common = { version = "5.0.0", path = "../swc_common" }
swc_ecma_ast = { version = "5.0.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "5.0.3", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "7.1.1", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "7.0.3", path = "../swc_ecma_utils" }
swc_ecma_utils = { version = "7.0.4", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" }

Expand Down
4 changes: 2 additions & 2 deletions crates/swc_ecma_compat_es2020/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ version = "8.0.0"
serde = { workspace = true, features = ["derive"] }
swc_atoms = { version = "3.0.3", path = "../swc_atoms" }
swc_common = { version = "5.0.0", path = "../swc_common" }
swc_ecma_ast = { version = "5.0.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "5.0.3", path = "../swc_ecma_ast" }
swc_ecma_compat_es2022 = { version = "8.0.0", path = "../swc_ecma_compat_es2022" }
swc_ecma_transforms_base = { version = "7.1.1", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "7.0.3", path = "../swc_ecma_utils" }
swc_ecma_utils = { version = "7.0.4", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" }
tracing = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions crates/swc_ecma_compat_es2021/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ tracing = { workspace = true }

swc_atoms = { version = "3.0.3", path = "../swc_atoms" }
swc_common = { version = "5.0.0", path = "../swc_common" }
swc_ecma_ast = { version = "5.0.2", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "5.0.3", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "7.1.1", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "7.0.3", path = "../swc_ecma_utils" }
swc_ecma_utils = { version = "7.0.4", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" }
Loading

0 comments on commit 60ae9f3

Please sign in to comment.