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 Jan 27, 2024
1 parent d6a4615 commit 160043a
Show file tree
Hide file tree
Showing 24 changed files with 108 additions and 105 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@

- **(es/decorator)** Preserve state while traversing the `module_items` scope ([#8556](https://github.com/swc-project/swc/issues/8556)) ([f416aff](https://github.com/swc-project/swc/commit/f416aff7d7036de72509132603d9b423a0b95f68))


- **(es/loader)** Make `tsc` resolver work for bare specifier ([#8550](https://github.com/swc-project/swc/issues/8550)) ([d6a4615](https://github.com/swc-project/swc/commit/d6a46158987d0e96d6184d41c2fdd73df92d6681))

## [1.3.106] - 2024-01-25

### Bug Fixes
Expand Down
44 changes: 22 additions & 22 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions crates/binding_macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"
license = "Apache-2.0"
name = "binding_macros"
repository = "https://github.com/swc-project/swc.git"
version = "0.63.2"
version = "0.63.3"

[lib]
bench = false
Expand Down Expand Up @@ -33,10 +33,10 @@ binding_wasm = [

[dependencies]
# Common deps for the SWC imports
swc = { optional = true, version = "0.272.2", path = "../swc" }
swc = { optional = true, version = "0.272.3", path = "../swc" }
swc_common = { optional = true, version = "0.33.15", path = "../swc_common" }
swc_ecma_ast = { optional = true, version = "0.111.1", path = "../swc_ecma_ast" }
swc_ecma_transforms = { optional = true, version = "0.228.3", path = "../swc_ecma_transforms" }
swc_ecma_transforms = { optional = true, version = "0.228.4", path = "../swc_ecma_transforms" }
swc_ecma_visit = { optional = true, version = "0.97.1", path = "../swc_ecma_visit" }

# Optional deps for the wasm binding macro
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 @@ -5,7 +5,7 @@ edition = "2021"
license = "Apache-2.0"
name = "dbg-swc"
repository = "https://github.com/kdy1/dbg-swc.git"
version = "0.90.39"
version = "0.90.40"

[[bin]]
bench = false
Expand All @@ -32,7 +32,7 @@ swc_common = { version = "0.33.15", features = [
], path = "../swc_common" }
swc_ecma_ast = { version = "0.111.1", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.147.1", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.191.3", path = "../swc_ecma_minifier", features = [
swc_ecma_minifier = { version = "0.191.4", path = "../swc_ecma_minifier", features = [
"concurrent",
] }
swc_ecma_parser = { version = "0.142.1", path = "../swc_ecma_parser" }
Expand Down
16 changes: 8 additions & 8 deletions crates/swc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.272.2"
version = "0.272.3"

[lib]
bench = false
Expand Down Expand Up @@ -73,21 +73,21 @@ swc_common = { version = "0.33.15", path = "../swc_common", features = [
"sourcemap",
"parking_lot",
] }
swc_compiler_base = { version = "0.6.1", path = "../swc_compiler_base" }
swc_compiler_base = { version = "0.6.2", path = "../swc_compiler_base" }
swc_config = { version = "0.1.10", path = "../swc_config" }
swc_ecma_ast = { version = "0.111.1", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.147.1", path = "../swc_ecma_codegen" }
swc_ecma_ext_transforms = { version = "0.112.1", path = "../swc_ecma_ext_transforms" }
swc_ecma_lints = { version = "0.91.1", path = "../swc_ecma_lints" }
swc_ecma_loader = { version = "0.45.16", path = "../swc_ecma_loader", features = [
swc_ecma_loader = { version = "0.45.17", path = "../swc_ecma_loader", features = [
"cache",
"node",
"tsc",
] }
swc_ecma_minifier = { version = "0.191.3", path = "../swc_ecma_minifier" }
swc_ecma_minifier = { version = "0.191.4", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "0.142.1", path = "../swc_ecma_parser" }
swc_ecma_preset_env = { version = "0.205.3", path = "../swc_ecma_preset_env" }
swc_ecma_transforms = { version = "0.228.3", path = "../swc_ecma_transforms", features = [
swc_ecma_preset_env = { version = "0.205.4", path = "../swc_ecma_preset_env" }
swc_ecma_transforms = { version = "0.228.4", path = "../swc_ecma_transforms", features = [
"compat",
"module",
"optimization",
Expand All @@ -97,13 +97,13 @@ swc_ecma_transforms = { version = "0.228.3", path = "../swc_ecma_transforms", fe
] }
swc_ecma_transforms_base = { version = "0.136.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { version = "0.162.1", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_optimization = { version = "0.197.3", path = "../swc_ecma_transforms_optimization" }
swc_ecma_transforms_optimization = { version = "0.197.4", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "0.126.1", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.97.1", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "0.17.14", path = "../swc_error_reporters" }
swc_node_comments = { version = "0.20.14", path = "../swc_node_comments" }
swc_plugin_proxy = { version = "0.40.1", path = "../swc_plugin_proxy", optional = true }
swc_plugin_runner = { version = "0.105.2", path = "../swc_plugin_runner", optional = true, default-features = false }
swc_plugin_runner = { version = "0.105.3", path = "../swc_plugin_runner", optional = true, default-features = false }
swc_timer = { version = "0.21.16", path = "../swc_timer" }
swc_visit = { version = "0.5.8", path = "../swc_visit" }

Expand Down
16 changes: 8 additions & 8 deletions crates/swc_bundler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ include = ["Cargo.toml", "build.rs", "src/**/*.rs", "src/**/*.js"]
license = "Apache-2.0"
name = "swc_bundler"
repository = "https://github.com/swc-project/swc.git"
version = "0.224.3"
version = "0.224.4"

[package.metadata.docs.rs]
all-features = true
Expand Down Expand Up @@ -41,10 +41,10 @@ swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.15", path = "../swc_common" }
swc_ecma_ast = { version = "0.111.1", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.147.1", path = "../swc_ecma_codegen" }
swc_ecma_loader = { version = "0.45.16", path = "../swc_ecma_loader" }
swc_ecma_loader = { version = "0.45.17", path = "../swc_ecma_loader" }
swc_ecma_parser = { version = "0.142.1", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.136.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_optimization = { version = "0.197.3", path = "../swc_ecma_transforms_optimization" }
swc_ecma_transforms_optimization = { version = "0.197.4", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "0.126.1", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.97.1", path = "../swc_ecma_visit" }
swc_fast_graph = { version = "0.21.15", path = "../swc_fast_graph/" }
Expand All @@ -59,15 +59,15 @@ sha-1 = "0.10"
tempfile = "3.6.0"
url = "2.4.0"

swc_ecma_loader = { version = "0.45.16", path = "../swc_ecma_loader", features = [
swc_ecma_loader = { version = "0.45.17", path = "../swc_ecma_loader", features = [
"node",
"cache",
] }
swc_ecma_minifier = { version = "0.191.3", path = "../swc_ecma_minifier", features = [
swc_ecma_minifier = { version = "0.191.4", path = "../swc_ecma_minifier", features = [
"concurrent",
] }
swc_ecma_transforms_proposal = { version = "0.170.3", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_react = { version = "0.182.2", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_typescript = { version = "0.187.3", path = "../swc_ecma_transforms_typescript" }
swc_ecma_transforms_proposal = { version = "0.170.4", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_react = { version = "0.182.3", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_typescript = { version = "0.187.4", path = "../swc_ecma_transforms_typescript" }
swc_malloc = { version = "0.5.10", path = "../swc_malloc" }
testing = { version = "0.35.16", path = "../testing" }
4 changes: 2 additions & 2 deletions crates/swc_cli_impl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.7.2"
version = "0.7.3"

[[bin]]
name = "swc"
Expand Down Expand Up @@ -40,7 +40,7 @@ tracing-futures = "0.2.5"
tracing-subscriber = { version = "0.3.9", features = ["env-filter"] }
walkdir = "2"

swc_core = { version = "0.89.2", features = [
swc_core = { version = "0.89.3", 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 @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_compiler_base"
repository = "https://github.com/swc-project/swc.git"
version = "0.6.1"
version = "0.6.2"

[features]
node = ["napi", "napi-derive"]
Expand All @@ -27,7 +27,7 @@ swc_common = { version = "0.33.15", path = "../swc_common", features = [
swc_config = { version = "0.1.10", path = "../swc_config" }
swc_ecma_ast = { version = "0.111.1", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.147.1", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.191.3", path = "../swc_ecma_minifier" }
swc_ecma_minifier = { version = "0.191.4", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "0.142.1", path = "../swc_ecma_parser" }
swc_ecma_visit = { version = "0.97.1", path = "../swc_ecma_visit" }
swc_timer = { version = "0.21.16", path = "../swc_timer" }
Expand Down
Loading

0 comments on commit 160043a

Please sign in to comment.