diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f53b5e0ce0..823dc149630 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,9 @@ - **(es/parser)** Parse types in `CallExpression` inside templates (#6611) ([c44f1d0](https://github.com/swc-project/swc/commit/c44f1d0a7fd31b6c8019e5a17b0f80dab4c9c01c)) +- **(html/parser)** Fix parsing of CDATA in the svg context (#6620) ([19c2ee5](https://github.com/swc-project/swc/commit/19c2ee593d1b2c32243dbc5c099f17cea0b9ed26)) + + - **(node-swc)** Add missing `const_to_let` to the type (#6615) ([7e841a5](https://github.com/swc-project/swc/commit/7e841a5d3061e6ef8b48995bdcd492ffa02b3b8d)) ### Features diff --git a/Cargo.lock b/Cargo.lock index d54108990f2..f2f3d107668 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4159,7 +4159,7 @@ dependencies = [ [[package]] name = "swc_html" -version = "0.100.2" +version = "0.100.3" dependencies = [ "swc_html_ast", "swc_html_codegen", @@ -4183,7 +4183,7 @@ dependencies = [ [[package]] name = "swc_html_codegen" -version = "0.37.21" +version = "0.37.22" dependencies = [ "auto_impl", "bitflags", @@ -4211,7 +4211,7 @@ dependencies = [ [[package]] name = "swc_html_minifier" -version = "0.97.2" +version = "0.97.3" dependencies = [ "criterion", "once_cell", @@ -4241,7 +4241,7 @@ dependencies = [ [[package]] name = "swc_html_parser" -version = "0.34.21" +version = "0.34.22" dependencies = [ "criterion", "serde", diff --git a/crates/swc_html/Cargo.toml b/crates/swc_html/Cargo.toml index bbde4020e3b..771270924d2 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.2" +version = "0.100.3" [package.metadata.docs.rs] all-features = true @@ -20,7 +20,7 @@ minifier = ["swc_html_minifier"] [dependencies] swc_html_ast = {version = "0.28.12", path = "../swc_html_ast"} -swc_html_codegen = {version = "0.37.21", path = "../swc_html_codegen"} -swc_html_minifier = {version = "0.97.2", path = "../swc_html_minifier", optional = true} -swc_html_parser = {version = "0.34.21", path = "../swc_html_parser"} +swc_html_codegen = {version = "0.37.22", path = "../swc_html_codegen"} +swc_html_minifier = {version = "0.97.3", path = "../swc_html_minifier", optional = true} +swc_html_parser = {version = "0.34.22", path = "../swc_html_parser"} swc_html_visit = {version = "0.28.12", path = "../swc_html_visit"} diff --git a/crates/swc_html_codegen/Cargo.toml b/crates/swc_html_codegen/Cargo.toml index aacf22d6f61..28d858e6768 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.21" +version = "0.37.22" [lib] bench = false @@ -29,6 +29,6 @@ swc_html_utils = { version = "0.14.21", path = "../swc_html_utils" } swc_common = { version = "0.29.20", path = "../swc_common", features = [ "sourcemap", ] } -swc_html_parser = { version = "0.34.21", path = "../swc_html_parser" } +swc_html_parser = { version = "0.34.22", path = "../swc_html_parser" } swc_html_visit = { version = "0.28.12", path = "../swc_html_visit" } testing = { version = "0.31.21", path = "../testing" } diff --git a/crates/swc_html_minifier/Cargo.toml b/crates/swc_html_minifier/Cargo.toml index c1d0c097490..509055ef67f 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.2" +version = "0.97.3" [lib] bench = false @@ -33,8 +33,8 @@ swc_ecma_parser = { version = "0.123.7", path = "../swc_ecma_parser" } swc_ecma_transforms_base = { version = "0.112.10", path = "../swc_ecma_transforms_base" } swc_ecma_visit = { version = "0.81.4", path = "../swc_ecma_visit" } swc_html_ast = { version = "0.28.12", path = "../swc_html_ast" } -swc_html_codegen = { version = "0.37.21", path = "../swc_html_codegen" } -swc_html_parser = { version = "0.34.21", path = "../swc_html_parser" } +swc_html_codegen = { version = "0.37.22", path = "../swc_html_codegen" } +swc_html_parser = { version = "0.34.22", path = "../swc_html_parser" } swc_html_utils = { version = "0.14.21", path = "../swc_html_utils" } swc_html_visit = { version = "0.28.12", path = "../swc_html_visit" } diff --git a/crates/swc_html_parser/Cargo.toml b/crates/swc_html_parser/Cargo.toml index f5865fd2117..b237833eea1 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.21" +version = "0.34.22" [lib] bench = false