diff --git a/CHANGELOG.md b/CHANGELOG.md index c8db958dd27..d2183351723 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,6 +26,9 @@ - **(css/ast)** Add `;` to delimiters (#3551) ([da36e90](https://github.com/swc-project/swc/commit/da36e90d1ee6ca479826ef379fbf0562cdc02ee5)) +- **(css/ast)** Use correct type for `calc` (#3549) ([b311ace](https://github.com/swc-project/swc/commit/b311aced89dbbcb1605312e3ad5b0715e437bcd8)) + + - **(es/lints)** Add this handling support to `no-alert` rule (#3515) ([af82006](https://github.com/swc-project/swc/commit/af8200647bb5f96525bcf3333c7c6889fe69dd5d)) diff --git a/Cargo.lock b/Cargo.lock index 3471dbde520..35aa02eaba3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2738,7 +2738,7 @@ dependencies = [ [[package]] name = "swc_css" -version = "0.80.0" +version = "0.81.0" dependencies = [ "swc_css_ast", "swc_css_codegen", @@ -2750,7 +2750,7 @@ dependencies = [ [[package]] name = "swc_css_ast" -version = "0.74.0" +version = "0.75.0" dependencies = [ "is-macro", "serde", @@ -2761,7 +2761,7 @@ dependencies = [ [[package]] name = "swc_css_codegen" -version = "0.77.0" +version = "0.78.0" dependencies = [ "auto_impl", "bitflags", @@ -2787,7 +2787,7 @@ dependencies = [ [[package]] name = "swc_css_minifier" -version = "0.42.0" +version = "0.43.0" dependencies = [ "swc_atoms", "swc_common", @@ -2800,7 +2800,7 @@ dependencies = [ [[package]] name = "swc_css_parser" -version = "0.78.0" +version = "0.79.0" dependencies = [ "bitflags", "lexical", @@ -2815,7 +2815,7 @@ dependencies = [ [[package]] name = "swc_css_utils" -version = "0.71.0" +version = "0.72.0" dependencies = [ "swc_atoms", "swc_common", @@ -2825,7 +2825,7 @@ dependencies = [ [[package]] name = "swc_css_visit" -version = "0.73.0" +version = "0.74.0" dependencies = [ "swc_atoms", "swc_common", @@ -3484,7 +3484,7 @@ version = "0.24.1" [[package]] name = "swc_stylis" -version = "0.76.0" +version = "0.77.0" dependencies = [ "swc_atoms", "swc_common", diff --git a/crates/swc_css/Cargo.toml b/crates/swc_css/Cargo.toml index 8bfd9f6f479..d10ed3646b2 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.80.0" +version = "0.81.0" [package.metadata.docs.rs] all-features = true @@ -16,9 +16,9 @@ rustdoc-args = ["--cfg", "docsrs"] minifier = ["swc_css_minifier"] [dependencies] -swc_css_ast = {version = "0.74.0", path = "../swc_css_ast"} -swc_css_codegen = {version = "0.77.0", path = "../swc_css_codegen"} -swc_css_minifier = {version = "0.42.0", path = "../swc_css_minifier", optional = true} -swc_css_parser = {version = "0.78.0", path = "../swc_css_parser"} -swc_css_utils = {version = "0.71.0", path = "../swc_css_utils/"} -swc_css_visit = {version = "0.73.0", path = "../swc_css_visit"} +swc_css_ast = {version = "0.75.0", path = "../swc_css_ast"} +swc_css_codegen = {version = "0.78.0", path = "../swc_css_codegen"} +swc_css_minifier = {version = "0.43.0", path = "../swc_css_minifier", optional = true} +swc_css_parser = {version = "0.79.0", path = "../swc_css_parser"} +swc_css_utils = {version = "0.72.0", path = "../swc_css_utils/"} +swc_css_visit = {version = "0.74.0", path = "../swc_css_visit"} diff --git a/crates/swc_css_ast/Cargo.toml b/crates/swc_css_ast/Cargo.toml index 8c14b92dd09..62b2f09b7f3 100644 --- a/crates/swc_css_ast/Cargo.toml +++ b/crates/swc_css_ast/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_css_ast" repository = "https://github.com/swc-project/swc.git" -version = "0.74.0" +version = "0.75.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/crates/swc_css_codegen/Cargo.toml b/crates/swc_css_codegen/Cargo.toml index 737ae01be67..e0722440395 100644 --- a/crates/swc_css_codegen/Cargo.toml +++ b/crates/swc_css_codegen/Cargo.toml @@ -6,17 +6,17 @@ edition = "2021" license = "Apache-2.0" name = "swc_css_codegen" repository = "https://github.com/swc-project/swc.git" -version = "0.77.0" +version = "0.78.0" [dependencies] auto_impl = "0.5.0" bitflags = "1.3.2" swc_atoms = {version = "0.2.7", path = "../swc_atoms"} swc_common = {version = "0.17.0", path = "../swc_common"} -swc_css_ast = {version = "0.74.0", path = "../swc_css_ast"} +swc_css_ast = {version = "0.75.0", path = "../swc_css_ast"} swc_css_codegen_macros = {version = "0.2.0", path = "../swc_css_codegen_macros"} [dev-dependencies] -swc_css_parser = {version = "0.78.0", path = "../swc_css_parser"} -swc_css_visit = {version = "0.73.0", path = "../swc_css_visit"} +swc_css_parser = {version = "0.79.0", path = "../swc_css_parser"} +swc_css_visit = {version = "0.74.0", path = "../swc_css_visit"} testing = {version = "0.18.0", path = "../testing"} diff --git a/crates/swc_css_minifier/Cargo.toml b/crates/swc_css_minifier/Cargo.toml index bb756259429..3d11e68a594 100644 --- a/crates/swc_css_minifier/Cargo.toml +++ b/crates/swc_css_minifier/Cargo.toml @@ -6,17 +6,17 @@ edition = "2021" license = "Apache-2.0" name = "swc_css_minifier" repository = "https://github.com/swc-project/swc.git" -version = "0.42.0" +version = "0.43.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] swc_atoms = {version = "0.2.9", path = "../swc_atoms"} swc_common = {version = "0.17.0", path = "../swc_common"} -swc_css_ast = {version = "0.74.0", path = "../swc_css_ast"} -swc_css_visit = {version = "0.73.0", path = "../swc_css_visit"} +swc_css_ast = {version = "0.75.0", path = "../swc_css_ast"} +swc_css_visit = {version = "0.74.0", path = "../swc_css_visit"} [dev-dependencies] -swc_css_codegen = {version = "0.77.0", path = "../swc_css_codegen"} -swc_css_parser = {version = "0.78.0", path = "../swc_css_parser"} +swc_css_codegen = {version = "0.78.0", path = "../swc_css_codegen"} +swc_css_parser = {version = "0.79.0", path = "../swc_css_parser"} testing = {version = "0.18.0", path = "../testing"} diff --git a/crates/swc_css_parser/Cargo.toml b/crates/swc_css_parser/Cargo.toml index c551b6a6f95..94aa32d8d27 100644 --- a/crates/swc_css_parser/Cargo.toml +++ b/crates/swc_css_parser/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_css_parser" repository = "https://github.com/swc-project/swc.git" -version = "0.78.0" +version = "0.79.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] @@ -17,10 +17,10 @@ bitflags = "1.2.1" lexical = "5.2.2" swc_atoms = {version = "0.2.7", path = "../swc_atoms"} swc_common = {version = "0.17.0", path = "../swc_common"} -swc_css_ast = {version = "0.74.0", path = "../swc_css_ast"} +swc_css_ast = {version = "0.75.0", path = "../swc_css_ast"} [dev-dependencies] serde = "1.0.127" serde_json = "1.0.66" -swc_css_visit = {version = "0.73.0", path = "../swc_css_visit"} +swc_css_visit = {version = "0.74.0", path = "../swc_css_visit"} testing = {version = "0.18.0", path = "../testing"} diff --git a/crates/swc_css_utils/Cargo.toml b/crates/swc_css_utils/Cargo.toml index fe7f4be7003..c7fda444031 100644 --- a/crates/swc_css_utils/Cargo.toml +++ b/crates/swc_css_utils/Cargo.toml @@ -6,11 +6,11 @@ edition = "2021" license = "Apache-2.0" name = "swc_css_utils" repository = "https://github.com/swc-project/swc.git" -version = "0.71.0" +version = "0.72.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] swc_atoms = {version = "0.2.7", path = "../swc_atoms"} swc_common = {version = "0.17.0", path = "../swc_common"} -swc_css_ast = {version = "0.74.0", path = "../swc_css_ast"} -swc_css_visit = {version = "0.73.0", path = "../swc_css_visit"} +swc_css_ast = {version = "0.75.0", path = "../swc_css_ast"} +swc_css_visit = {version = "0.74.0", path = "../swc_css_visit"} diff --git a/crates/swc_css_visit/Cargo.toml b/crates/swc_css_visit/Cargo.toml index 25d6f24b83f..37eb421faed 100644 --- a/crates/swc_css_visit/Cargo.toml +++ b/crates/swc_css_visit/Cargo.toml @@ -6,12 +6,12 @@ edition = "2021" license = "Apache-2.0" name = "swc_css_visit" repository = "https://github.com/swc-project/swc.git" -version = "0.73.0" +version = "0.74.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] swc_atoms = {version = "0.2.7", path = "../swc_atoms"} swc_common = {version = "0.17.0", path = "../swc_common"} -swc_css_ast = {version = "0.74.0", path = "../swc_css_ast"} +swc_css_ast = {version = "0.75.0", path = "../swc_css_ast"} swc_visit = {version = "0.3.0", path = "../swc_visit"} diff --git a/crates/swc_stylis/Cargo.toml b/crates/swc_stylis/Cargo.toml index 505bef3179b..fafbf09d8e2 100644 --- a/crates/swc_stylis/Cargo.toml +++ b/crates/swc_stylis/Cargo.toml @@ -6,18 +6,18 @@ edition = "2021" license = "Apache-2.0" name = "swc_stylis" repository = "https://github.com/swc-project/swc.git" -version = "0.76.0" +version = "0.77.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] swc_atoms = {version = "0.2.7", path = "../swc_atoms"} swc_common = {version = "0.17.0", path = "../swc_common"} -swc_css_ast = {version = "0.74.0", path = "../swc_css_ast"} -swc_css_utils = {version = "0.71.0", path = "../swc_css_utils/"} -swc_css_visit = {version = "0.73.0", path = "../swc_css_visit"} +swc_css_ast = {version = "0.75.0", path = "../swc_css_ast"} +swc_css_utils = {version = "0.72.0", path = "../swc_css_utils/"} +swc_css_visit = {version = "0.74.0", path = "../swc_css_visit"} [dev-dependencies] -swc_css_codegen = {version = "0.77.0", path = "../swc_css_codegen"} -swc_css_parser = {version = "0.78.0", path = "../swc_css_parser"} +swc_css_codegen = {version = "0.78.0", path = "../swc_css_codegen"} +swc_css_parser = {version = "0.79.0", path = "../swc_css_parser"} testing = {version = "0.18.0", path = "../testing"}