diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ed3706c48c..8bfe4302edf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,12 @@ - **(es/typescript)** Fix panic on invalid jsx pragma ([#8513](https://github.com/swc-project/swc/issues/8513)) ([f40f59b](https://github.com/swc-project/swc/commit/f40f59bd707a9d21d8eb41e42b5c6a1c95f0bb7e)) +### Miscellaneous Tasks + + + +- **(preset-env)** Update `browserslist-rs` ([#8524](https://github.com/swc-project/swc/issues/8524)) ([5e40dc7](https://github.com/swc-project/swc/commit/5e40dc7d8c7d7b979c3765fbaa2f9c9b41cf49a0)) + ### Testing @@ -1485,9 +1491,6 @@ -- **(es/compat)** Make stage 3 decorator pass use correct state for inner classes ([#7508](https://github.com/swc-project/swc/issues/7508)) ([cc4146c](https://github.com/swc-project/swc/commit/cc4146c9d3a21514031e46003170a3fdaac1987a)) - - - **(es/react)** Default to empty string when emitting refresh signature ([#7514](https://github.com/swc-project/swc/issues/7514)) ([8e933c8](https://github.com/swc-project/swc/commit/8e933c8a9fdf8867deb7f0d108b99430949aad54)) ### Features diff --git a/Cargo.lock b/Cargo.lock index e322efeadd1..c21f20cdd61 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2796,7 +2796,7 @@ dependencies = [ [[package]] name = "preset_env_base" -version = "0.4.9" +version = "0.4.10" dependencies = [ "ahash 0.8.7", "anyhow", @@ -4032,7 +4032,7 @@ dependencies = [ [[package]] name = "swc_css" -version = "0.157.29" +version = "0.157.30" dependencies = [ "swc_css_ast", "swc_css_codegen", @@ -4174,7 +4174,7 @@ dependencies = [ [[package]] name = "swc_css_prefixer" -version = "0.153.25" +version = "0.153.26" dependencies = [ "once_cell", "preset_env_base", diff --git a/crates/preset_env_base/Cargo.toml b/crates/preset_env_base/Cargo.toml index ecf26054f6c..26a74bce0ae 100644 --- a/crates/preset_env_base/Cargo.toml +++ b/crates/preset_env_base/Cargo.toml @@ -5,7 +5,7 @@ documentation = "https://rustdoc.swc.rs/preset_env_base/" edition = "2021" license = "Apache-2.0" name = "preset_env_base" -version = "0.4.9" +version = "0.4.10" [lib] bench = false diff --git a/crates/swc_core/Cargo.toml b/crates/swc_core/Cargo.toml index 018b65610bf..c063c3db9d7 100644 --- a/crates/swc_core/Cargo.toml +++ b/crates/swc_core/Cargo.toml @@ -336,7 +336,7 @@ swc_css_compat = { optional = true, version = "0.27.24", path swc_css_minifier = { optional = true, version = "0.116.24", path = "../swc_css_minifier" } swc_css_modules = { optional = true, version = "0.29.26", path = "../swc_css_modules" } swc_css_parser = { optional = true, version = "0.150.22", path = "../swc_css_parser" } -swc_css_prefixer = { optional = true, version = "0.153.25", path = "../swc_css_prefixer" } +swc_css_prefixer = { optional = true, version = "0.153.26", path = "../swc_css_prefixer" } swc_css_utils = { optional = true, version = "0.137.14", path = "../swc_css_utils/" } swc_css_visit = { optional = true, version = "0.139.14", path = "../swc_css_visit" } swc_ecma_ast = { optional = true, version = "0.110.17", path = "../swc_ecma_ast" } diff --git a/crates/swc_css/Cargo.toml b/crates/swc_css/Cargo.toml index b49736929cf..fb6cfb123e0 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.157.29" +version = "0.157.30" [package.metadata.docs.rs] all-features = true @@ -28,6 +28,6 @@ swc_css_compat = { version = "0.27.24", path = "../swc_css_compat", optional = swc_css_minifier = { version = "0.116.24", path = "../swc_css_minifier", optional = true } swc_css_modules = { version = "0.29.26", path = "../swc_css_modules", optional = true } swc_css_parser = { version = "0.150.22", path = "../swc_css_parser" } -swc_css_prefixer = { version = "0.153.25", path = "../swc_css_prefixer", optional = true } +swc_css_prefixer = { version = "0.153.26", path = "../swc_css_prefixer", optional = true } swc_css_utils = { version = "0.137.14", path = "../swc_css_utils/" } swc_css_visit = { version = "0.139.14", path = "../swc_css_visit" } diff --git a/crates/swc_css_prefixer/Cargo.toml b/crates/swc_css_prefixer/Cargo.toml index 2b45166ee2c..8c413ad120b 100644 --- a/crates/swc_css_prefixer/Cargo.toml +++ b/crates/swc_css_prefixer/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json", "data/**/*.json"] license = "Apache-2.0" name = "swc_css_prefixer" repository = "https://github.com/swc-project/swc.git" -version = "0.153.25" +version = "0.153.26" [lib] bench = false @@ -17,7 +17,7 @@ once_cell = "1.18.0" serde = { version = "1.0.118", features = ["derive"] } serde_json = "1.0.61" -preset_env_base = { version = "0.4.9", path = "../preset_env_base" } +preset_env_base = { version = "0.4.10", path = "../preset_env_base" } swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.12", path = "../swc_common" } swc_css_ast = { version = "0.140.14", path = "../swc_css_ast" } diff --git a/crates/swc_ecma_preset_env/Cargo.toml b/crates/swc_ecma_preset_env/Cargo.toml index b3c0a0b0722..19e2fb6a86b 100644 --- a/crates/swc_ecma_preset_env/Cargo.toml +++ b/crates/swc_ecma_preset_env/Cargo.toml @@ -26,7 +26,7 @@ serde = { version = "1", features = ["derive"], optional = true } serde_json = "1" st-map = "0.2.0" -preset_env_base = { version = "0.4.9", path = "../preset_env_base" } +preset_env_base = { version = "0.4.10", path = "../preset_env_base" } rustc-hash = "1.1.0" string_enum = { version = "0.4.2", path = "../string_enum" } swc_atoms = { version = "0.6.5", path = "../swc_atoms" }