Skip to content

Commit

Permalink
chore: Publish crates with swc_core v0.106.4
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Oct 2, 2024
1 parent 4ee45ac commit 253d7f4
Show file tree
Hide file tree
Showing 28 changed files with 57 additions and 61 deletions.
6 changes: 0 additions & 6 deletions .changeset/funny-drinks-remain.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/tall-rocks-jam.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/thick-ants-applaud.md

This file was deleted.

26 changes: 20 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,24 @@
# Changelog
## [unreleased]

### Bug Fixes



- **(es/module)** Allow TypeScript nodes for `Rewriter` ([#9606](https://github.com/swc-project/swc/issues/9606)) ([4ee45ac](https://github.com/swc-project/swc/commit/4ee45ac1fd10da1ea982a152a458deb9f5359998))

### Performance



- **(es/codegen)** Reduce usage of `tracing::instrument` ([#9604](https://github.com/swc-project/swc/issues/9604)) ([2f06fc5](https://github.com/swc-project/swc/commit/2f06fc559c8e200ea89133b8b30045f970ffc20b))


- **(es/transforms)** Copy benchmarks from `oxc` ([#9602](https://github.com/swc-project/swc/issues/9602)) ([24c3a0c](https://github.com/swc-project/swc/commit/24c3a0ce138bacbf12b4660862ccfe9e3d19bdd9))


- **(es/typescript)** Reduce unnecessary visits ([#9605](https://github.com/swc-project/swc/issues/9605)) ([866af6c](https://github.com/swc-project/swc/commit/866af6c9478b92cd6be780c515ddd51d2db90ac3))

## [1.7.29] - 2024-10-01

### Bug Fixes
Expand Down Expand Up @@ -1301,12 +1321,6 @@
- **(css/modules)** Fix `:global` selectors without preceding whitespace ([#8926](https://github.com/swc-project/swc/issues/8926)) ([2405dc6](https://github.com/swc-project/swc/commit/2405dc6ba0aa227df81fda3db303fc6f523972db))


- **(es/fixer)** Wrap class expressions in callee ([#8928](https://github.com/swc-project/swc/issues/8928)) ([6b60bdb](https://github.com/swc-project/swc/commit/6b60bdb69713f7ccf603db04696621985d200d28))


- **(es/minifier)** Respect `module: false` ([#8925](https://github.com/swc-project/swc/issues/8925)) ([aca6a77](https://github.com/swc-project/swc/commit/aca6a77903e31099f473587eb9285ae1c4dee309))


- **(es/minifier)** Consider side effects of operands of binary expressions ([#8929](https://github.com/swc-project/swc/issues/8929)) ([4d4a7a9](https://github.com/swc-project/swc/commit/4d4a7a9bcb39228973c0da2991310b5107feb319))


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/dbg-swc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ swc_common = { version = "0.40.1", features = [
"tty-emitter",
], path = "../swc_common" }
swc_ecma_ast = { version = "0.121.1", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.158.0", path = "../swc_ecma_codegen" }
swc_ecma_codegen = { version = "0.158.1", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.208.1", path = "../swc_ecma_minifier", features = [
"concurrent",
] }
Expand Down
2 changes: 1 addition & 1 deletion crates/swc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ swc_common = { version = "0.40.1", path = "../swc_common", features = [
swc_compiler_base = { version = "0.23.0", path = "../swc_compiler_base" }
swc_config = { version = "0.1.13", path = "../swc_config" }
swc_ecma_ast = { version = "0.121.1", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.158.0", path = "../swc_ecma_codegen" }
swc_ecma_codegen = { version = "0.158.1", path = "../swc_ecma_codegen" }
swc_ecma_ext_transforms = { version = "0.123.0", path = "../swc_ecma_ext_transforms" }
swc_ecma_lints = { version = "0.104.1", path = "../swc_ecma_lints" }
swc_ecma_loader = { version = "0.52.1", path = "../swc_ecma_loader", features = [
Expand Down
4 changes: 2 additions & 2 deletions crates/swc_bundler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ tracing = { workspace = true }
swc_atoms = { version = "1.0.0", path = "../swc_atoms" }
swc_common = { version = "0.40.1", path = "../swc_common" }
swc_ecma_ast = { version = "0.121.1", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.158.0", path = "../swc_ecma_codegen" }
swc_ecma_codegen = { version = "0.158.1", path = "../swc_ecma_codegen" }
swc_ecma_loader = { version = "0.52.1", path = "../swc_ecma_loader" }
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.149.0", path = "../swc_ecma_transforms_base" }
Expand Down Expand Up @@ -68,6 +68,6 @@ swc_ecma_minifier = { version = "0.208.1", path = "../swc_ecma_minifier", featur
] }
swc_ecma_transforms_proposal = { version = "0.183.0", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_react = { version = "0.195.0", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_typescript = { version = "0.202.0", path = "../swc_ecma_transforms_typescript" }
swc_ecma_transforms_typescript = { version = "0.202.1", path = "../swc_ecma_transforms_typescript" }
swc_malloc = { version = "0.5.10", path = "../swc_malloc" }
testing = { version = "0.42.0", path = "../testing" }
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 = "0.106.3", features = [
swc_core = { version = "0.106.4", features = [
"trace_macro",
"common_concurrent",
"base_concurrent",
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_compiler_base/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ swc_common = { version = "0.40.1", path = "../swc_common", features = [
] }
swc_config = { version = "0.1.13", path = "../swc_config" }
swc_ecma_ast = { version = "0.121.1", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.158.0", path = "../swc_ecma_codegen" }
swc_ecma_codegen = { version = "0.158.1", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.208.1", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
swc_ecma_visit = { version = "0.107.0", path = "../swc_ecma_visit" }
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 = "2021"
license = "Apache-2.0"
name = "swc_core"
repository = "https://github.com/swc-project/swc.git"
version = "0.106.3"
version = "0.106.4"
[package.metadata.docs.rs]
features = [
"allocator_node",
Expand Down Expand Up @@ -354,7 +354,7 @@ swc_css_prefixer = { optional = true, version = "0.161.0", path
swc_css_utils = { optional = true, version = "0.144.0", path = "../swc_css_utils/" }
swc_css_visit = { optional = true, version = "0.146.0", path = "../swc_css_visit" }
swc_ecma_ast = { optional = true, version = "0.121.1", path = "../swc_ecma_ast" }
swc_ecma_codegen = { optional = true, version = "0.158.0", path = "../swc_ecma_codegen" }
swc_ecma_codegen = { optional = true, version = "0.158.1", path = "../swc_ecma_codegen" }
swc_ecma_lints = { optional = true, version = "0.104.1", path = "../swc_ecma_lints" }
swc_ecma_loader = { optional = true, version = "0.52.1", path = "../swc_ecma_loader" }
swc_ecma_minifier = { optional = true, version = "0.208.1", path = "../swc_ecma_minifier" }
Expand All @@ -363,12 +363,12 @@ swc_ecma_preset_env = { optional = true, version = "0.221.0", path
swc_ecma_quote_macros = { optional = true, version = "0.63.0", path = "../swc_ecma_quote_macros" }
swc_ecma_transforms_base = { optional = true, version = "0.149.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { optional = true, version = "0.175.0", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_module = { optional = true, version = "0.194.0", path = "../swc_ecma_transforms_module" }
swc_ecma_transforms_module = { optional = true, version = "0.194.1", path = "../swc_ecma_transforms_module" }
swc_ecma_transforms_optimization = { optional = true, version = "0.212.1", path = "../swc_ecma_transforms_optimization" }
swc_ecma_transforms_proposal = { optional = true, version = "0.183.0", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_react = { optional = true, version = "0.195.0", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_testing = { optional = true, version = "0.152.0", path = "../swc_ecma_transforms_testing" }
swc_ecma_transforms_typescript = { optional = true, version = "0.202.0", path = "../swc_ecma_transforms_typescript" }
swc_ecma_transforms_typescript = { optional = true, version = "0.202.1", path = "../swc_ecma_transforms_typescript" }
swc_ecma_usage_analyzer = { optional = true, version = "0.33.0", path = "../swc_ecma_usage_analyzer" }
swc_ecma_utils = { optional = true, version = "0.137.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { optional = true, version = "0.107.0", path = "../swc_ecma_visit" }
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 @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_ecma_codegen"
repository = "https://github.com/swc-project/swc.git"
version = "0.158.0"
version = "0.158.1"

[features]
# This does not enable serde for ast nodes.
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_ecma_lints/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ swc_ecma_utils = { version = "0.137.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.107.0", path = "../swc_ecma_visit" }

[dev-dependencies]
swc_ecma_codegen = { version = "0.158.0", path = "../swc_ecma_codegen" }
swc_ecma_codegen = { version = "0.158.1", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.149.0", path = "../swc_ecma_transforms_base" }
testing = { version = "0.42.0", path = "../testing" }
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_ecma_minifier/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ swc_config = { version = "0.1.13", path = "../swc_config", features = [
swc_ecma_ast = { version = "0.121.1", path = "../swc_ecma_ast", features = [
"serde",
] }
swc_ecma_codegen = { version = "0.158.0", path = "../swc_ecma_codegen" }
swc_ecma_codegen = { version = "0.158.1", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.149.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_optimization = { version = "0.212.1", path = "../swc_ecma_transforms_optimization" }
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_ecma_preset_env/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ codspeed-criterion-compat = { workspace = true }
criterion = { workspace = true }
pretty_assertions = { workspace = true }

swc_ecma_codegen = { version = "0.158.0", path = "../swc_ecma_codegen" }
swc_ecma_codegen = { version = "0.158.1", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
testing = { version = "0.42.0", path = "../testing" }

Expand Down
6 changes: 3 additions & 3 deletions crates/swc_ecma_transforms/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ swc_common = { version = "0.40.1", path = "../swc_common"
swc_ecma_ast = { version = "0.121.1", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "0.149.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { version = "0.175.0", path = "../swc_ecma_transforms_compat", optional = true }
swc_ecma_transforms_module = { version = "0.194.0", path = "../swc_ecma_transforms_module", optional = true }
swc_ecma_transforms_module = { version = "0.194.1", path = "../swc_ecma_transforms_module", optional = true }
swc_ecma_transforms_optimization = { version = "0.212.1", path = "../swc_ecma_transforms_optimization", optional = true }
swc_ecma_transforms_proposal = { version = "0.183.0", path = "../swc_ecma_transforms_proposal", optional = true }
swc_ecma_transforms_react = { version = "0.195.0", path = "../swc_ecma_transforms_react", optional = true }
swc_ecma_transforms_typescript = { version = "0.202.0", path = "../swc_ecma_transforms_typescript", optional = true }
swc_ecma_transforms_typescript = { version = "0.202.1", path = "../swc_ecma_transforms_typescript", optional = true }
swc_ecma_utils = { version = "0.137.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.107.0", path = "../swc_ecma_visit" }

Expand All @@ -49,7 +49,7 @@ pretty_assertions = { workspace = true }
sourcemap = { workspace = true }
tempfile = { workspace = true }

swc_ecma_codegen = { version = "0.158.0", path = "../swc_ecma_codegen" }
swc_ecma_codegen = { version = "0.158.1", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
swc_ecma_transforms_testing = { version = "0.152.0", path = "../swc_ecma_transforms_testing" }
testing = { version = "0.42.0", path = "../testing" }
2 changes: 1 addition & 1 deletion crates/swc_ecma_transforms_base/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ codspeed-criterion-compat = { workspace = true }
criterion = { workspace = true }
rayon = { workspace = true }

swc_ecma_codegen = { version = "0.158.0", path = "../swc_ecma_codegen" }
swc_ecma_codegen = { version = "0.158.1", path = "../swc_ecma_codegen" }
swc_ecma_transforms_macros = { version = "0.5.5", path = "../swc_ecma_transforms_macros" }
swc_malloc = { version = "0.5.10", path = "../swc_malloc" }
testing = { version = "0.42.0", path = "../testing" }
Expand Down
4 changes: 2 additions & 2 deletions crates/swc_ecma_transforms_module/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_ecma_transforms_module"
repository = "https://github.com/swc-project/swc.git"
version = "0.194.0"
version = "0.194.1"

[lib]
bench = false
Expand Down Expand Up @@ -46,5 +46,5 @@ swc_ecma_loader = { version = "0.52.1", path = "../swc_ecma_loader", features =
] }
swc_ecma_transforms_compat = { version = "0.175.0", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_testing = { version = "0.152.0", path = "../swc_ecma_transforms_testing" }
swc_ecma_transforms_typescript = { version = "0.202.0", path = "../swc_ecma_transforms_typescript" }
swc_ecma_transforms_typescript = { version = "0.202.1", path = "../swc_ecma_transforms_typescript" }
testing = { version = "0.42.0", path = "../testing/" }
4 changes: 2 additions & 2 deletions crates/swc_ecma_transforms_optimization/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ swc_fast_graph = { version = "1.0.0", path = "../swc_fast_graph" }

[dev-dependencies]
swc_ecma_transforms_compat = { version = "0.175.0", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_module = { version = "0.194.0", path = "../swc_ecma_transforms_module" }
swc_ecma_transforms_module = { version = "0.194.1", path = "../swc_ecma_transforms_module" }
swc_ecma_transforms_proposal = { version = "0.183.0", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_react = { version = "0.195.0", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_testing = { version = "0.152.0", path = "../swc_ecma_transforms_testing" }
swc_ecma_transforms_typescript = { version = "0.202.0", path = "../swc_ecma_transforms_typescript" }
swc_ecma_transforms_typescript = { version = "0.202.1", path = "../swc_ecma_transforms_typescript" }
testing = { version = "0.42.0", path = "../testing" }
2 changes: 1 addition & 1 deletion crates/swc_ecma_transforms_proposal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ swc_ecma_visit = { version = "0.107.0", path = "../swc_ecma_visit"
[dev-dependencies]
serde_json = { workspace = true }

swc_ecma_codegen = { version = "0.158.0", path = "../swc_ecma_codegen" }
swc_ecma_codegen = { version = "0.158.1", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
swc_ecma_transforms_compat = { version = "0.175.0", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_testing = { version = "0.152.0", path = "../swc_ecma_transforms_testing" }
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_ecma_transforms_react/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ swc_ecma_utils = { version = "0.137.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.107.0", path = "../swc_ecma_visit" }

[dev-dependencies]
swc_ecma_codegen = { version = "0.158.0", path = "../swc_ecma_codegen/" }
swc_ecma_codegen = { version = "0.158.1", path = "../swc_ecma_codegen/" }
swc_ecma_transforms_compat = { version = "0.175.0", path = "../swc_ecma_transforms_compat/" }
swc_ecma_transforms_testing = { version = "0.152.0", path = "../swc_ecma_transforms_testing" }
testing = { version = "0.42.0", path = "../testing" }
2 changes: 1 addition & 1 deletion crates/swc_ecma_transforms_testing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ swc_common = { version = "0.40.1", path = "../swc_common", features = [
"sourcemap",
] }
swc_ecma_ast = { version = "0.121.1", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.158.0", path = "../swc_ecma_codegen" }
swc_ecma_codegen = { version = "0.158.1", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
swc_ecma_testing = { version = "0.29.0", path = "../swc_ecma_testing" }
swc_ecma_transforms_base = { version = "0.149.0", path = "../swc_ecma_transforms_base" }
Expand Down
4 changes: 2 additions & 2 deletions crates/swc_ecma_transforms_typescript/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_ecma_transforms_typescript"
repository = "https://github.com/swc-project/swc.git"
version = "0.202.0"
version = "0.202.1"

[lib]
bench = false
Expand All @@ -28,7 +28,7 @@ swc_ecma_visit = { version = "0.107.0", path = "../swc_ecma_visit" }
codspeed-criterion-compat = { workspace = true }
criterion = { workspace = true }

swc_ecma_codegen = { version = "0.158.0", path = "../swc_ecma_codegen" }
swc_ecma_codegen = { version = "0.158.1", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
swc_ecma_transforms_compat = { version = "0.175.0", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_proposal = { version = "0.183.0", path = "../swc_ecma_transforms_proposal" }
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_ecmascript/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ typescript = ["typescript-parser", "swc_ecma_transforms/typescript"]

[dependencies]
swc_ecma_ast = { version = "0.121.1", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.158.0", path = "../swc_ecma_codegen", optional = true }
swc_ecma_codegen = { version = "0.158.1", path = "../swc_ecma_codegen", optional = true }
swc_ecma_minifier = { version = "0.208.1", path = "../swc_ecma_minifier", optional = true }
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser", optional = true, default-features = false }
swc_ecma_preset_env = { version = "0.221.0", path = "../swc_ecma_preset_env", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions crates/swc_fast_ts_strip/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ swc_common = { version = "0.40.1", path = "../swc_common", features = [
"sourcemap",
] }
swc_ecma_ast = { version = "0.121.1", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.158.0", path = "../swc_ecma_codegen" }
swc_ecma_codegen = { version = "0.158.1", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "0.152.1", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.149.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_typescript = { version = "0.202.0", path = "../swc_ecma_transforms_typescript" }
swc_ecma_transforms_typescript = { version = "0.202.1", path = "../swc_ecma_transforms_typescript" }
swc_ecma_visit = { version = "0.107.0", path = "../swc_ecma_visit" }

[dev-dependencies]
Expand Down
Loading

0 comments on commit 253d7f4

Please sign in to comment.