diff --git a/.changeset/fair-maps-move.md b/.changeset/fair-maps-move.md deleted file mode 100644 index 317919d90c76..000000000000 --- a/.changeset/fair-maps-move.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -swc_core: patch -swc_typescript: patch ---- - -fix(typescript): Check whether the method is abstract when checking `is_overload` diff --git a/CHANGELOG.md b/CHANGELOG.md index bc74cc584fd6..96fd0586c62c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,12 +16,21 @@ - **(es/renamer)** Check `preserved` in normal renaming mode ([#9666](https://github.com/swc-project/swc/issues/9666)) ([87b4e10](https://github.com/swc-project/swc/commit/87b4e10e5dbeb236ee5232d85d3176472fa4a9d0)) + +- **(typescript)** Check whether the method is abstract when checking `is_overload` ([#9678](https://github.com/swc-project/swc/issues/9678)) ([78500af](https://github.com/swc-project/swc/commit/78500af546ea3c92f016c729e173c66fccbe46ed)) + ### Documentation - **(contributing)** Document changeset ([#9667](https://github.com/swc-project/swc/issues/9667)) ([602c667](https://github.com/swc-project/swc/commit/602c667b9d435fa9155345952379287cb11e59db)) +### Miscellaneous Tasks + + + +- **(deps)** Update dependency swc-plugin-coverage-instrument to ^0.0.25 ([#9676](https://github.com/swc-project/swc/issues/9676)) ([b8d255b](https://github.com/swc-project/swc/commit/b8d255bf5aa65a5589331b0924269a23b3052137)) + ## [1.7.39] - 2024-10-22 ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index 6bb9693bbd02..5dce2d38e1ea 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4115,7 +4115,7 @@ dependencies = [ [[package]] name = "swc_core" -version = "1.0.5" +version = "1.0.6" dependencies = [ "anyhow", "binding_macros", @@ -5514,7 +5514,7 @@ dependencies = [ [[package]] name = "swc_typescript" -version = "1.0.0" +version = "1.0.1" dependencies = [ "swc_atoms", "swc_common", diff --git a/crates/swc/Cargo.toml b/crates/swc/Cargo.toml index 3eb28bf622d6..53bb5f64020a 100644 --- a/crates/swc/Cargo.toml +++ b/crates/swc/Cargo.toml @@ -107,7 +107,7 @@ swc_plugin_proxy = { version = "1.0.0", path = "../swc_plugin_proxy", optional = swc_plugin_runner = { version = "1.0.0", path = "../swc_plugin_runner", optional = true, default-features = false } swc_timer = { version = "1.0.0", path = "../swc_timer" } swc_transform_common = { version = "1.0.0", path = "../swc_transform_common" } -swc_typescript = { version = "1.0.0", path = "../swc_typescript" } +swc_typescript = { version = "1.0.1", path = "../swc_typescript" } swc_visit = { version = "1.0.0", path = "../swc_visit" } [dependencies.tokio] diff --git a/crates/swc_cli_impl/Cargo.toml b/crates/swc_cli_impl/Cargo.toml index 75211a6b1a6f..2961d67409ce 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 = "1.0.5", features = [ +swc_core = { version = "1.0.6", features = [ "trace_macro", "common_concurrent", "base_concurrent", diff --git a/crates/swc_core/Cargo.toml b/crates/swc_core/Cargo.toml index ffd6b60500aa..077f51487a95 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 = "1.0.5" +version = "1.0.6" [package.metadata.docs.rs] features = [ "allocator_node", @@ -380,7 +380,7 @@ swc_plugin_macro = { optional = true, version = "1.0.0", path = swc_plugin_proxy = { optional = true, version = "1.0.0", path = "../swc_plugin_proxy" } swc_trace_macro = { optional = true, version = "2.0.0", path = "../swc_trace_macro" } swc_transform_common = { optional = true, version = "1.0.0", path = "../swc_transform_common" } -swc_typescript = { optional = true, version = "1.0.0", path = "../swc_typescript" } +swc_typescript = { optional = true, version = "1.0.1", path = "../swc_typescript" } testing = { optional = true, version = "1.0.0", path = "../testing" } # TODO: eventually swc_plugin_runner needs to remove default features swc_allocator = { version = "1.0.0", path = "../swc_allocator", default-features = false } diff --git a/crates/swc_typescript/Cargo.toml b/crates/swc_typescript/Cargo.toml index 31a28cfd68d0..dd5eec0e36f5 100644 --- a/crates/swc_typescript/Cargo.toml +++ b/crates/swc_typescript/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_typescript" repository = { workspace = true } -version = "1.0.0" +version = "1.0.1" [dependencies] thiserror = { workspace = true }