diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c22f5203f0d..6c528307a278 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -35,6 +35,9 @@ - **(css/compat)** Add `Compiler` (#6626) ([b3bbd74](https://github.com/swc-project/swc/commit/b3bbd742bf5a3bc51105e16cf6260b63ef9b124a)) +- **(css/compat)** Support custom media queries (#6625) ([a5f7b4b](https://github.com/swc-project/swc/commit/a5f7b4b8aa48d3d920dcebf72d766b6e3f458fb7)) + + - **(css/minifier)** Support `to` and `from` with `initial` (#6613) ([cb49fa6](https://github.com/swc-project/swc/commit/cb49fa6f1ddf2ae37262769c538ef1a51adc404c)) diff --git a/Cargo.lock b/Cargo.lock index f351db0f2b94..d6911f5d1a30 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3260,7 +3260,7 @@ dependencies = [ [[package]] name = "swc_core" -version = "0.48.6" +version = "0.48.7" dependencies = [ "anyhow", "binding_macros", @@ -3313,7 +3313,7 @@ dependencies = [ [[package]] name = "swc_css" -version = "0.144.5" +version = "0.144.6" dependencies = [ "swc_css_ast", "swc_css_codegen", @@ -3370,7 +3370,7 @@ dependencies = [ [[package]] name = "swc_css_compat" -version = "0.16.2" +version = "0.16.3" dependencies = [ "bitflags", "once_cell", @@ -3424,7 +3424,7 @@ dependencies = [ [[package]] name = "swc_css_modules" -version = "0.17.2" +version = "0.17.3" dependencies = [ "rustc-hash", "serde", diff --git a/crates/swc_core/Cargo.toml b/crates/swc_core/Cargo.toml index fb345c2a4352..204128bde97a 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.6" +version = "0.48.7" [package.metadata.docs.rs] features = [ "common_perf", @@ -349,7 +349,7 @@ swc_common = { optional = true, version = "0.29.21", path swc_css_ast = { optional = true, version = "0.131.1", path = "../swc_css_ast" } swc_css_codegen = { optional = true, version = "0.141.1", path = "../swc_css_codegen" } swc_css_minifier = { optional = true, version = "0.106.4", path = "../swc_css_minifier" } -swc_css_modules = { optional = true, version = "0.17.2", path = "../swc_css_modules" } +swc_css_modules = { optional = true, version = "0.17.3", path = "../swc_css_modules" } swc_css_parser = { optional = true, version = "0.140.1", path = "../swc_css_parser" } swc_css_prefixer = { optional = true, version = "0.142.1", path = "../swc_css_prefixer" } swc_css_utils = { optional = true, version = "0.128.1", path = "../swc_css_utils/" } @@ -381,7 +381,7 @@ swc_plugin_proxy = { optional = true, version = "0.23.5", path = swc_trace_macro = { optional = true, version = "0.1.2", path = "../swc_trace_macro" } testing = { optional = true, version = "0.31.22", path = "../testing" } # TODO: eventually swc_plugin_runner needs to remove default features -swc_css_compat = { version = "0.16.2", path = "../swc_css_compat", optional = true } +swc_css_compat = { version = "0.16.3", path = "../swc_css_compat", optional = true } swc_plugin_runner = { optional = true, version = "0.81.1", path = "../swc_plugin_runner", default-features = false } [build-dependencies] diff --git a/crates/swc_css/Cargo.toml b/crates/swc_css/Cargo.toml index b48c3295aac3..6b6f6d1cb80d 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.5" +version = "0.144.6" [package.metadata.docs.rs] all-features = true @@ -24,9 +24,9 @@ prefixer = ["swc_css_prefixer"] [dependencies] swc_css_ast = {version = "0.131.1", path = "../swc_css_ast"} swc_css_codegen = {version = "0.141.1", path = "../swc_css_codegen"} -swc_css_compat = {version = "0.16.2", path = "../swc_css_compat", optional = true} +swc_css_compat = {version = "0.16.3", path = "../swc_css_compat", optional = true} swc_css_minifier = {version = "0.106.4", path = "../swc_css_minifier", optional = true} -swc_css_modules = {version = "0.17.2", path = "../swc_css_modules", optional = true} +swc_css_modules = {version = "0.17.3", path = "../swc_css_modules", optional = true} swc_css_parser = {version = "0.140.1", path = "../swc_css_parser"} swc_css_prefixer = {version = "0.142.1", path = "../swc_css_prefixer", optional = true} swc_css_utils = {version = "0.128.1", path = "../swc_css_utils/"} diff --git a/crates/swc_css_compat/Cargo.toml b/crates/swc_css_compat/Cargo.toml index a698879d0a78..34bec8a37e6b 100644 --- a/crates/swc_css_compat/Cargo.toml +++ b/crates/swc_css_compat/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json", "data/**/*.json"] license = "Apache-2.0" name = "swc_css_compat" repository = "https://github.com/swc-project/swc.git" -version = "0.16.2" +version = "0.16.3" [lib] bench = false diff --git a/crates/swc_css_modules/Cargo.toml b/crates/swc_css_modules/Cargo.toml index c70d3229452d..21f70a00caf5 100644 --- a/crates/swc_css_modules/Cargo.toml +++ b/crates/swc_css_modules/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_css_modules" repository = "https://github.com/swc-project/swc.git" -version = "0.17.2" +version = "0.17.3" [lib] bench = false @@ -26,5 +26,5 @@ swc_css_visit = {version = "0.130.1", path = "../swc_css_visit"} [dev-dependencies] serde_json = "1" -swc_css_compat = {version = "0.16.2", path = "../swc_css_compat"} +swc_css_compat = {version = "0.16.3", path = "../swc_css_compat"} testing = {version = "0.31.22", path = "../testing"}