diff --git a/CHANGELOG.md b/CHANGELOG.md index cf1f6582ce68..896ece2faed0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,9 @@ - **(ci)** Fix publish action for binaries (#6517) ([2ac3201](https://github.com/swc-project/swc/commit/2ac32017bad112956a781b0d003782988655409c)) + +- **(html/parser)** Fix parsing of cdata (#6534) ([e3cbe7e](https://github.com/swc-project/swc/commit/e3cbe7e9a98149bfc05421a264d4e421fb543f7e)) + ### Features diff --git a/Cargo.lock b/Cargo.lock index 139b863ae4a8..cac1233d908e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4045,7 +4045,7 @@ dependencies = [ [[package]] name = "swc_html" -version = "0.96.30" +version = "0.96.31" dependencies = [ "swc_html_ast", "swc_html_codegen", @@ -4069,7 +4069,7 @@ dependencies = [ [[package]] name = "swc_html_codegen" -version = "0.37.14" +version = "0.37.15" dependencies = [ "auto_impl", "bitflags", @@ -4097,7 +4097,7 @@ dependencies = [ [[package]] name = "swc_html_minifier" -version = "0.93.30" +version = "0.93.31" dependencies = [ "criterion", "once_cell", @@ -4127,7 +4127,7 @@ dependencies = [ [[package]] name = "swc_html_parser" -version = "0.34.14" +version = "0.34.15" dependencies = [ "criterion", "serde", diff --git a/crates/swc_html/Cargo.toml b/crates/swc_html/Cargo.toml index 7fb25135f6c5..c7f014364129 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.96.30" +version = "0.96.31" [package.metadata.docs.rs] all-features = true @@ -20,7 +20,7 @@ minifier = ["swc_html_minifier"] [dependencies] swc_html_ast = {version = "0.28.7", path = "../swc_html_ast"} -swc_html_codegen = {version = "0.37.14", path = "../swc_html_codegen"} -swc_html_minifier = {version = "0.93.30", path = "../swc_html_minifier", optional = true} -swc_html_parser = {version = "0.34.14", path = "../swc_html_parser"} +swc_html_codegen = {version = "0.37.15", path = "../swc_html_codegen"} +swc_html_minifier = {version = "0.93.31", path = "../swc_html_minifier", optional = true} +swc_html_parser = {version = "0.34.15", path = "../swc_html_parser"} swc_html_visit = {version = "0.28.7", path = "../swc_html_visit"} diff --git a/crates/swc_html_codegen/Cargo.toml b/crates/swc_html_codegen/Cargo.toml index e75e3c464ce3..1e63bc230a50 100644 --- a/crates/swc_html_codegen/Cargo.toml +++ b/crates/swc_html_codegen/Cargo.toml @@ -10,7 +10,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_html_codegen" repository = "https://github.com/swc-project/swc.git" -version = "0.37.14" +version = "0.37.15" [lib] bench = false @@ -29,6 +29,6 @@ swc_html_utils = { version = "0.14.17", path = "../swc_html_utils" } swc_common = { version = "0.29.16", path = "../swc_common", features = [ "sourcemap", ] } -swc_html_parser = { version = "0.34.14", path = "../swc_html_parser" } +swc_html_parser = { version = "0.34.15", path = "../swc_html_parser" } swc_html_visit = { version = "0.28.7", path = "../swc_html_visit" } testing = { version = "0.31.17", path = "../testing" } diff --git a/crates/swc_html_minifier/Cargo.toml b/crates/swc_html_minifier/Cargo.toml index 7a81d05c47f0..901dbf893fab 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.93.30" +version = "0.93.31" [lib] bench = false @@ -33,8 +33,8 @@ swc_ecma_parser = { version = "0.122.31", path = "../swc_ecma_parser" } swc_ecma_transforms_base = { version = "0.111.58", path = "../swc_ecma_transforms_base" } swc_ecma_visit = { version = "0.80.21", path = "../swc_ecma_visit" } swc_html_ast = { version = "0.28.7", path = "../swc_html_ast" } -swc_html_codegen = { version = "0.37.14", path = "../swc_html_codegen" } -swc_html_parser = { version = "0.34.14", path = "../swc_html_parser" } +swc_html_codegen = { version = "0.37.15", path = "../swc_html_codegen" } +swc_html_parser = { version = "0.34.15", path = "../swc_html_parser" } swc_html_utils = { version = "0.14.17", path = "../swc_html_utils" } swc_html_visit = { version = "0.28.7", path = "../swc_html_visit" } diff --git a/crates/swc_html_parser/Cargo.toml b/crates/swc_html_parser/Cargo.toml index 0e91978018cb..fb84bf57bb73 100644 --- a/crates/swc_html_parser/Cargo.toml +++ b/crates/swc_html_parser/Cargo.toml @@ -10,7 +10,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json"] license = "Apache-2.0" name = "swc_html_parser" repository = "https://github.com/swc-project/swc.git" -version = "0.34.14" +version = "0.34.15" [lib] bench = false