chore: Bump crates

This commit is contained in:
SWC Bot 2024-02-26 08:21:15 +00:00
parent c0d01dff21
commit 942c95be2d
9 changed files with 27 additions and 27 deletions

View File

@ -34,6 +34,9 @@
- **(es/ast)** Add alias to `EsVersion` ([#8653](https://github.com/swc-project/swc/issues/8653)) ([7d62c76](https://github.com/swc-project/swc/commit/7d62c762e657cdddf45c1a99c66285ae9cb07b5c))
- **(es/lints)** Add `no-cond-assign` rule ([#8661](https://github.com/swc-project/swc/issues/8661)) ([c0d01df](https://github.com/swc-project/swc/commit/c0d01dff213b2bf0725a16a5e6ca915f7517699d))
### Performance
@ -1436,9 +1439,6 @@
- **(es)** Fix typo in a warning ([#7740](https://github.com/swc-project/swc/issues/7740)) ([22e06cc](https://github.com/swc-project/swc/commit/22e06cce630b365b17f390559e065ee48cb3d2b9))
- **(es/minifier)** Mark args of `new`s as references ([#7743](https://github.com/swc-project/swc/issues/7743)) ([3873f58](https://github.com/swc-project/swc/commit/3873f5849999e49b732fef9959cb12ce6159c078))
<!-- generated by git-cliff -->

14
Cargo.lock generated
View File

@ -301,7 +301,7 @@ dependencies = [
[[package]]
name = "binding_macros"
version = "0.64.11"
version = "0.64.12"
dependencies = [
"anyhow",
"console_error_panic_hook",
@ -3678,7 +3678,7 @@ dependencies = [
[[package]]
name = "swc"
version = "0.273.11"
version = "0.273.12"
dependencies = [
"ansi_term",
"anyhow",
@ -3802,7 +3802,7 @@ dependencies = [
[[package]]
name = "swc_cli_impl"
version = "0.8.12"
version = "0.8.13"
dependencies = [
"anyhow",
"assert_cmd",
@ -3907,7 +3907,7 @@ dependencies = [
[[package]]
name = "swc_core"
version = "0.90.12"
version = "0.90.13"
dependencies = [
"anyhow",
"binding_macros",
@ -4397,7 +4397,7 @@ dependencies = [
[[package]]
name = "swc_ecma_lints"
version = "0.92.10"
version = "0.92.11"
dependencies = [
"auto_impl",
"dashmap",
@ -4936,7 +4936,7 @@ dependencies = [
[[package]]
name = "swc_estree_compat"
version = "0.198.11"
version = "0.198.12"
dependencies = [
"ahash 0.8.8",
"anyhow",
@ -5119,7 +5119,7 @@ dependencies = [
[[package]]
name = "swc_node_bundler"
version = "0.62.11"
version = "0.62.12"
dependencies = [
"anyhow",
"dashmap",

View File

@ -5,7 +5,7 @@ edition = "2021"
license = "Apache-2.0"
name = "binding_macros"
repository = "https://github.com/swc-project/swc.git"
version = "0.64.11"
version = "0.64.12"
[lib]
bench = false
@ -33,7 +33,7 @@ binding_wasm = [
[dependencies]
# Common deps for the SWC imports
swc = { optional = true, version = "0.273.11", path = "../swc" }
swc = { optional = true, version = "0.273.12", path = "../swc" }
swc_common = { optional = true, version = "0.33.18", path = "../swc_common" }
swc_ecma_ast = { optional = true, version = "0.112.4", path = "../swc_ecma_ast" }
swc_ecma_transforms = { optional = true, version = "0.229.10", path = "../swc_ecma_transforms" }

View File

@ -9,7 +9,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc"
repository = "https://github.com/swc-project/swc.git"
version = "0.273.11"
version = "0.273.12"
[lib]
bench = false
@ -78,7 +78,7 @@ swc_config = { version = "0.1.11", path = "../swc_config" }
swc_ecma_ast = { version = "0.112.4", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.148.7", path = "../swc_ecma_codegen" }
swc_ecma_ext_transforms = { version = "0.113.7", path = "../swc_ecma_ext_transforms" }
swc_ecma_lints = { version = "0.92.10", path = "../swc_ecma_lints" }
swc_ecma_lints = { version = "0.92.11", path = "../swc_ecma_lints" }
swc_ecma_loader = { version = "0.45.20", path = "../swc_ecma_loader", features = [
"cache",
"node",
@ -127,7 +127,7 @@ rayon = "1.7.0"
swc_ecma_ast = { version = "0.112.4", path = "../swc_ecma_ast", features = [
"serde-impl",
] }
swc_ecma_lints = { version = "0.92.10", path = "../swc_ecma_lints", features = [
swc_ecma_lints = { version = "0.92.11", path = "../swc_ecma_lints", features = [
"non_critical_lints",
] }
swc_ecma_testing = { version = "0.22.20", path = "../swc_ecma_testing" }

View File

@ -6,7 +6,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_cli_impl"
repository = "https://github.com/swc-project/swc.git"
version = "0.8.12"
version = "0.8.13"
[[bin]]
name = "swc"
@ -40,7 +40,7 @@ tracing-futures = "0.2.5"
tracing-subscriber = { version = "0.3.9", features = ["env-filter"] }
walkdir = "2"
swc_core = { version = "0.90.12", features = [
swc_core = { version = "0.90.13", features = [
"trace_macro",
"common_concurrent",
"base_concurrent",

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_core"
repository = "https://github.com/swc-project/swc.git"
version = "0.90.12"
version = "0.90.13"
[package.metadata.docs.rs]
features = [
"allocator_node",
@ -327,8 +327,8 @@ __visit = ["__ecma", "swc_ecma_visit"]
once_cell = { optional = true, version = "1.18.0" }
# swc_* dependencies
binding_macros = { optional = true, version = "0.64.11", path = "../binding_macros" }
swc = { optional = true, version = "0.273.11", path = "../swc" }
binding_macros = { optional = true, version = "0.64.12", path = "../binding_macros" }
swc = { optional = true, version = "0.273.12", path = "../swc" }
swc_atoms = { optional = true, version = "0.6.5", path = "../swc_atoms" }
swc_bundler = { optional = true, version = "0.225.9", path = "../swc_bundler" }
swc_cached = { optional = true, version = "0.3.19", path = "../swc_cached" }
@ -344,7 +344,7 @@ swc_css_utils = { optional = true, version = "0.137.19", path
swc_css_visit = { optional = true, version = "0.139.19", path = "../swc_css_visit" }
swc_ecma_ast = { optional = true, version = "0.112.4", path = "../swc_ecma_ast" }
swc_ecma_codegen = { optional = true, version = "0.148.7", path = "../swc_ecma_codegen" }
swc_ecma_lints = { optional = true, version = "0.92.10", path = "../swc_ecma_lints" }
swc_ecma_lints = { optional = true, version = "0.92.11", path = "../swc_ecma_lints" }
swc_ecma_loader = { optional = true, version = "0.45.20", path = "../swc_ecma_loader" }
swc_ecma_minifier = { optional = true, version = "0.192.10", path = "../swc_ecma_minifier" }
swc_ecma_parser = { optional = true, version = "0.143.5", path = "../swc_ecma_parser" }
@ -362,7 +362,7 @@ swc_ecma_usage_analyzer = { optional = true, version = "0.23.7", path =
swc_ecma_utils = { optional = true, version = "0.127.7", path = "../swc_ecma_utils" }
swc_ecma_visit = { optional = true, version = "0.98.4", path = "../swc_ecma_visit" }
swc_malloc = { optional = true, version = "0.5.10", path = "../swc_malloc" }
swc_node_bundler = { optional = true, version = "0.62.11", path = "../swc_node_bundler" }
swc_node_bundler = { optional = true, version = "0.62.12", path = "../swc_node_bundler" }
swc_nodejs_common = { optional = true, version = "0.0.8", path = "../swc_nodejs_common" }
swc_plugin = { optional = true, version = "0.90.0", path = "../swc_plugin" }
swc_plugin_macro = { optional = true, version = "0.9.16", path = "../swc_plugin_macro" }

View File

@ -6,7 +6,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_ecma_lints"
repository = "https://github.com/swc-project/swc.git"
version = "0.92.10"
version = "0.92.11"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_estree_compat"
repository = "https://github.com/swc-project/swc.git"
version = "0.198.11"
version = "0.198.12"
[package.metadata.docs.rs]
all-features = true
@ -40,7 +40,7 @@ swc_node_comments = { version = "0.20.17", path = "../swc_node_comments/" }
criterion = "0.5"
pretty_assertions = "1.3"
swc = { version = "0.273.11", path = "../swc" }
swc = { version = "0.273.12", path = "../swc" }
swc_ecma_ast = { version = "0.112.4", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.143.5", path = "../swc_ecma_parser" }
swc_ecma_transforms = { version = "0.229.10", path = "../swc_ecma_transforms/" }

View File

@ -7,7 +7,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_node_bundler"
repository = "https://github.com/swc-project/swc.git"
version = "0.62.11"
version = "0.62.12"
[lib]
bench = false
@ -29,7 +29,7 @@ serde_json = "1"
tracing = "0.1.37"
string_enum = { version = "0.4.2", path = "../string_enum" }
swc = { version = "0.273.11", path = "../swc" }
swc = { version = "0.273.12", path = "../swc" }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_bundler = { version = "0.225.9", path = "../swc_bundler", features = [
"concurrent",