diff --git a/CHANGELOG.md b/CHANGELOG.md index f09fb4dffd6..78d6a8b828d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,12 @@ # Changelog +## [unreleased] + +### Bug Fixes + + + +- **(css/modules)** Preserve attr selectors used with `:global` (#7670) ([11b4679](https://github.com/swc-project/swc/commit/11b4679231bdfa8662fdcb1dade4dc1146f8e11d)) + ## [1.3.70] - 2023-07-18 ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index 6e869891f27..07ae2db5d76 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3709,7 +3709,7 @@ dependencies = [ [[package]] name = "swc_core" -version = "0.79.19" +version = "0.79.20" dependencies = [ "anyhow", "binding_macros", @@ -3760,7 +3760,7 @@ dependencies = [ [[package]] name = "swc_css" -version = "0.153.24" +version = "0.153.25" dependencies = [ "swc_css_ast", "swc_css_codegen", @@ -3870,7 +3870,7 @@ dependencies = [ [[package]] name = "swc_css_modules" -version = "0.25.22" +version = "0.25.23" dependencies = [ "rustc-hash", "serde", diff --git a/crates/swc_core/Cargo.toml b/crates/swc_core/Cargo.toml index d831ef72592..3b1b3095a05 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.79.19" +version = "0.79.20" [package.metadata.docs.rs] features = [ "common_perf", @@ -335,7 +335,7 @@ swc_css_ast = { optional = true, version = "0.137.17", path swc_css_codegen = { optional = true, version = "0.147.20", path = "../swc_css_codegen" } swc_css_compat = { optional = true, version = "0.23.20", path = "../swc_css_compat" } swc_css_minifier = { optional = true, version = "0.112.20", path = "../swc_css_minifier" } -swc_css_modules = { optional = true, version = "0.25.22", path = "../swc_css_modules" } +swc_css_modules = { optional = true, version = "0.25.23", path = "../swc_css_modules" } swc_css_parser = { optional = true, version = "0.146.20", path = "../swc_css_parser" } swc_css_prefixer = { optional = true, version = "0.149.22", path = "../swc_css_prefixer" } swc_css_utils = { optional = true, version = "0.134.17", path = "../swc_css_utils/" } diff --git a/crates/swc_css/Cargo.toml b/crates/swc_css/Cargo.toml index b473dad0c82..f6a50ed04c1 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.153.24" +version = "0.153.25" [package.metadata.docs.rs] all-features = true @@ -26,7 +26,7 @@ swc_css_ast = { version = "0.137.17", path = "../swc_css_ast" } swc_css_codegen = { version = "0.147.20", path = "../swc_css_codegen" } swc_css_compat = { version = "0.23.20", path = "../swc_css_compat", optional = true } swc_css_minifier = { version = "0.112.20", path = "../swc_css_minifier", optional = true } -swc_css_modules = { version = "0.25.22", path = "../swc_css_modules", optional = true } +swc_css_modules = { version = "0.25.23", path = "../swc_css_modules", optional = true } swc_css_parser = { version = "0.146.20", path = "../swc_css_parser" } swc_css_prefixer = { version = "0.149.22", path = "../swc_css_prefixer", optional = true } swc_css_utils = { version = "0.134.17", path = "../swc_css_utils/" } diff --git a/crates/swc_css_modules/Cargo.toml b/crates/swc_css_modules/Cargo.toml index 54523280a26..88a7d9cb0e2 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.25.22" +version = "0.25.23" [lib] bench = false