diff --git a/.changeset/new-apricots-exercise.md b/.changeset/new-apricots-exercise.md deleted file mode 100644 index 248940a7e1f8..000000000000 --- a/.changeset/new-apricots-exercise.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -swc: patch -swc_core: patch ---- - -fix: don't panic when wasm bytecheck faild diff --git a/CHANGELOG.md b/CHANGELOG.md index 2369c1d74ac7..2a0bb9413480 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ +- **(es)** Don't panic when wasm bytecheck faild ([#9803](/~https://github.com/swc-project/swc/issues/9803)) ([c81be2e](/~https://github.com/swc-project/swc/commit/c81be2ee2818106387d9c9f5d7ee553c6678e18f)) + + - **(es/parser)** Do not parse empty stmt after using decl ([#9798](/~https://github.com/swc-project/swc/issues/9798)) ([c2696db](/~https://github.com/swc-project/swc/commit/c2696db528fc98187c5c5f7413bd9daac7d6c1b6)) ## [1.10.1] - 2024-12-09 diff --git a/Cargo.lock b/Cargo.lock index 09040b6f2729..11ddd0d266bc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4327,7 +4327,7 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" [[package]] name = "swc" -version = "9.0.0" +version = "9.0.1" dependencies = [ "ansi_term", "anyhow", @@ -4595,7 +4595,7 @@ dependencies = [ [[package]] name = "swc_core" -version = "9.0.1" +version = "9.0.2" dependencies = [ "anyhow", "binding_macros", diff --git a/crates/binding_macros/Cargo.toml b/crates/binding_macros/Cargo.toml index 41862345831a..f9d1b9e089da 100644 --- a/crates/binding_macros/Cargo.toml +++ b/crates/binding_macros/Cargo.toml @@ -33,7 +33,7 @@ binding_wasm = [ [dependencies] # Common deps for the SWC imports -swc = { optional = true, version = "9.0.0", path = "../swc" } +swc = { optional = true, version = "9.0.1", path = "../swc" } swc_common = { optional = true, version = "5.0.0", path = "../swc_common" } swc_ecma_ast = { optional = true, version = "5.0.0", path = "../swc_ecma_ast" } swc_ecma_transforms = { optional = true, version = "8.0.0", path = "../swc_ecma_transforms" } diff --git a/crates/swc/Cargo.toml b/crates/swc/Cargo.toml index 720b63dcbd47..f18b547d703f 100644 --- a/crates/swc/Cargo.toml +++ b/crates/swc/Cargo.toml @@ -9,7 +9,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc" repository = "/~https://github.com/swc-project/swc.git" -version = "9.0.0" +version = "9.0.1" [lib] bench = false diff --git a/crates/swc_cli_impl/Cargo.toml b/crates/swc_cli_impl/Cargo.toml index ffb3616c26ba..a58189a369d3 100644 --- a/crates/swc_cli_impl/Cargo.toml +++ b/crates/swc_cli_impl/Cargo.toml @@ -39,7 +39,7 @@ tracing-futures = { workspace = true } tracing-subscriber = { workspace = true, features = ["env-filter"] } walkdir = { workspace = true } -swc_core = { version = "9.0.1", features = [ +swc_core = { version = "9.0.2", features = [ "trace_macro", "common_concurrent", "base_concurrent", diff --git a/crates/swc_core/Cargo.toml b/crates/swc_core/Cargo.toml index f68e3e113d0e..75b43c6c7d80 100644 --- a/crates/swc_core/Cargo.toml +++ b/crates/swc_core/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_core" repository = "/~https://github.com/swc-project/swc.git" -version = "9.0.1" +version = "9.0.2" [package.metadata.docs.rs] features = [ "allocator_node", @@ -339,7 +339,7 @@ once_cell = { workspace = true, optional = true } # swc_* dependencies binding_macros = { optional = true, version = "9.0.0", path = "../binding_macros" } -swc = { optional = true, version = "9.0.0", path = "../swc" } +swc = { optional = true, version = "9.0.1", path = "../swc" } swc_atoms = { optional = true, version = "3.0.0", path = "../swc_atoms" } swc_bundler = { optional = true, version = "6.0.0", path = "../swc_bundler" } swc_cached = { optional = true, version = "1.0.0", path = "../swc_cached" } diff --git a/crates/swc_estree_compat/Cargo.toml b/crates/swc_estree_compat/Cargo.toml index 4c6e053f08fe..005170ec34bc 100644 --- a/crates/swc_estree_compat/Cargo.toml +++ b/crates/swc_estree_compat/Cargo.toml @@ -41,7 +41,7 @@ codspeed-criterion-compat = { workspace = true } criterion = { workspace = true } pretty_assertions = { workspace = true } -swc = { version = "9.0.0", path = "../swc" } +swc = { version = "9.0.1", path = "../swc" } swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" } swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" } swc_ecma_transforms = { version = "8.0.0", path = "../swc_ecma_transforms/" } diff --git a/crates/swc_node_bundler/Cargo.toml b/crates/swc_node_bundler/Cargo.toml index d65224895453..c9898fc79198 100644 --- a/crates/swc_node_bundler/Cargo.toml +++ b/crates/swc_node_bundler/Cargo.toml @@ -29,7 +29,7 @@ serde_json = { workspace = true } tracing = { workspace = true } string_enum = { version = "1.0.0", path = "../string_enum" } -swc = { version = "9.0.0", path = "../swc" } +swc = { version = "9.0.1", path = "../swc" } swc_atoms = { version = "3.0.0", path = "../swc_atoms" } swc_bundler = { version = "6.0.0", path = "../swc_bundler", features = [ "concurrent",