diff --git a/CHANGELOG.md b/CHANGELOG.md index 1680a2a1277..134f3baf84d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,9 @@ - **(es/es2015)** Fix injection location of `this` for getter/setter properties ([#8993](https://github.com/swc-project/swc/issues/8993)) ([09121a6](https://github.com/swc-project/swc/commit/09121a61cc5bf390b627e548c471bfc39ccb1c0f)) + +- **(es/minifier)** Preserve unused special properties ([#9005](https://github.com/swc-project/swc/issues/9005)) ([e764ff6](https://github.com/swc-project/swc/commit/e764ff6f64d4e528a2af3e3ad7859ab3f8a2fe48)) + ### Features diff --git a/Cargo.lock b/Cargo.lock index 0cf9898aff0..1ba6a014985 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4470,7 +4470,7 @@ dependencies = [ [[package]] name = "swc_ecma_minifier" -version = "0.194.7" +version = "0.194.8" dependencies = [ "ansi_term", "anyhow", diff --git a/crates/swc_ecma_minifier/Cargo.toml b/crates/swc_ecma_minifier/Cargo.toml index 01e510f30dd..109799adc9b 100644 --- a/crates/swc_ecma_minifier/Cargo.toml +++ b/crates/swc_ecma_minifier/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/lists/*.json"] license = "Apache-2.0" name = "swc_ecma_minifier" repository = "https://github.com/swc-project/swc.git" -version = "0.194.7" +version = "0.194.8" [package.metadata.docs.rs] all-features = true