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 Feb 14, 2024
1 parent 5f1cf01 commit cb95f04
Show file tree
Hide file tree
Showing 15 changed files with 39 additions and 36 deletions.
9 changes: 6 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Changelog
## [unreleased]

### Bug Fixes



- **(es/react)** Validate pragma before parsing ([#8637](https://github.com/swc-project/swc/issues/8637)) ([5f1cf01](https://github.com/swc-project/swc/commit/5f1cf018237d12f786fc6deee48cae5d7d3d77de))

### Features


Expand Down Expand Up @@ -1440,9 +1446,6 @@



- **(es/minifier)** Only cast global `Infinity`/`undefined`/`NaN` ([#7684](https://github.com/swc-project/swc/issues/7684)) ([241c04a](https://github.com/swc-project/swc/commit/241c04ab4a2e7e7f34563fdc8a355f82c6ba03e8))


- **(es/minifier)** Drop line comments starting with `!` ([#7689](https://github.com/swc-project/swc/issues/7689)) ([951138c](https://github.com/swc-project/swc/commit/951138cd13339ca7b5cb5305203e466fcd4a0b0e))


Expand Down
10 changes: 5 additions & 5 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.6", path = "../swc" }
swc_common = { optional = true, version = "0.33.17", path = "../swc_common" }
swc_ecma_ast = { optional = true, version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_transforms = { optional = true, version = "0.229.4", path = "../swc_ecma_transforms" }
swc_ecma_transforms = { optional = true, version = "0.229.5", path = "../swc_ecma_transforms" }
swc_ecma_visit = { optional = true, version = "0.98.2", path = "../swc_ecma_visit" }

# Optional deps for the wasm binding macro
Expand Down
6 changes: 3 additions & 3 deletions crates/swc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ swc_ecma_loader = { version = "0.45.19", path = "../swc_ecma_loader", features =
] }
swc_ecma_minifier = { version = "0.192.5", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" }
swc_ecma_preset_env = { version = "0.206.4", path = "../swc_ecma_preset_env" }
swc_ecma_transforms = { version = "0.229.4", path = "../swc_ecma_transforms", features = [
swc_ecma_preset_env = { version = "0.206.5", path = "../swc_ecma_preset_env" }
swc_ecma_transforms = { version = "0.229.5", path = "../swc_ecma_transforms", features = [
"compat",
"module",
"optimization",
Expand All @@ -97,7 +97,7 @@ swc_ecma_transforms = { version = "0.229.4", path = "../swc_ecma_transforms", fe
] }
swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { version = "0.163.4", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_optimization = { version = "0.198.4", path = "../swc_ecma_transforms_optimization" }
swc_ecma_transforms_optimization = { version = "0.198.5", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "0.17.16", path = "../swc_error_reporters" }
Expand Down
6 changes: 3 additions & 3 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.3", path = "../swc_ecma_co
swc_ecma_loader = { version = "0.45.19", path = "../swc_ecma_loader" }
swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_optimization = { version = "0.198.4", path = "../swc_ecma_transforms_optimization" }
swc_ecma_transforms_optimization = { version = "0.198.5", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" }
swc_fast_graph = { version = "0.21.17", path = "../swc_fast_graph/" }
Expand All @@ -67,7 +67,7 @@ swc_ecma_minifier = { version = "0.192.5", path = "../swc_ecma_minifier", featur
"concurrent",
] }
swc_ecma_transforms_proposal = { version = "0.171.4", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_react = { version = "0.183.4", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_typescript = { version = "0.188.4", path = "../swc_ecma_transforms_typescript" }
swc_ecma_transforms_react = { version = "0.183.5", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_typescript = { version = "0.188.5", path = "../swc_ecma_transforms_typescript" }
swc_malloc = { version = "0.5.10", path = "../swc_malloc" }
testing = { version = "0.35.18", path = "../testing" }
8 changes: 4 additions & 4 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.4", path =
swc_ecma_loader = { optional = true, version = "0.45.19", path = "../swc_ecma_loader" }
swc_ecma_minifier = { optional = true, version = "0.192.5", path = "../swc_ecma_minifier" }
swc_ecma_parser = { optional = true, version = "0.143.3", path = "../swc_ecma_parser" }
swc_ecma_preset_env = { optional = true, version = "0.206.4", path = "../swc_ecma_preset_env" }
swc_ecma_preset_env = { optional = true, version = "0.206.5", path = "../swc_ecma_preset_env" }
swc_ecma_quote_macros = { optional = true, version = "0.54.6", path = "../swc_ecma_quote_macros" }
swc_ecma_transforms_base = { optional = true, version = "0.137.4", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { optional = true, version = "0.163.4", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_module = { optional = true, version = "0.180.4", path = "../swc_ecma_transforms_module" }
swc_ecma_transforms_optimization = { optional = true, version = "0.198.4", path = "../swc_ecma_transforms_optimization" }
swc_ecma_transforms_optimization = { optional = true, version = "0.198.5", path = "../swc_ecma_transforms_optimization" }
swc_ecma_transforms_proposal = { optional = true, version = "0.171.4", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_react = { optional = true, version = "0.183.4", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_react = { optional = true, version = "0.183.5", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_testing = { optional = true, version = "0.140.4", path = "../swc_ecma_transforms_testing" }
swc_ecma_transforms_typescript = { optional = true, version = "0.188.4", path = "../swc_ecma_transforms_typescript" }
swc_ecma_transforms_typescript = { optional = true, version = "0.188.5", path = "../swc_ecma_transforms_typescript" }
swc_ecma_usage_analyzer = { optional = true, version = "0.23.4", path = "../swc_ecma_usage_analyzer" }
swc_ecma_utils = { optional = true, version = "0.127.4", path = "../swc_ecma_utils" }
swc_ecma_visit = { optional = true, version = "0.98.2", path = "../swc_ecma_visit" }
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.2", path = "../swc_ecma_ast", features = [
swc_ecma_codegen = { version = "0.148.3", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_optimization = { version = "0.198.4", path = "../swc_ecma_transforms_optimization" }
swc_ecma_transforms_optimization = { version = "0.198.5", path = "../swc_ecma_transforms_optimization" }
swc_ecma_usage_analyzer = { version = "0.23.4", path = "../swc_ecma_usage_analyzer" }
swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.2", 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.4"
version = "0.206.5"

[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.17", path = "../swc_common" }
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_transforms = { version = "0.229.4", path = "../swc_ecma_transforms", features = [
swc_ecma_transforms = { version = "0.229.5", path = "../swc_ecma_transforms", features = [
"compat",
"proposal",
] }
Expand Down
8 changes: 4 additions & 4 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.4"
version = "0.229.5"

[package.metadata.docs.rs]
all-features = true
Expand Down Expand Up @@ -37,10 +37,10 @@ swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_as
swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { version = "0.163.4", path = "../swc_ecma_transforms_compat", optional = true }
swc_ecma_transforms_module = { version = "0.180.4", path = "../swc_ecma_transforms_module", optional = true }
swc_ecma_transforms_optimization = { version = "0.198.4", path = "../swc_ecma_transforms_optimization", optional = true }
swc_ecma_transforms_optimization = { version = "0.198.5", path = "../swc_ecma_transforms_optimization", optional = true }
swc_ecma_transforms_proposal = { version = "0.171.4", path = "../swc_ecma_transforms_proposal", optional = true }
swc_ecma_transforms_react = { version = "0.183.4", path = "../swc_ecma_transforms_react", optional = true }
swc_ecma_transforms_typescript = { version = "0.188.4", path = "../swc_ecma_transforms_typescript", optional = true }
swc_ecma_transforms_react = { version = "0.183.5", path = "../swc_ecma_transforms_react", optional = true }
swc_ecma_transforms_typescript = { version = "0.188.5", path = "../swc_ecma_transforms_typescript", optional = true }
swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" }

Expand Down
6 changes: 3 additions & 3 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.4"
version = "0.198.5"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[lib]
Expand Down Expand Up @@ -45,7 +45,7 @@ swc_fast_graph = { version = "0.21.17", path = "../swc_fast_graph" }
swc_ecma_transforms_compat = { version = "0.163.4", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_module = { version = "0.180.4", path = "../swc_ecma_transforms_module" }
swc_ecma_transforms_proposal = { version = "0.171.4", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_react = { version = "0.183.4", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_react = { version = "0.183.5", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_testing = { version = "0.140.4", path = "../swc_ecma_transforms_testing" }
swc_ecma_transforms_typescript = { version = "0.188.4", path = "../swc_ecma_transforms_typescript" }
swc_ecma_transforms_typescript = { version = "0.188.5", path = "../swc_ecma_transforms_typescript" }
testing = { version = "0.35.18", path = "../testing" }
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 @@ -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.4"
version = "0.183.5"

[lib]
bench = false
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.188.4"
version = "0.188.5"

[lib]
bench = false
Expand All @@ -20,7 +20,7 @@ swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.17", path = "../swc_common" }
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "0.137.4", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_react = { version = "0.183.4", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_react = { version = "0.183.5", path = "../swc_ecma_transforms_react" }
swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" }

Expand Down
4 changes: 2 additions & 2 deletions crates/swc_ecmascript/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.148.3", path = "../swc_ecma_codegen", optional = true }
swc_ecma_minifier = { version = "0.192.5", path = "../swc_ecma_minifier", optional = true }
swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser", optional = true, default-features = false }
swc_ecma_preset_env = { version = "0.206.4", path = "../swc_ecma_preset_env", optional = true }
swc_ecma_preset_env = { version = "0.206.5", path = "../swc_ecma_preset_env", optional = true }
swc_ecma_quote = { version = "0.59.6", path = "../swc_ecma_quote", optional = true }
swc_ecma_transforms = { version = "0.229.4", path = "../swc_ecma_transforms", optional = true }
swc_ecma_transforms = { version = "0.229.5", path = "../swc_ecma_transforms", optional = true }
swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils", optional = true }
swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit", optional = true }

Expand Down
2 changes: 1 addition & 1 deletion crates/swc_estree_compat/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ pretty_assertions = "1.3"
swc = { version = "0.273.6", path = "../swc" }
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" }
swc_ecma_transforms = { version = "0.229.4", path = "../swc_ecma_transforms/" }
swc_ecma_transforms = { version = "0.229.5", path = "../swc_ecma_transforms/" }
testing = { version = "0.35.18", path = "../testing" }
walkdir = "2"

Expand Down
2 changes: 1 addition & 1 deletion crates/swc_node_bundler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.148.3", path = "../swc_ecma_codegen" }
swc_ecma_loader = { version = "0.45.19", path = "../swc_ecma_loader" }
swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" }
swc_ecma_transforms = { version = "0.229.4", path = "../swc_ecma_transforms" }
swc_ecma_transforms = { version = "0.229.5", path = "../swc_ecma_transforms" }
swc_ecma_utils = { version = "0.127.4", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" }
swc_malloc = { version = "0.5.10", path = "../swc_malloc" }
Expand Down

0 comments on commit cb95f04

Please sign in to comment.