mirror of
https://github.com/swc-project/swc.git
synced 2024-12-24 06:05:02 +03:00
chore: Bump crates
This commit is contained in:
parent
a5dbb17612
commit
e25380451e
14
CHANGELOG.md
14
CHANGELOG.md
@ -1,4 +1,12 @@
|
||||
# Changelog
|
||||
## [unreleased]
|
||||
|
||||
### Features
|
||||
|
||||
|
||||
|
||||
- **(es/lints)** Add `no-prototype-builtins` rule ([#8684](https://github.com/swc-project/swc/issues/8684)) ([a5dbb17](https://github.com/swc-project/swc/commit/a5dbb17612327c66366086f99b44c6731d125ffc))
|
||||
|
||||
## [1.4.6] - 2024-03-08
|
||||
|
||||
### Bug Fixes
|
||||
@ -1412,10 +1420,4 @@
|
||||
|
||||
- **(es/ast)** Expose `Archived` types ([#7811](https://github.com/swc-project/swc/issues/7811)) ([478fa47](https://github.com/swc-project/swc/commit/478fa4736f355555c7a19e7b674db5d7bd81c0e2))
|
||||
|
||||
### Refactor
|
||||
|
||||
|
||||
|
||||
- **(es/parser)** Don't attempt to handle shebangs in `read_token_number_sign` ([#7803](https://github.com/swc-project/swc/issues/7803)) ([5e7834a](https://github.com/swc-project/swc/commit/5e7834aa2ecb0cd01b72979f393a517f1c1e5add))
|
||||
|
||||
<!-- generated by git-cliff -->
|
||||
|
14
Cargo.lock
generated
14
Cargo.lock
generated
@ -301,7 +301,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "binding_macros"
|
||||
version = "0.64.17"
|
||||
version = "0.64.18"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"console_error_panic_hook",
|
||||
@ -3667,7 +3667,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc"
|
||||
version = "0.273.17"
|
||||
version = "0.273.18"
|
||||
dependencies = [
|
||||
"ansi_term",
|
||||
"anyhow",
|
||||
@ -3792,7 +3792,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_cli_impl"
|
||||
version = "0.8.17"
|
||||
version = "0.8.18"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"assert_cmd",
|
||||
@ -3897,7 +3897,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_core"
|
||||
version = "0.90.18"
|
||||
version = "0.90.19"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"binding_macros",
|
||||
@ -4387,7 +4387,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_ecma_lints"
|
||||
version = "0.92.15"
|
||||
version = "0.92.16"
|
||||
dependencies = [
|
||||
"auto_impl",
|
||||
"dashmap",
|
||||
@ -4926,7 +4926,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_estree_compat"
|
||||
version = "0.198.16"
|
||||
version = "0.198.17"
|
||||
dependencies = [
|
||||
"ahash 0.8.8",
|
||||
"anyhow",
|
||||
@ -5109,7 +5109,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_node_bundler"
|
||||
version = "0.62.17"
|
||||
version = "0.62.18"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"dashmap",
|
||||
|
@ -5,7 +5,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "binding_macros"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.64.17"
|
||||
version = "0.64.18"
|
||||
|
||||
[lib]
|
||||
bench = false
|
||||
@ -33,7 +33,7 @@ binding_wasm = [
|
||||
|
||||
[dependencies]
|
||||
# Common deps for the SWC imports
|
||||
swc = { optional = true, version = "0.273.17", path = "../swc" }
|
||||
swc = { optional = true, version = "0.273.18", 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.13", path = "../swc_ecma_transforms" }
|
||||
|
@ -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.17"
|
||||
version = "0.273.18"
|
||||
|
||||
[lib]
|
||||
bench = false
|
||||
@ -79,7 +79,7 @@ swc_config = { version = "0.1.11", path = "../swc_config" }
|
||||
swc_ecma_ast = { version = "0.112.5", path = "../swc_ecma_ast" }
|
||||
swc_ecma_codegen = { version = "0.148.10", path = "../swc_ecma_codegen" }
|
||||
swc_ecma_ext_transforms = { version = "0.113.10", path = "../swc_ecma_ext_transforms" }
|
||||
swc_ecma_lints = { version = "0.92.15", path = "../swc_ecma_lints" }
|
||||
swc_ecma_lints = { version = "0.92.16", path = "../swc_ecma_lints" }
|
||||
swc_ecma_loader = { version = "0.45.21", path = "../swc_ecma_loader", features = [
|
||||
"cache",
|
||||
"node",
|
||||
@ -132,7 +132,7 @@ rayon = "1.7.0"
|
||||
swc_ecma_ast = { version = "0.112.5", path = "../swc_ecma_ast", features = [
|
||||
"serde-impl",
|
||||
] }
|
||||
swc_ecma_lints = { version = "0.92.15", path = "../swc_ecma_lints", features = [
|
||||
swc_ecma_lints = { version = "0.92.16", path = "../swc_ecma_lints", features = [
|
||||
"non_critical_lints",
|
||||
] }
|
||||
swc_ecma_testing = { version = "0.22.21", path = "../swc_ecma_testing" }
|
||||
|
@ -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.17"
|
||||
version = "0.8.18"
|
||||
|
||||
[[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.18", features = [
|
||||
swc_core = { version = "0.90.19", features = [
|
||||
"trace_macro",
|
||||
"common_concurrent",
|
||||
"base_concurrent",
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_core"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.90.18"
|
||||
version = "0.90.19"
|
||||
[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.17", path = "../binding_macros" }
|
||||
swc = { optional = true, version = "0.273.17", path = "../swc" }
|
||||
binding_macros = { optional = true, version = "0.64.18", path = "../binding_macros" }
|
||||
swc = { optional = true, version = "0.273.18", path = "../swc" }
|
||||
swc_atoms = { optional = true, version = "0.6.5", path = "../swc_atoms" }
|
||||
swc_bundler = { optional = true, version = "0.225.13", 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.20", path
|
||||
swc_css_visit = { optional = true, version = "0.139.20", path = "../swc_css_visit" }
|
||||
swc_ecma_ast = { optional = true, version = "0.112.5", path = "../swc_ecma_ast" }
|
||||
swc_ecma_codegen = { optional = true, version = "0.148.10", path = "../swc_ecma_codegen" }
|
||||
swc_ecma_lints = { optional = true, version = "0.92.15", path = "../swc_ecma_lints" }
|
||||
swc_ecma_lints = { optional = true, version = "0.92.16", path = "../swc_ecma_lints" }
|
||||
swc_ecma_loader = { optional = true, version = "0.45.21", path = "../swc_ecma_loader" }
|
||||
swc_ecma_minifier = { optional = true, version = "0.192.14", path = "../swc_ecma_minifier" }
|
||||
swc_ecma_parser = { optional = true, version = "0.143.8", path = "../swc_ecma_parser" }
|
||||
@ -362,7 +362,7 @@ swc_ecma_usage_analyzer = { optional = true, version = "0.23.10", path
|
||||
swc_ecma_utils = { optional = true, version = "0.127.10", path = "../swc_ecma_utils" }
|
||||
swc_ecma_visit = { optional = true, version = "0.98.6", path = "../swc_ecma_visit" }
|
||||
swc_malloc = { optional = true, version = "0.5.10", path = "../swc_malloc" }
|
||||
swc_node_bundler = { optional = true, version = "0.62.17", path = "../swc_node_bundler" }
|
||||
swc_node_bundler = { optional = true, version = "0.62.18", 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" }
|
||||
|
@ -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.15"
|
||||
version = "0.92.16"
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[lib]
|
||||
|
@ -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.16"
|
||||
version = "0.198.17"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
@ -40,7 +40,7 @@ swc_node_comments = { version = "0.20.18", path = "../swc_node_comments/" }
|
||||
criterion = "0.5"
|
||||
pretty_assertions = "1.3"
|
||||
|
||||
swc = { version = "0.273.17", path = "../swc" }
|
||||
swc = { version = "0.273.18", path = "../swc" }
|
||||
swc_ecma_ast = { version = "0.112.5", path = "../swc_ecma_ast" }
|
||||
swc_ecma_parser = { version = "0.143.8", path = "../swc_ecma_parser" }
|
||||
swc_ecma_transforms = { version = "0.229.13", path = "../swc_ecma_transforms/" }
|
||||
|
@ -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.17"
|
||||
version = "0.62.18"
|
||||
|
||||
[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.17", path = "../swc" }
|
||||
swc = { version = "0.273.18", path = "../swc" }
|
||||
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
|
||||
swc_bundler = { version = "0.225.13", path = "../swc_bundler", features = [
|
||||
"concurrent",
|
||||
|
Loading…
Reference in New Issue
Block a user