diff --git a/Cargo.lock b/Cargo.lock index 686e91faf..4f7101558 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1318,7 +1318,7 @@ checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7" [[package]] name = "farmfe_compiler" -version = "0.0.3" +version = "0.0.4" dependencies = [ "farmfe_core", "farmfe_plugin_css", @@ -1343,7 +1343,7 @@ dependencies = [ [[package]] name = "farmfe_core" -version = "0.4.4" +version = "0.4.5" dependencies = [ "blake2", "bytecheck 0.7.0", @@ -1414,7 +1414,7 @@ dependencies = [ [[package]] name = "farmfe_plugin_css" -version = "0.0.4" +version = "0.0.5" dependencies = [ "farmfe_core", "farmfe_macro_cache_item", @@ -1426,7 +1426,7 @@ dependencies = [ [[package]] name = "farmfe_plugin_define" -version = "0.0.3" +version = "0.0.4" dependencies = [ "farmfe_core", "farmfe_testing_helpers", @@ -1436,7 +1436,7 @@ dependencies = [ [[package]] name = "farmfe_plugin_html" -version = "0.0.3" +version = "0.0.4" dependencies = [ "farmfe_core", "farmfe_testing_helpers", @@ -1446,7 +1446,7 @@ dependencies = [ [[package]] name = "farmfe_plugin_json" -version = "0.0.3" +version = "0.0.4" dependencies = [ "farmfe_core", "farmfe_testing_helpers", @@ -1455,7 +1455,7 @@ dependencies = [ [[package]] name = "farmfe_plugin_lazy_compilation" -version = "0.0.3" +version = "0.0.4" dependencies = [ "farmfe_core", "farmfe_testing_helpers", @@ -1465,7 +1465,7 @@ dependencies = [ [[package]] name = "farmfe_plugin_minify" -version = "0.0.3" +version = "0.0.4" dependencies = [ "farmfe_core", "farmfe_testing_helpers", @@ -1474,7 +1474,7 @@ dependencies = [ [[package]] name = "farmfe_plugin_partial_bundling" -version = "0.0.3" +version = "0.0.4" dependencies = [ "farmfe_core", "farmfe_testing_helpers", @@ -1483,7 +1483,7 @@ dependencies = [ [[package]] name = "farmfe_plugin_polyfill" -version = "0.0.3" +version = "0.0.4" dependencies = [ "farmfe_core", "farmfe_testing_helpers", @@ -1492,7 +1492,7 @@ dependencies = [ [[package]] name = "farmfe_plugin_progress" -version = "0.0.3" +version = "0.0.4" dependencies = [ "console", "farmfe_core", @@ -1515,7 +1515,7 @@ dependencies = [ [[package]] name = "farmfe_plugin_resolve" -version = "0.0.3" +version = "0.0.4" dependencies = [ "farmfe_core", "farmfe_testing_helpers", @@ -1525,7 +1525,7 @@ dependencies = [ [[package]] name = "farmfe_plugin_runtime" -version = "0.0.3" +version = "0.0.4" dependencies = [ "farmfe_core", "farmfe_testing_helpers", @@ -1551,7 +1551,7 @@ dependencies = [ [[package]] name = "farmfe_plugin_script" -version = "0.0.3" +version = "0.0.4" dependencies = [ "farmfe_core", "farmfe_swc_transformer_import_glob", @@ -1566,7 +1566,7 @@ dependencies = [ [[package]] name = "farmfe_plugin_static_assets" -version = "0.0.3" +version = "0.0.4" dependencies = [ "base64 0.21.0", "farmfe_core", @@ -1579,7 +1579,7 @@ dependencies = [ [[package]] name = "farmfe_plugin_tree_shake" -version = "0.0.3" +version = "0.0.4" dependencies = [ "farmfe_core", "farmfe_testing_helpers", @@ -1589,7 +1589,7 @@ dependencies = [ [[package]] name = "farmfe_swc_transformer_import_glob" -version = "0.0.3" +version = "0.0.4" dependencies = [ "farmfe_core", "farmfe_testing_helpers", @@ -1599,14 +1599,14 @@ dependencies = [ [[package]] name = "farmfe_testing_helpers" -version = "0.0.5" +version = "0.0.6" dependencies = [ "farmfe_core", ] [[package]] name = "farmfe_toolkit" -version = "0.0.5" +version = "0.0.6" dependencies = [ "anyhow", "farmfe_core", @@ -1640,7 +1640,7 @@ dependencies = [ [[package]] name = "farmfe_toolkit_plugin_types" -version = "0.0.12" +version = "0.0.13" dependencies = [ "farmfe_core", "lazy_static", diff --git a/crates/compiler/CHANGELOG.md b/crates/compiler/CHANGELOG.md index 24a4984c6..6aecfe385 100644 --- a/crates/compiler/CHANGELOG.md +++ b/crates/compiler/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.4](https://github.com/farm-fe/farm/compare/farmfe_compiler-v0.0.3...farmfe_compiler-v0.0.4) - 2024-04-08 + +### Added +- improve tree shake traverse ([#1118](https://github.com/farm-fe/farm/pull/1118)) + ## [0.0.3](https://github.com/farm-fe/farm/compare/farmfe_compiler-v0.0.2...farmfe_compiler-v0.0.3) - 2024-04-01 ### Fixed diff --git a/crates/compiler/Cargo.toml b/crates/compiler/Cargo.toml index 2e17eb5e8..d0da415d6 100644 --- a/crates/compiler/Cargo.toml +++ b/crates/compiler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "farmfe_compiler" -version = "0.0.3" +version = "0.0.4" edition = "2021" authors = ["brightwu(吴明亮) <1521488775@qq.com>"] license = "MIT" @@ -10,24 +10,24 @@ repository = "https://github.com/farm-fe/farm" documentation = "https://docs.rs/farmfe_compiler" [dependencies] -farmfe_core = { path = "../core", version = "0.4.4" } -farmfe_plugin_partial_bundling = { path = "../plugin_partial_bundling", version = "0.0.3" } -farmfe_plugin_resolve = { path = "../plugin_resolve", version = "0.0.3" } -farmfe_plugin_script = { path = "../plugin_script", version = "0.0.3" } -farmfe_plugin_runtime = { path = "../plugin_runtime", version = "0.0.3" } -farmfe_plugin_html = { path = "../plugin_html", version = "0.0.3" } -farmfe_plugin_tree_shake = { path = "../plugin_tree_shake", version = "0.0.3" } -farmfe_plugin_css = { path = "../plugin_css", version = "0.0.4" } -farmfe_plugin_lazy_compilation = { path = "../plugin_lazy_compilation", version = "0.0.3" } -farmfe_plugin_static_assets = { path = "../plugin_static_assets", version = "0.0.3" } -farmfe_plugin_minify = { path = "../plugin_minify", version = "0.0.3" } -farmfe_toolkit = { path = "../toolkit", version = "0.0.5" } +farmfe_core = { path = "../core", version = "0.4.5" } +farmfe_plugin_partial_bundling = { path = "../plugin_partial_bundling", version = "0.0.4" } +farmfe_plugin_resolve = { path = "../plugin_resolve", version = "0.0.4" } +farmfe_plugin_script = { path = "../plugin_script", version = "0.0.4" } +farmfe_plugin_runtime = { path = "../plugin_runtime", version = "0.0.4" } +farmfe_plugin_html = { path = "../plugin_html", version = "0.0.4" } +farmfe_plugin_tree_shake = { path = "../plugin_tree_shake", version = "0.0.4" } +farmfe_plugin_css = { path = "../plugin_css", version = "0.0.5" } +farmfe_plugin_lazy_compilation = { path = "../plugin_lazy_compilation", version = "0.0.4" } +farmfe_plugin_static_assets = { path = "../plugin_static_assets", version = "0.0.4" } +farmfe_plugin_minify = { path = "../plugin_minify", version = "0.0.4" } +farmfe_toolkit = { path = "../toolkit", version = "0.0.6" } farmfe_utils = { path = "../utils", version = "0.1.4" } -farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.5" } -farmfe_plugin_json = { path = "../plugin_json", version = "0.0.3" } -farmfe_plugin_polyfill = { path = "../plugin_polyfill", version = "0.0.3" } -farmfe_plugin_progress = { path = "../plugin_progress", version = "0.0.3" } -farmfe_plugin_define = { path = "../plugin_define", version = "0.0.3" } +farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.6" } +farmfe_plugin_json = { path = "../plugin_json", version = "0.0.4" } +farmfe_plugin_polyfill = { path = "../plugin_polyfill", version = "0.0.4" } +farmfe_plugin_progress = { path = "../plugin_progress", version = "0.0.4" } +farmfe_plugin_define = { path = "../plugin_define", version = "0.0.4" } num_cpus = "1.16.0" [features] diff --git a/crates/core/CHANGELOG.md b/crates/core/CHANGELOG.md index f66030345..b44474af3 100644 --- a/crates/core/CHANGELOG.md +++ b/crates/core/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.4.5](https://github.com/farm-fe/farm/compare/farmfe_core-v0.4.4...farmfe_core-v0.4.5) - 2024-04-08 + +### Fixed +- persistent cache conflicts ([#1131](https://github.com/farm-fe/farm/pull/1131)) + +### Other +- Chore/example vue2 ([#1127](https://github.com/farm-fe/farm/pull/1127)) + ## [0.4.4](https://github.com/farm-fe/farm/compare/farmfe_core-v0.4.3...farmfe_core-v0.4.4) - 2024-04-02 ### Other diff --git a/crates/core/Cargo.toml b/crates/core/Cargo.toml index 26b375e42..c11b1da84 100644 --- a/crates/core/Cargo.toml +++ b/crates/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "farmfe_core" -version = "0.4.4" +version = "0.4.5" edition = "2021" authors = ["brightwu(吴明亮) <1521488775@qq.com>"] license = "MIT" diff --git a/crates/plugin_css/CHANGELOG.md b/crates/plugin_css/CHANGELOG.md index 8cf5a3716..274a13a5d 100644 --- a/crates/plugin_css/CHANGELOG.md +++ b/crates/plugin_css/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.5](https://github.com/farm-fe/farm/compare/farmfe_plugin_css-v0.0.4...farmfe_plugin_css-v0.0.5) - 2024-04-08 + +### Fixed +- persistent cache conflicts ([#1131](https://github.com/farm-fe/farm/pull/1131)) + ## [0.0.4](https://github.com/farm-fe/farm/compare/farmfe_plugin_css-v0.0.3...farmfe_plugin_css-v0.0.4) - 2024-04-02 ### Other diff --git a/crates/plugin_css/Cargo.toml b/crates/plugin_css/Cargo.toml index 88649a23e..e529b2a50 100644 --- a/crates/plugin_css/Cargo.toml +++ b/crates/plugin_css/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "farmfe_plugin_css" -version = "0.0.4" +version = "0.0.5" edition = "2021" authors = ["brightwu(吴明亮) <1521488775@qq.com>"] license = "MIT" @@ -10,11 +10,11 @@ repository = "https://github.com/farm-fe/farm" documentation = "https://docs.rs/farmfe_plugin_css" [dependencies] -farmfe_core = { path = "../core", version = "0.4.4" } -farmfe_toolkit = { path = "../toolkit", version = "0.0.5" } +farmfe_core = { path = "../core", version = "0.4.5" } +farmfe_toolkit = { path = "../toolkit", version = "0.0.6" } farmfe_utils = { path = "../utils", version = "0.1.4" } farmfe_macro_cache_item = { path = "../macro_cache_item", version = "0.1.3" } rkyv = { version = "0.7.42" } [dev-dependencies] -farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.5" } +farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.6" } diff --git a/crates/plugin_define/CHANGELOG.md b/crates/plugin_define/CHANGELOG.md index f81664763..889be6858 100644 --- a/crates/plugin_define/CHANGELOG.md +++ b/crates/plugin_define/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.4](https://github.com/farm-fe/farm/compare/farmfe_plugin_define-v0.0.3...farmfe_plugin_define-v0.0.4) - 2024-04-08 + +### Other +- release ([#1115](https://github.com/farm-fe/farm/pull/1115)) +- release ([#1114](https://github.com/farm-fe/farm/pull/1114)) + ## [0.0.3](https://github.com/farm-fe/farm/compare/farmfe_plugin_define-v0.0.2...farmfe_plugin_define-v0.0.3) - 2024-04-01 ### Other diff --git a/crates/plugin_define/Cargo.toml b/crates/plugin_define/Cargo.toml index 6530b1c60..1539bea03 100644 --- a/crates/plugin_define/Cargo.toml +++ b/crates/plugin_define/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "farmfe_plugin_define" -version = "0.0.3" +version = "0.0.4" edition = "2021" authors = ["brightwu(吴明亮) <1521488775@qq.com>"] license = "MIT" @@ -10,7 +10,7 @@ repository = "https://github.com/farm-fe/farm" documentation = "https://docs.rs/farmfe_plugin_define" [dependencies] -farmfe_core = { path = "../core", version = "0.4.4" } -farmfe_toolkit = { path = "../toolkit", version = "0.0.5" } +farmfe_core = { path = "../core", version = "0.4.5" } +farmfe_toolkit = { path = "../toolkit", version = "0.0.6" } farmfe_utils = { path = "../utils", version = "0.1.4" } -farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.5" } +farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.6" } diff --git a/crates/plugin_html/CHANGELOG.md b/crates/plugin_html/CHANGELOG.md index 4b62ddf05..f8f92fd97 100644 --- a/crates/plugin_html/CHANGELOG.md +++ b/crates/plugin_html/CHANGELOG.md @@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.4](https://github.com/farm-fe/farm/compare/farmfe_plugin_html-v0.0.3...farmfe_plugin_html-v0.0.4) - 2024-04-08 + +### Fixed +- make publicPath and publicDir configuration work properly. ([#1121](https://github.com/farm-fe/farm/pull/1121)) + +### Other +- release ([#1115](https://github.com/farm-fe/farm/pull/1115)) +- release ([#1114](https://github.com/farm-fe/farm/pull/1114)) + ## [0.0.3](https://github.com/farm-fe/farm/compare/farmfe_plugin_html-v0.0.2...farmfe_plugin_html-v0.0.3) - 2024-04-01 ### Other diff --git a/crates/plugin_html/Cargo.toml b/crates/plugin_html/Cargo.toml index 033b70586..38fea3733 100644 --- a/crates/plugin_html/Cargo.toml +++ b/crates/plugin_html/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "farmfe_plugin_html" -version = "0.0.3" +version = "0.0.4" edition = "2021" authors = ["brightwu(吴明亮) <1521488775@qq.com>"] license = "MIT" @@ -10,7 +10,7 @@ repository = "https://github.com/farm-fe/farm" documentation = "https://docs.rs/farmfe_plugin_html" [dependencies] -farmfe_core = { path = "../core", version = "0.4.4" } -farmfe_toolkit = { path = "../toolkit", version = "0.0.5" } -farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.5" } +farmfe_core = { path = "../core", version = "0.4.5" } +farmfe_toolkit = { path = "../toolkit", version = "0.0.6" } +farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.6" } rkyv = { version = "0.7.42" } diff --git a/crates/plugin_json/CHANGELOG.md b/crates/plugin_json/CHANGELOG.md index e3cec541f..d1c9c1db5 100644 --- a/crates/plugin_json/CHANGELOG.md +++ b/crates/plugin_json/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.4](https://github.com/farm-fe/farm/compare/farmfe_plugin_json-v0.0.3...farmfe_plugin_json-v0.0.4) - 2024-04-08 + +### Other +- release ([#1115](https://github.com/farm-fe/farm/pull/1115)) +- release ([#1114](https://github.com/farm-fe/farm/pull/1114)) + ## [0.0.3](https://github.com/farm-fe/farm/compare/farmfe_plugin_json-v0.0.2...farmfe_plugin_json-v0.0.3) - 2024-04-01 ### Other diff --git a/crates/plugin_json/Cargo.toml b/crates/plugin_json/Cargo.toml index ad731c45f..f3f30b011 100644 --- a/crates/plugin_json/Cargo.toml +++ b/crates/plugin_json/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "farmfe_plugin_json" -version = "0.0.3" +version = "0.0.4" edition = "2021" authors = ["brightwu(吴明亮) <1521488775@qq.com>"] license = "MIT" @@ -12,6 +12,6 @@ documentation = "https://docs.rs/farmfe_plugin_json" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -farmfe_core = { path = "../core", version = "0.4.4" } -farmfe_toolkit = { path = "../toolkit", version = "0.0.5" } -farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.5" } +farmfe_core = { path = "../core", version = "0.4.5" } +farmfe_toolkit = { path = "../toolkit", version = "0.0.6" } +farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.6" } diff --git a/crates/plugin_lazy_compilation/CHANGELOG.md b/crates/plugin_lazy_compilation/CHANGELOG.md index fc4ac6736..74932f722 100644 --- a/crates/plugin_lazy_compilation/CHANGELOG.md +++ b/crates/plugin_lazy_compilation/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.4](https://github.com/farm-fe/farm/compare/farmfe_plugin_lazy_compilation-v0.0.3...farmfe_plugin_lazy_compilation-v0.0.4) - 2024-04-08 + +### Other +- release ([#1115](https://github.com/farm-fe/farm/pull/1115)) +- release ([#1114](https://github.com/farm-fe/farm/pull/1114)) + ## [0.0.3](https://github.com/farm-fe/farm/compare/farmfe_plugin_lazy_compilation-v0.0.2...farmfe_plugin_lazy_compilation-v0.0.3) - 2024-04-01 ### Other diff --git a/crates/plugin_lazy_compilation/Cargo.toml b/crates/plugin_lazy_compilation/Cargo.toml index 5920866f3..ff3291ab4 100644 --- a/crates/plugin_lazy_compilation/Cargo.toml +++ b/crates/plugin_lazy_compilation/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "farmfe_plugin_lazy_compilation" -version = "0.0.3" +version = "0.0.4" edition = "2021" authors = ["brightwu(吴明亮) <1521488775@qq.com>"] license = "MIT" @@ -10,7 +10,7 @@ repository = "https://github.com/farm-fe/farm" documentation = "https://docs.rs/farmfe_plugin_lazy_compilation" [dependencies] -farmfe_core = { path = "../core", version = "0.4.4" } -farmfe_toolkit = { path = "../toolkit", version = "0.0.5" } -farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.5" } +farmfe_core = { path = "../core", version = "0.4.5" } +farmfe_toolkit = { path = "../toolkit", version = "0.0.6" } +farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.6" } farmfe_utils = { path = "../utils", version = "0.1.4" } diff --git a/crates/plugin_minify/CHANGELOG.md b/crates/plugin_minify/CHANGELOG.md index 1051575e1..1dad67f30 100644 --- a/crates/plugin_minify/CHANGELOG.md +++ b/crates/plugin_minify/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.4](https://github.com/farm-fe/farm/compare/farmfe_plugin_minify-v0.0.3...farmfe_plugin_minify-v0.0.4) - 2024-04-08 + +### Other +- release ([#1115](https://github.com/farm-fe/farm/pull/1115)) +- release ([#1114](https://github.com/farm-fe/farm/pull/1114)) + ## [0.0.3](https://github.com/farm-fe/farm/compare/farmfe_plugin_minify-v0.0.2...farmfe_plugin_minify-v0.0.3) - 2024-04-01 ### Other diff --git a/crates/plugin_minify/Cargo.toml b/crates/plugin_minify/Cargo.toml index 605c9bef1..8c7077e8e 100644 --- a/crates/plugin_minify/Cargo.toml +++ b/crates/plugin_minify/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "farmfe_plugin_minify" -version = "0.0.3" +version = "0.0.4" edition = "2021" authors = ["brightwu(吴明亮) <1521488775@qq.com>"] license = "MIT" @@ -10,6 +10,6 @@ repository = "https://github.com/farm-fe/farm" documentation = "https://docs.rs/farmfe_plugin_minify" [dependencies] -farmfe_core = { path = "../core", version = "0.4.4" } -farmfe_toolkit = { path = "../toolkit", version = "0.0.5" } -farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.5" } +farmfe_core = { path = "../core", version = "0.4.5" } +farmfe_toolkit = { path = "../toolkit", version = "0.0.6" } +farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.6" } diff --git a/crates/plugin_partial_bundling/CHANGELOG.md b/crates/plugin_partial_bundling/CHANGELOG.md index 893617bcc..00baabaef 100644 --- a/crates/plugin_partial_bundling/CHANGELOG.md +++ b/crates/plugin_partial_bundling/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.4](https://github.com/farm-fe/farm/compare/farmfe_plugin_partial_bundling-v0.0.3...farmfe_plugin_partial_bundling-v0.0.4) - 2024-04-08 + +### Other +- release ([#1115](https://github.com/farm-fe/farm/pull/1115)) +- release ([#1114](https://github.com/farm-fe/farm/pull/1114)) + ## [0.0.3](https://github.com/farm-fe/farm/compare/farmfe_plugin_partial_bundling-v0.0.2...farmfe_plugin_partial_bundling-v0.0.3) - 2024-04-01 ### Other diff --git a/crates/plugin_partial_bundling/Cargo.toml b/crates/plugin_partial_bundling/Cargo.toml index 6dcc89b2b..95c7826ba 100644 --- a/crates/plugin_partial_bundling/Cargo.toml +++ b/crates/plugin_partial_bundling/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "farmfe_plugin_partial_bundling" -version = "0.0.3" +version = "0.0.4" edition = "2021" authors = ["brightwu(吴明亮) <1521488775@qq.com>"] license = "MIT" @@ -10,9 +10,9 @@ repository = "https://github.com/farm-fe/farm" documentation = "https://docs.rs/farmfe_plugin_partial_bundling" [dependencies] -farmfe_core = { path = "../core", version = "0.4.4" } -farmfe_toolkit = { path = "../toolkit", version = "0.0.5" } -farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.5" } +farmfe_core = { path = "../core", version = "0.4.5" } +farmfe_toolkit = { path = "../toolkit", version = "0.0.6" } +farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.6" } [features] profile = ["farmfe_core/profile"] diff --git a/crates/plugin_polyfill/CHANGELOG.md b/crates/plugin_polyfill/CHANGELOG.md index 504d5e11b..17190b6ab 100644 --- a/crates/plugin_polyfill/CHANGELOG.md +++ b/crates/plugin_polyfill/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.4](https://github.com/farm-fe/farm/compare/farmfe_plugin_polyfill-v0.0.3...farmfe_plugin_polyfill-v0.0.4) - 2024-04-08 + +### Other +- release ([#1115](https://github.com/farm-fe/farm/pull/1115)) + ## [0.0.3](https://github.com/farm-fe/farm/compare/farmfe_plugin_polyfill-v0.0.2...farmfe_plugin_polyfill-v0.0.3) - 2024-04-01 ### Other diff --git a/crates/plugin_polyfill/Cargo.toml b/crates/plugin_polyfill/Cargo.toml index a8f1e587e..4812cdcb0 100644 --- a/crates/plugin_polyfill/Cargo.toml +++ b/crates/plugin_polyfill/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "farmfe_plugin_polyfill" -version = "0.0.3" +version = "0.0.4" edition = "2021" authors = ["brightwu(吴明亮) <1521488775@qq.com>"] license = "MIT" @@ -10,6 +10,6 @@ repository = "https://github.com/farm-fe/farm" documentation = "https://docs.rs/farmfe_plugin_polyfill" [dependencies] -farmfe_core = { path = "../core", version = "0.4.4" } -farmfe_toolkit = { path = "../toolkit", version = "0.0.5" } -farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.5" } +farmfe_core = { path = "../core", version = "0.4.5" } +farmfe_toolkit = { path = "../toolkit", version = "0.0.6" } +farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.6" } diff --git a/crates/plugin_progress/CHANGELOG.md b/crates/plugin_progress/CHANGELOG.md index 3b91e1662..501ab0360 100644 --- a/crates/plugin_progress/CHANGELOG.md +++ b/crates/plugin_progress/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.4](https://github.com/farm-fe/farm/compare/farmfe_plugin_progress-v0.0.3...farmfe_plugin_progress-v0.0.4) - 2024-04-08 + +### Other +- updated the following local packages: farmfe_core + ## [0.0.3](https://github.com/farm-fe/farm/compare/farmfe_plugin_progress-v0.0.2...farmfe_plugin_progress-v0.0.3) - 2024-04-01 ### Other diff --git a/crates/plugin_progress/Cargo.toml b/crates/plugin_progress/Cargo.toml index 1883d2b62..88f2472db 100644 --- a/crates/plugin_progress/Cargo.toml +++ b/crates/plugin_progress/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "farmfe_plugin_progress" -version = "0.0.3" +version = "0.0.4" edition = "2021" authors = ["brightwu(吴明亮) <1521488775@qq.com>"] license = "MIT" @@ -10,7 +10,7 @@ repository = "https://github.com/farm-fe/farm" documentation = "https://docs.rs/farmfe_plugin_progress" [dependencies] -farmfe_core = { path = "../core", version = "0.4.4" } -farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.5" } +farmfe_core = { path = "../core", version = "0.4.5" } +farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.6" } indicatif = "0.17.7" console = "0.15.8" diff --git a/crates/plugin_resolve/CHANGELOG.md b/crates/plugin_resolve/CHANGELOG.md index c4a04554a..d70b2d4a7 100644 --- a/crates/plugin_resolve/CHANGELOG.md +++ b/crates/plugin_resolve/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.4](https://github.com/farm-fe/farm/compare/farmfe_plugin_resolve-v0.0.3...farmfe_plugin_resolve-v0.0.4) - 2024-04-08 + +### Other +- release ([#1115](https://github.com/farm-fe/farm/pull/1115)) + ## [0.0.3](https://github.com/farm-fe/farm/compare/farmfe_plugin_resolve-v0.0.2...farmfe_plugin_resolve-v0.0.3) - 2024-04-01 ### Fixed diff --git a/crates/plugin_resolve/Cargo.toml b/crates/plugin_resolve/Cargo.toml index 429cc29b2..3800f92c4 100644 --- a/crates/plugin_resolve/Cargo.toml +++ b/crates/plugin_resolve/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "farmfe_plugin_resolve" -version = "0.0.3" +version = "0.0.4" edition = "2021" authors = ["brightwu(吴明亮) <1521488775@qq.com>"] license = "MIT" @@ -10,9 +10,9 @@ repository = "https://github.com/farm-fe/farm" documentation = "https://docs.rs/farmfe_plugin_resolve" [dependencies] -farmfe_core = { path = "../core", version = "0.4.4" } -farmfe_toolkit = { path = "../toolkit", version = "0.0.5" } -farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.5" } +farmfe_core = { path = "../core", version = "0.4.5" } +farmfe_toolkit = { path = "../toolkit", version = "0.0.6" } +farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.6" } farmfe_utils = { path = "../utils", version = "0.1.4" } [features] diff --git a/crates/plugin_runtime/CHANGELOG.md b/crates/plugin_runtime/CHANGELOG.md index fcb1f9361..e215d4616 100644 --- a/crates/plugin_runtime/CHANGELOG.md +++ b/crates/plugin_runtime/CHANGELOG.md @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.4](https://github.com/farm-fe/farm/compare/farmfe_plugin_runtime-v0.0.3...farmfe_plugin_runtime-v0.0.4) - 2024-04-08 + +### Fixed +- persistent cache conflicts ([#1131](https://github.com/farm-fe/farm/pull/1131)) + +### Other +- release ([#1115](https://github.com/farm-fe/farm/pull/1115)) + ## [0.0.3](https://github.com/farm-fe/farm/compare/farmfe_plugin_runtime-v0.0.2...farmfe_plugin_runtime-v0.0.3) - 2024-04-01 ### Added diff --git a/crates/plugin_runtime/Cargo.toml b/crates/plugin_runtime/Cargo.toml index 78766743b..7ad9c78fb 100644 --- a/crates/plugin_runtime/Cargo.toml +++ b/crates/plugin_runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "farmfe_plugin_runtime" -version = "0.0.3" +version = "0.0.4" edition = "2021" authors = ["brightwu(吴明亮) <1521488775@qq.com>"] license = "MIT" @@ -10,8 +10,8 @@ repository = "https://github.com/farm-fe/farm" documentation = "https://docs.rs/farmfe_plugin_runtime" [dependencies] -farmfe_core = { path = "../core", version = "0.4.4" } -farmfe_toolkit = { path = "../toolkit", version = "0.0.5" } -farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.5" } +farmfe_core = { path = "../core", version = "0.4.5" } +farmfe_toolkit = { path = "../toolkit", version = "0.0.6" } +farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.6" } farmfe_utils = { path = "../utils", version = "0.1.4" } rkyv = { version = "0.7.42" } diff --git a/crates/plugin_script/CHANGELOG.md b/crates/plugin_script/CHANGELOG.md index e0827807b..5d8bd2b34 100644 --- a/crates/plugin_script/CHANGELOG.md +++ b/crates/plugin_script/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.4](https://github.com/farm-fe/farm/compare/farmfe_plugin_script-v0.0.3...farmfe_plugin_script-v0.0.4) - 2024-04-08 + +### Other +- updated the following local packages: farmfe_core, farmfe_toolkit, farmfe_swc_transformer_import_glob + ## [0.0.3](https://github.com/farm-fe/farm/compare/farmfe_plugin_script-v0.0.2...farmfe_plugin_script-v0.0.3) - 2024-04-01 ### Fixed diff --git a/crates/plugin_script/Cargo.toml b/crates/plugin_script/Cargo.toml index 65ae7a027..0da1b7192 100644 --- a/crates/plugin_script/Cargo.toml +++ b/crates/plugin_script/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "farmfe_plugin_script" -version = "0.0.3" +version = "0.0.4" edition = "2021" authors = ["brightwu(吴明亮) <1521488775@qq.com>"] license = "MIT" @@ -10,11 +10,11 @@ repository = "https://github.com/farm-fe/farm" documentation = "https://docs.rs/farmfe_plugin_script" [dependencies] -farmfe_core = { path = "../core", version = "0.4.4" } -farmfe_toolkit = { path = "../toolkit", version = "0.0.5" } -farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.5" } +farmfe_core = { path = "../core", version = "0.4.5" } +farmfe_toolkit = { path = "../toolkit", version = "0.0.6" } +farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.6" } farmfe_utils = { path = "../utils", version = "0.1.4" } -farmfe_swc_transformer_import_glob = { path = "../swc_transformer_import_glob", version = "0.0.3" } +farmfe_swc_transformer_import_glob = { path = "../swc_transformer_import_glob", version = "0.0.4" } swc_plugin_proxy = { version = "0.39.10", features = [ "plugin-rt", ], optional = true } diff --git a/crates/plugin_static_assets/CHANGELOG.md b/crates/plugin_static_assets/CHANGELOG.md index 55f315e18..2f6d33c39 100644 --- a/crates/plugin_static_assets/CHANGELOG.md +++ b/crates/plugin_static_assets/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.4](https://github.com/farm-fe/farm/compare/farmfe_plugin_static_assets-v0.0.3...farmfe_plugin_static_assets-v0.0.4) - 2024-04-08 + +### Other +- Chore/example vue2 ([#1127](https://github.com/farm-fe/farm/pull/1127)) + ## [0.0.3](https://github.com/farm-fe/farm/compare/farmfe_plugin_static_assets-v0.0.2...farmfe_plugin_static_assets-v0.0.3) - 2024-04-01 ### Other diff --git a/crates/plugin_static_assets/Cargo.toml b/crates/plugin_static_assets/Cargo.toml index 2272ec21d..c57c01fed 100644 --- a/crates/plugin_static_assets/Cargo.toml +++ b/crates/plugin_static_assets/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "farmfe_plugin_static_assets" -version = "0.0.3" +version = "0.0.4" edition = "2021" authors = ["brightwu(吴明亮) <1521488775@qq.com>"] license = "MIT" @@ -10,9 +10,9 @@ repository = "https://github.com/farm-fe/farm" documentation = "https://docs.rs/farmfe_plugin_static_assets" [dependencies] -farmfe_core = { path = "../core", version = "0.4.4" } -farmfe_toolkit = { path = "../toolkit", version = "0.0.5" } -farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.5" } +farmfe_core = { path = "../core", version = "0.4.5" } +farmfe_toolkit = { path = "../toolkit", version = "0.0.6" } +farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.6" } farmfe_utils = { path = "../utils", version = "0.1.4" } base64 = "0.21.0" rkyv = { version = "0.7.42" } diff --git a/crates/plugin_tree_shake/CHANGELOG.md b/crates/plugin_tree_shake/CHANGELOG.md index 8b0e18e1b..6f5ca6509 100644 --- a/crates/plugin_tree_shake/CHANGELOG.md +++ b/crates/plugin_tree_shake/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.4](https://github.com/farm-fe/farm/compare/farmfe_plugin_tree_shake-v0.0.3...farmfe_plugin_tree_shake-v0.0.4) - 2024-04-08 + +### Added +- improve tree shake traverse ([#1118](https://github.com/farm-fe/farm/pull/1118)) + ## [0.0.3](https://github.com/farm-fe/farm/compare/farmfe_plugin_tree_shake-v0.0.2...farmfe_plugin_tree_shake-v0.0.3) - 2024-04-01 ### Other diff --git a/crates/plugin_tree_shake/Cargo.toml b/crates/plugin_tree_shake/Cargo.toml index c94cfb385..9376702f6 100644 --- a/crates/plugin_tree_shake/Cargo.toml +++ b/crates/plugin_tree_shake/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "farmfe_plugin_tree_shake" -version = "0.0.3" +version = "0.0.4" edition = "2021" authors = ["brightwu(吴明亮) <1521488775@qq.com>"] license = "MIT" @@ -10,9 +10,9 @@ repository = "https://github.com/farm-fe/farm" documentation = "https://docs.rs/farmfe_plugin_tree_shake" [dependencies] -farmfe_core = { path = "../core", version = "0.4.4" } -farmfe_toolkit = { path = "../toolkit", version = "0.0.5" } -farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.5" } +farmfe_core = { path = "../core", version = "0.4.5" } +farmfe_toolkit = { path = "../toolkit", version = "0.0.6" } +farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.6" } farmfe_utils = { path = "../utils", version = "0.1.4" } [features] diff --git a/crates/swc_transformer_import_glob/CHANGELOG.md b/crates/swc_transformer_import_glob/CHANGELOG.md index 867b77f37..708c3107e 100644 --- a/crates/swc_transformer_import_glob/CHANGELOG.md +++ b/crates/swc_transformer_import_glob/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.4](https://github.com/farm-fe/farm/compare/farmfe_swc_transformer_import_glob-v0.0.3...farmfe_swc_transformer_import_glob-v0.0.4) - 2024-04-08 + +### Other +- release ([#1115](https://github.com/farm-fe/farm/pull/1115)) + ## [0.0.3](https://github.com/farm-fe/farm/compare/farmfe_swc_transformer_import_glob-v0.0.2...farmfe_swc_transformer_import_glob-v0.0.3) - 2024-04-01 ### Fixed diff --git a/crates/swc_transformer_import_glob/Cargo.toml b/crates/swc_transformer_import_glob/Cargo.toml index 9e2c711c6..61cf1fa72 100644 --- a/crates/swc_transformer_import_glob/Cargo.toml +++ b/crates/swc_transformer_import_glob/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "farmfe_swc_transformer_import_glob" -version = "0.0.3" +version = "0.0.4" edition = "2021" authors = ["brightwwu(吴明亮) <1521488775@qq.com>"] description = "farm swc tranformer for vite-style import.meta.glob" @@ -10,7 +10,7 @@ repository = "https://github.com/farm-fe/farm" documentation = "https://docs.rs/farmfe_plugin_define" [dependencies] -farmfe_core = { path = "../core", version = "0.4.4" } -farmfe_toolkit = { path = "../toolkit", version = "0.0.5" } +farmfe_core = { path = "../core", version = "0.4.5" } +farmfe_toolkit = { path = "../toolkit", version = "0.0.6" } farmfe_utils = { path = "../utils", version = "0.1.4" } -farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.5" } +farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.6" } diff --git a/crates/testing_helpers/CHANGELOG.md b/crates/testing_helpers/CHANGELOG.md index e18288f03..8f62568b3 100644 --- a/crates/testing_helpers/CHANGELOG.md +++ b/crates/testing_helpers/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.6](https://github.com/farm-fe/farm/compare/farmfe_testing_helpers-v0.0.5...farmfe_testing_helpers-v0.0.6) - 2024-04-08 + +### Other +- updated the following local packages: farmfe_core + ## [0.0.5](https://github.com/farm-fe/farm/compare/farmfe_testing_helpers-v0.0.4...farmfe_testing_helpers-v0.0.5) - 2024-04-02 ### Other diff --git a/crates/testing_helpers/Cargo.toml b/crates/testing_helpers/Cargo.toml index 7c2355df3..8edaf5d7f 100644 --- a/crates/testing_helpers/Cargo.toml +++ b/crates/testing_helpers/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "farmfe_testing_helpers" -version = "0.0.5" +version = "0.0.6" edition = "2021" authors = ["brightwu(吴明亮) <1521488775@qq.com>"] license = "MIT" @@ -10,4 +10,4 @@ repository = "https://github.com/farm-fe/farm" documentation = "https://docs.rs/farmfe_plugin_define" [dependencies] -farmfe_core = { path = "../core", version = "0.4.4" } +farmfe_core = { path = "../core", version = "0.4.5" } diff --git a/crates/toolkit/CHANGELOG.md b/crates/toolkit/CHANGELOG.md index e53651536..e240e42e5 100644 --- a/crates/toolkit/CHANGELOG.md +++ b/crates/toolkit/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.6](https://github.com/farm-fe/farm/compare/farmfe_toolkit-v0.0.5...farmfe_toolkit-v0.0.6) - 2024-04-08 + +### Other +- less strict html parsing ([#1138](https://github.com/farm-fe/farm/pull/1138)) + ## [0.0.5](https://github.com/farm-fe/farm/compare/farmfe_toolkit-v0.0.4...farmfe_toolkit-v0.0.5) - 2024-04-02 ### Other diff --git a/crates/toolkit/Cargo.toml b/crates/toolkit/Cargo.toml index d26bd706c..4c24fa0f4 100644 --- a/crates/toolkit/Cargo.toml +++ b/crates/toolkit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "farmfe_toolkit" -version = "0.0.5" +version = "0.0.6" edition = "2021" authors = ["brightwu(吴明亮) <1521488775@qq.com>"] license = "MIT" @@ -18,10 +18,10 @@ documentation = "https://docs.rs/farmfe_toolkit" # ] [dependencies] -farmfe_core = { path = "../core", version = "0.4.4" } +farmfe_core = { path = "../core", version = "0.4.5" } farmfe_utils = { path = "../utils", version = "0.1.4" } -farmfe_toolkit_plugin_types = { path = "../toolkit_plugin_types", version = "0.0.12" } -farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.5" } +farmfe_toolkit_plugin_types = { path = "../toolkit_plugin_types", version = "0.0.13" } +farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.6" } swc_ecma_parser = { version = "=0.142.0" } swc_ecma_visit = { version = "=0.97.0" } swc_ecma_codegen = { version = "=0.147.0" } diff --git a/crates/toolkit_plugin_types/CHANGELOG.md b/crates/toolkit_plugin_types/CHANGELOG.md index be6646cd8..5d5b50734 100644 --- a/crates/toolkit_plugin_types/CHANGELOG.md +++ b/crates/toolkit_plugin_types/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.13](https://github.com/farm-fe/farm/compare/farmfe_toolkit_plugin_types-v0.0.12...farmfe_toolkit_plugin_types-v0.0.13) - 2024-04-08 + +### Other +- updated the following local packages: farmfe_core + ## [0.0.12](https://github.com/farm-fe/farm/compare/farmfe_toolkit_plugin_types-v0.0.11...farmfe_toolkit_plugin_types-v0.0.12) - 2024-04-02 ### Other diff --git a/crates/toolkit_plugin_types/Cargo.toml b/crates/toolkit_plugin_types/Cargo.toml index fa4dc4936..2584b286f 100644 --- a/crates/toolkit_plugin_types/Cargo.toml +++ b/crates/toolkit_plugin_types/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "farmfe_toolkit_plugin_types" -version = "0.0.12" +version = "0.0.13" edition = "2021" authors = ["brightwu(吴明亮) <1521488775@qq.com>"] license = "MIT" description = "builtin tooltips for farm plugins" [dependencies] -farmfe_core = { version = "0.4.4", path = "../core" } +farmfe_core = { version = "0.4.5", path = "../core" } lazy_static = "1.4.0" libloading = "0.7.0"