diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f3f52a9ad3a..d3fe37f1183d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,9 @@ - **(css/minifier)** Compress alpha in a hex (#6653) ([f6292e6](https://github.com/swc-project/swc/commit/f6292e63b51e5ad5a8d1fcc253e8342438098898)) +- **(css/minifier)** Improve compression of media at-rules (#6665) ([2fd3ced](https://github.com/swc-project/swc/commit/2fd3ced40c97fbac162f70e49c76c775e66a4552)) + + - **(css/parser)** Normalize hex colors (#6652) ([b257d5d](https://github.com/swc-project/swc/commit/b257d5d591c04feedf2f5997a984bf2f843b9d19)) diff --git a/Cargo.lock b/Cargo.lock index 4f2b338c856f..250857fa5bdf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3260,7 +3260,7 @@ dependencies = [ [[package]] name = "swc_core" -version = "0.48.28" +version = "0.48.29" dependencies = [ "anyhow", "binding_macros", @@ -3313,7 +3313,7 @@ dependencies = [ [[package]] name = "swc_css" -version = "0.144.22" +version = "0.144.23" dependencies = [ "swc_css_ast", "swc_css_codegen", @@ -3407,7 +3407,7 @@ dependencies = [ [[package]] name = "swc_css_minifier" -version = "0.106.14" +version = "0.106.15" dependencies = [ "criterion", "serde", @@ -4160,7 +4160,7 @@ dependencies = [ [[package]] name = "swc_html" -version = "0.100.22" +version = "0.100.23" dependencies = [ "swc_html_ast", "swc_html_codegen", @@ -4212,7 +4212,7 @@ dependencies = [ [[package]] name = "swc_html_minifier" -version = "0.97.22" +version = "0.97.23" dependencies = [ "criterion", "once_cell", diff --git a/crates/swc_core/Cargo.toml b/crates/swc_core/Cargo.toml index 24cf93a82d22..8c23ade485d8 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 = "0.48.28" +version = "0.48.29" [package.metadata.docs.rs] features = [ "common_perf", @@ -348,7 +348,7 @@ swc_cached = { optional = true, version = "0.3.15", path = swc_common = { optional = true, version = "0.29.23", path = "../swc_common" } swc_css_ast = { optional = true, version = "0.131.3", path = "../swc_css_ast" } swc_css_codegen = { optional = true, version = "0.141.8", path = "../swc_css_codegen" } -swc_css_minifier = { optional = true, version = "0.106.14", path = "../swc_css_minifier" } +swc_css_minifier = { optional = true, version = "0.106.15", path = "../swc_css_minifier" } swc_css_modules = { optional = true, version = "0.17.12", path = "../swc_css_modules" } swc_css_parser = { optional = true, version = "0.140.8", path = "../swc_css_parser" } swc_css_prefixer = { optional = true, version = "0.142.12", path = "../swc_css_prefixer" } diff --git a/crates/swc_css/Cargo.toml b/crates/swc_css/Cargo.toml index df98e48a5098..c281a6b2e9fd 100644 --- a/crates/swc_css/Cargo.toml +++ b/crates/swc_css/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_css" repository = "https://github.com/swc-project/swc.git" -version = "0.144.22" +version = "0.144.23" [package.metadata.docs.rs] all-features = true @@ -25,7 +25,7 @@ prefixer = ["swc_css_prefixer"] swc_css_ast = {version = "0.131.3", path = "../swc_css_ast"} swc_css_codegen = {version = "0.141.8", path = "../swc_css_codegen"} swc_css_compat = {version = "0.16.12", path = "../swc_css_compat", optional = true} -swc_css_minifier = {version = "0.106.14", path = "../swc_css_minifier", optional = true} +swc_css_minifier = {version = "0.106.15", path = "../swc_css_minifier", optional = true} swc_css_modules = {version = "0.17.12", path = "../swc_css_modules", optional = true} swc_css_parser = {version = "0.140.8", path = "../swc_css_parser"} swc_css_prefixer = {version = "0.142.12", path = "../swc_css_prefixer", optional = true} diff --git a/crates/swc_css_minifier/Cargo.toml b/crates/swc_css_minifier/Cargo.toml index 07921a4cc793..ad1eb2d39e4d 100644 --- a/crates/swc_css_minifier/Cargo.toml +++ b/crates/swc_css_minifier/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_css_minifier" repository = "https://github.com/swc-project/swc.git" -version = "0.106.14" +version = "0.106.15" [lib] bench = false diff --git a/crates/swc_html/Cargo.toml b/crates/swc_html/Cargo.toml index 1ff676af9190..7645654a62b7 100644 --- a/crates/swc_html/Cargo.toml +++ b/crates/swc_html/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_html" repository = "https://github.com/swc-project/swc.git" -version = "0.100.22" +version = "0.100.23" [package.metadata.docs.rs] all-features = true @@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"] [dependencies] swc_html_ast = {version = "0.28.15", path = "../swc_html_ast"} swc_html_codegen = {version = "0.37.27", path = "../swc_html_codegen"} -swc_html_minifier = {version = "0.97.22", path = "../swc_html_minifier", optional = true} +swc_html_minifier = {version = "0.97.23", path = "../swc_html_minifier", optional = true} swc_html_parser = {version = "0.34.26", path = "../swc_html_parser"} swc_html_visit = {version = "0.28.15", path = "../swc_html_visit"} diff --git a/crates/swc_html_minifier/Cargo.toml b/crates/swc_html_minifier/Cargo.toml index 0ff77ffe4e48..c1f196053c77 100644 --- a/crates/swc_html_minifier/Cargo.toml +++ b/crates/swc_html_minifier/Cargo.toml @@ -10,7 +10,7 @@ include = ["Cargo.toml", "src/**/*.rs", "data/**/*.json"] license = "Apache-2.0" name = "swc_html_minifier" repository = "https://github.com/swc-project/swc.git" -version = "0.97.22" +version = "0.97.23" [lib] bench = false @@ -24,7 +24,7 @@ swc_cached = { version = "0.3.15", path = "../swc_cached" } swc_common = { version = "0.29.23", path = "../swc_common" } swc_css_ast = { version = "0.131.3", path = "../swc_css_ast" } swc_css_codegen = { version = "0.141.8", path = "../swc_css_codegen" } -swc_css_minifier = { version = "0.106.14", path = "../swc_css_minifier" } +swc_css_minifier = { version = "0.106.15", path = "../swc_css_minifier" } swc_css_parser = { version = "0.140.8", path = "../swc_css_parser" } swc_ecma_ast = { version = "0.95.7", path = "../swc_ecma_ast" } swc_ecma_codegen = { version = "0.128.13", path = "../swc_ecma_codegen" }