Skip to content

Commit

Permalink
chore: Bump crates
Browse files Browse the repository at this point in the history
  • Loading branch information
swc-bot committed Mar 13, 2024
1 parent 633cd89 commit 6e672aa
Show file tree
Hide file tree
Showing 20 changed files with 66 additions and 66 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@

- **(es/minifier)** Make `Finalizer` handle `hoisted_props` correctly ([#8738](https://github.com/swc-project/swc/issues/8738)) ([95761b7](https://github.com/swc-project/swc/commit/95761b76bf09a4d2c09517b2bd7bf7b78ee2149f))


- **(es/proposal)** Fix var placement for using transform ([#8732](https://github.com/swc-project/swc/issues/8732)) ([633cd89](https://github.com/swc-project/swc/commit/633cd89bacef5f0efef20f1dfa709cff1ecba36f))

### Features


Expand Down Expand Up @@ -1398,9 +1401,6 @@



- **(es/codegen)** Add quotes to property names when `ascii_only` is `true` ([#7820](https://github.com/swc-project/swc/issues/7820)) ([04921f3](https://github.com/swc-project/swc/commit/04921f301afbc2dc74bed4cb24e7656b60e54327))


- **(es/compat)** Remove wrong logic for object patterns in `object_rest` ([#7788](https://github.com/swc-project/swc/issues/7788)) ([3766a7c](https://github.com/swc-project/swc/commit/3766a7c776b63e159be3f11f5f931c5e5f968cdb))


Expand Down
20 changes: 10 additions & 10 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 @@ -36,7 +36,7 @@ binding_wasm = [
swc = { optional = true, version = "0.273.19", path = "../swc" }
swc_common = { optional = true, version = "0.33.19", path = "../swc_common" }
swc_ecma_ast = { optional = true, version = "0.112.5", path = "../swc_ecma_ast" }
swc_ecma_transforms = { optional = true, version = "0.229.14", path = "../swc_ecma_transforms" }
swc_ecma_transforms = { optional = true, version = "0.229.15", path = "../swc_ecma_transforms" }
swc_ecma_visit = { optional = true, version = "0.98.6", path = "../swc_ecma_visit" }

# Optional deps for the wasm binding macro
Expand Down
8 changes: 4 additions & 4 deletions crates/swc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ swc_ecma_loader = { version = "0.45.21", path = "../swc_ecma_loader", features =
] }
swc_ecma_minifier = { version = "0.192.16", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "0.143.8", path = "../swc_ecma_parser" }
swc_ecma_preset_env = { version = "0.206.14", path = "../swc_ecma_preset_env" }
swc_ecma_transforms = { version = "0.229.14", path = "../swc_ecma_transforms", features = [
swc_ecma_preset_env = { version = "0.206.15", path = "../swc_ecma_preset_env" }
swc_ecma_transforms = { version = "0.229.15", path = "../swc_ecma_transforms", features = [
"compat",
"module",
"optimization",
Expand All @@ -97,8 +97,8 @@ swc_ecma_transforms = { version = "0.229.14", path = "../swc_ecma_transforms", f
"typescript",
] }
swc_ecma_transforms_base = { version = "0.137.14", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { version = "0.163.14", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_optimization = { version = "0.198.14", path = "../swc_ecma_transforms_optimization" }
swc_ecma_transforms_compat = { version = "0.163.15", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_optimization = { version = "0.198.15", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "0.17.18", path = "../swc_error_reporters" }
Expand Down
8 changes: 4 additions & 4 deletions crates/swc_bundler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ swc_ecma_codegen = { version = "0.148.10", path = "../swc_ecma_c
swc_ecma_loader = { version = "0.45.21", path = "../swc_ecma_loader" }
swc_ecma_parser = { version = "0.143.8", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.137.14", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_optimization = { version = "0.198.14", path = "../swc_ecma_transforms_optimization" }
swc_ecma_transforms_optimization = { version = "0.198.15", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" }
swc_fast_graph = { version = "0.21.19", path = "../swc_fast_graph/" }
Expand All @@ -66,8 +66,8 @@ swc_ecma_loader = { version = "0.45.21", path = "../swc_ecma_loader", features =
swc_ecma_minifier = { version = "0.192.16", path = "../swc_ecma_minifier", features = [
"concurrent",
] }
swc_ecma_transforms_proposal = { version = "0.171.14", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_react = { version = "0.183.14", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_typescript = { version = "0.188.14", path = "../swc_ecma_transforms_typescript" }
swc_ecma_transforms_proposal = { version = "0.171.15", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_react = { version = "0.183.15", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_typescript = { version = "0.188.15", path = "../swc_ecma_transforms_typescript" }
swc_malloc = { version = "0.5.10", path = "../swc_malloc" }
testing = { version = "0.35.20", path = "../testing" }
14 changes: 7 additions & 7 deletions crates/swc_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -348,16 +348,16 @@ swc_ecma_lints = { optional = true, version = "0.92.16", path
swc_ecma_loader = { optional = true, version = "0.45.21", path = "../swc_ecma_loader" }
swc_ecma_minifier = { optional = true, version = "0.192.16", path = "../swc_ecma_minifier" }
swc_ecma_parser = { optional = true, version = "0.143.8", path = "../swc_ecma_parser" }
swc_ecma_preset_env = { optional = true, version = "0.206.14", path = "../swc_ecma_preset_env" }
swc_ecma_preset_env = { optional = true, version = "0.206.15", path = "../swc_ecma_preset_env" }
swc_ecma_quote_macros = { optional = true, version = "0.54.11", path = "../swc_ecma_quote_macros" }
swc_ecma_transforms_base = { optional = true, version = "0.137.14", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { optional = true, version = "0.163.14", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_module = { optional = true, version = "0.180.14", path = "../swc_ecma_transforms_module" }
swc_ecma_transforms_optimization = { optional = true, version = "0.198.14", path = "../swc_ecma_transforms_optimization" }
swc_ecma_transforms_proposal = { optional = true, version = "0.171.14", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_react = { optional = true, version = "0.183.14", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_compat = { optional = true, version = "0.163.15", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_module = { optional = true, version = "0.180.15", path = "../swc_ecma_transforms_module" }
swc_ecma_transforms_optimization = { optional = true, version = "0.198.15", path = "../swc_ecma_transforms_optimization" }
swc_ecma_transforms_proposal = { optional = true, version = "0.171.15", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_react = { optional = true, version = "0.183.15", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_testing = { optional = true, version = "0.140.14", path = "../swc_ecma_transforms_testing" }
swc_ecma_transforms_typescript = { optional = true, version = "0.188.14", path = "../swc_ecma_transforms_typescript" }
swc_ecma_transforms_typescript = { optional = true, version = "0.188.15", path = "../swc_ecma_transforms_typescript" }
swc_ecma_usage_analyzer = { optional = true, version = "0.23.11", path = "../swc_ecma_usage_analyzer" }
swc_ecma_utils = { optional = true, version = "0.127.11", path = "../swc_ecma_utils" }
swc_ecma_visit = { optional = true, version = "0.98.6", path = "../swc_ecma_visit" }
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 @@ -7,14 +7,14 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_ecma_compat_bugfixes"
repository = "https://github.com/swc-project/swc.git"
version = "0.4.14"
version = "0.4.15"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.19", path = "../swc_common" }
swc_ecma_ast = { version = "0.112.5", path = "../swc_ecma_ast" }
swc_ecma_compat_es2015 = { version = "0.4.14", path = "../swc_ecma_compat_es2015" }
swc_ecma_compat_es2015 = { version = "0.4.15", path = "../swc_ecma_compat_es2015" }
swc_ecma_transforms_base = { version = "0.137.14", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" }
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_ecma_compat_es2015/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_compat_es2015"
repository = "https://github.com/swc-project/swc.git"
version = "0.4.14"
version = "0.4.15"


# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
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_ecma_ast = { version = "0.112.5", path = "../swc_ecma_ast", features = [
swc_ecma_codegen = { version = "0.148.10", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "0.143.8", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.137.14", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_optimization = { version = "0.198.14", path = "../swc_ecma_transforms_optimization" }
swc_ecma_transforms_optimization = { version = "0.198.15", path = "../swc_ecma_transforms_optimization" }
swc_ecma_usage_analyzer = { version = "0.23.11", path = "../swc_ecma_usage_analyzer" }
swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" }
Expand Down
4 changes: 2 additions & 2 deletions crates/swc_ecma_preset_env/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"
include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json", "data/**/*.json"]
license = "Apache-2.0"
name = "swc_ecma_preset_env"
version = "0.206.14"
version = "0.206.15"

[lib]
bench = false
Expand All @@ -32,7 +32,7 @@ string_enum = { version = "0.4.2", path = "../string_enum" }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.19", path = "../swc_common" }
swc_ecma_ast = { version = "0.112.5", path = "../swc_ecma_ast" }
swc_ecma_transforms = { version = "0.229.14", path = "../swc_ecma_transforms", features = [
swc_ecma_transforms = { version = "0.229.15", path = "../swc_ecma_transforms", features = [
"compat",
"proposal",
] }
Expand Down
14 changes: 7 additions & 7 deletions crates/swc_ecma_transforms/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"
repository = "https://github.com/swc-project/swc.git"
version = "0.229.14"
version = "0.229.15"

[package.metadata.docs.rs]
all-features = true
Expand Down Expand Up @@ -35,12 +35,12 @@ swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.19", path = "../swc_common" }
swc_ecma_ast = { version = "0.112.5", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "0.137.14", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { version = "0.163.14", path = "../swc_ecma_transforms_compat", optional = true }
swc_ecma_transforms_module = { version = "0.180.14", path = "../swc_ecma_transforms_module", optional = true }
swc_ecma_transforms_optimization = { version = "0.198.14", path = "../swc_ecma_transforms_optimization", optional = true }
swc_ecma_transforms_proposal = { version = "0.171.14", path = "../swc_ecma_transforms_proposal", optional = true }
swc_ecma_transforms_react = { version = "0.183.14", path = "../swc_ecma_transforms_react", optional = true }
swc_ecma_transforms_typescript = { version = "0.188.14", path = "../swc_ecma_transforms_typescript", optional = true }
swc_ecma_transforms_compat = { version = "0.163.15", path = "../swc_ecma_transforms_compat", optional = true }
swc_ecma_transforms_module = { version = "0.180.15", path = "../swc_ecma_transforms_module", optional = true }
swc_ecma_transforms_optimization = { version = "0.198.15", path = "../swc_ecma_transforms_optimization", optional = true }
swc_ecma_transforms_proposal = { version = "0.171.15", path = "../swc_ecma_transforms_proposal", optional = true }
swc_ecma_transforms_react = { version = "0.183.15", path = "../swc_ecma_transforms_react", optional = true }
swc_ecma_transforms_typescript = { version = "0.188.15", path = "../swc_ecma_transforms_typescript", optional = true }
swc_ecma_utils = { version = "0.127.11", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" }

Expand Down
6 changes: 3 additions & 3 deletions crates/swc_ecma_transforms_compat/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_compat"
repository = "https://github.com/swc-project/swc.git"
version = "0.163.14"
version = "0.163.15"

[lib]
bench = false
Expand All @@ -33,9 +33,9 @@ swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.19", path = "../swc_common" }
swc_config = { version = "0.1.11", path = "../swc_config" }
swc_ecma_ast = { version = "0.112.5", path = "../swc_ecma_ast" }
swc_ecma_compat_bugfixes = { version = "0.4.14", path = "../swc_ecma_compat_bugfixes" }
swc_ecma_compat_bugfixes = { version = "0.4.15", path = "../swc_ecma_compat_bugfixes" }
swc_ecma_compat_common = { version = "0.4.11", path = "../swc_ecma_compat_common" }
swc_ecma_compat_es2015 = { version = "0.4.14", path = "../swc_ecma_compat_es2015" }
swc_ecma_compat_es2015 = { version = "0.4.15", path = "../swc_ecma_compat_es2015" }
swc_ecma_compat_es2016 = { version = "0.4.14", path = "../swc_ecma_compat_es2016" }
swc_ecma_compat_es2017 = { version = "0.4.14", path = "../swc_ecma_compat_es2017" }
swc_ecma_compat_es2018 = { version = "0.4.14", path = "../swc_ecma_compat_es2018" }
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.180.14"
version = "0.180.15"

[lib]
bench = false
Expand Down Expand Up @@ -44,6 +44,6 @@ swc_ecma_loader = { version = "0.45.21", path = "../swc_ecma_loader", features =
"node",
"tsc",
] }
swc_ecma_transforms_compat = { version = "0.163.14", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_compat = { version = "0.163.15", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_testing = { version = "0.140.14", path = "../swc_ecma_transforms_testing" }
testing = { version = "0.35.20", path = "../testing/" }
12 changes: 6 additions & 6 deletions crates/swc_ecma_transforms_optimization/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_optimization"
repository = "https://github.com/swc-project/swc.git"
version = "0.198.14"
version = "0.198.15"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[lib]
Expand Down Expand Up @@ -42,10 +42,10 @@ swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" }
swc_fast_graph = { version = "0.21.19", path = "../swc_fast_graph" }

[dev-dependencies]
swc_ecma_transforms_compat = { version = "0.163.14", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_module = { version = "0.180.14", path = "../swc_ecma_transforms_module" }
swc_ecma_transforms_proposal = { version = "0.171.14", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_react = { version = "0.183.14", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_compat = { version = "0.163.15", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_module = { version = "0.180.15", path = "../swc_ecma_transforms_module" }
swc_ecma_transforms_proposal = { version = "0.171.15", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_react = { version = "0.183.15", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_testing = { version = "0.140.14", path = "../swc_ecma_transforms_testing" }
swc_ecma_transforms_typescript = { version = "0.188.14", path = "../swc_ecma_transforms_typescript" }
swc_ecma_transforms_typescript = { version = "0.188.15", path = "../swc_ecma_transforms_typescript" }
testing = { version = "0.35.20", path = "../testing" }
4 changes: 2 additions & 2 deletions crates/swc_ecma_transforms_proposal/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_proposal"
repository = "https://github.com/swc-project/swc.git"
version = "0.171.14"
version = "0.171.15"

[lib]
bench = false
Expand Down Expand Up @@ -36,6 +36,6 @@ swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" }
serde_json = "1.0.66"

swc_ecma_parser = { version = "0.143.8", path = "../swc_ecma_parser" }
swc_ecma_transforms_compat = { version = "0.163.14", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_compat = { version = "0.163.15", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_testing = { version = "0.140.14", path = "../swc_ecma_transforms_testing" }
testing = { version = "0.35.20", path = "../testing" }
6 changes: 3 additions & 3 deletions crates/swc_ecma_transforms_react/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_react"
repository = "https://github.com/swc-project/swc.git"
version = "0.183.14"
version = "0.183.15"

[lib]
bench = false
Expand Down Expand Up @@ -39,7 +39,7 @@ swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" }

[dev-dependencies]
swc_ecma_codegen = { version = "0.148.10", path = "../swc_ecma_codegen/" }
swc_ecma_transforms_compat = { version = "0.163.14", path = "../swc_ecma_transforms_compat/" }
swc_ecma_transforms_module = { version = "0.180.14", path = "../swc_ecma_transforms_module" }
swc_ecma_transforms_compat = { version = "0.163.15", path = "../swc_ecma_transforms_compat/" }
swc_ecma_transforms_module = { version = "0.180.15", path = "../swc_ecma_transforms_module" }
swc_ecma_transforms_testing = { version = "0.140.14", path = "../swc_ecma_transforms_testing" }
testing = { version = "0.35.20", path = "../testing" }
Loading

0 comments on commit 6e672aa

Please sign in to comment.