From 6fd7b9410c603e5e479b38470136199c0f213004 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 28 Oct 2024 06:36:53 +0000 Subject: [PATCH] chore: release --- Cargo.lock | 84 +++++++++---------- crates/bench/CHANGELOG.md | 14 ++++ crates/bench/Cargo.toml | 6 +- crates/compiler/CHANGELOG.md | 20 +++++ crates/compiler/Cargo.toml | 40 ++++----- crates/core/CHANGELOG.md | 23 +++++ crates/core/Cargo.toml | 4 +- crates/create-farm-rs/CHANGELOG.md | 12 +++ crates/create-farm-rs/Cargo.toml | 2 +- crates/plugin_bundle/CHANGELOG.md | 13 +++ crates/plugin_bundle/Cargo.toml | 10 +-- crates/plugin_css/CHANGELOG.md | 15 ++++ crates/plugin_css/Cargo.toml | 10 +-- crates/plugin_define/CHANGELOG.md | 6 ++ crates/plugin_define/Cargo.toml | 10 +-- crates/plugin_html/CHANGELOG.md | 12 +++ crates/plugin_html/Cargo.toml | 8 +- crates/plugin_json/CHANGELOG.md | 6 ++ crates/plugin_json/Cargo.toml | 8 +- crates/plugin_lazy_compilation/CHANGELOG.md | 13 +++ crates/plugin_lazy_compilation/Cargo.toml | 10 +-- crates/plugin_minify/CHANGELOG.md | 10 +++ crates/plugin_minify/Cargo.toml | 8 +- crates/plugin_partial_bundling/CHANGELOG.md | 6 ++ crates/plugin_partial_bundling/Cargo.toml | 8 +- crates/plugin_polyfill/CHANGELOG.md | 7 ++ crates/plugin_polyfill/Cargo.toml | 8 +- crates/plugin_progress/CHANGELOG.md | 6 ++ crates/plugin_progress/Cargo.toml | 6 +- crates/plugin_resolve/CHANGELOG.md | 10 +++ crates/plugin_resolve/Cargo.toml | 10 +-- crates/plugin_runtime/CHANGELOG.md | 15 ++++ crates/plugin_runtime/Cargo.toml | 10 +-- crates/plugin_script/CHANGELOG.md | 11 +++ crates/plugin_script/Cargo.toml | 12 +-- crates/plugin_static_assets/CHANGELOG.md | 15 ++++ crates/plugin_static_assets/Cargo.toml | 10 +-- crates/plugin_tree_shake/CHANGELOG.md | 6 ++ crates/plugin_tree_shake/Cargo.toml | 10 +-- .../swc_transformer_import_glob/CHANGELOG.md | 6 ++ crates/swc_transformer_import_glob/Cargo.toml | 10 +-- crates/testing_helpers/CHANGELOG.md | 6 ++ crates/testing_helpers/Cargo.toml | 4 +- crates/toolkit/CHANGELOG.md | 17 ++++ crates/toolkit/Cargo.toml | 10 +-- crates/toolkit_plugin_types/CHANGELOG.md | 6 ++ crates/toolkit_plugin_types/Cargo.toml | 4 +- crates/utils/CHANGELOG.md | 10 +++ crates/utils/Cargo.toml | 2 +- packages/create-farm/CHANGELOG.md | 10 ++- packages/create-farm/Cargo.toml | 4 +- 51 files changed, 428 insertions(+), 155 deletions(-) create mode 100644 crates/bench/CHANGELOG.md diff --git a/Cargo.lock b/Cargo.lock index 10880d798..b86497e77 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -996,7 +996,7 @@ dependencies = [ [[package]] name = "create-farm" -version = "0.1.2" +version = "0.1.3" dependencies = [ "anyhow", "clap", @@ -1009,7 +1009,7 @@ dependencies = [ [[package]] name = "create_farm_node" -version = "0.1.2" +version = "0.1.3" dependencies = [ "create-farm", "napi", @@ -1482,7 +1482,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6082b74cc322c69840d97a7d7cba3ee9ed34fa70536fb51a69824f36742960f5" dependencies = [ "base64 0.22.1", - "farmfe_utils 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "farmfe_utils 0.1.5", "parking_lot", "regex", "sourcemap", @@ -1587,7 +1587,7 @@ checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7" [[package]] name = "farmfe_bench" -version = "0.0.1" +version = "0.0.2" dependencies = [ "criterion2", "farmfe_compiler", @@ -1596,7 +1596,7 @@ dependencies = [ [[package]] name = "farmfe_compiler" -version = "0.0.11" +version = "0.0.12" dependencies = [ "farmfe_core", "farmfe_plugin_bundle", @@ -1617,13 +1617,13 @@ dependencies = [ "farmfe_testing", "farmfe_testing_helpers", "farmfe_toolkit", - "farmfe_utils 0.1.5", + "farmfe_utils 0.1.6", "num_cpus", ] [[package]] name = "farmfe_core" -version = "0.6.4" +version = "0.7.0" dependencies = [ "blake2", "bytecheck 0.7.0", @@ -1631,7 +1631,7 @@ dependencies = [ "downcast-rs", "enhanced-magic-string", "farmfe_macro_cache_item", - "farmfe_utils 0.1.5", + "farmfe_utils 0.1.6", "globset", "heck 0.4.1", "hex", @@ -1695,39 +1695,39 @@ dependencies = [ [[package]] name = "farmfe_plugin_bundle" -version = "0.0.5" +version = "0.0.6" dependencies = [ "farmfe_core", "farmfe_testing_helpers", "farmfe_toolkit", - "farmfe_utils 0.1.5", + "farmfe_utils 0.1.6", ] [[package]] name = "farmfe_plugin_css" -version = "0.0.13" +version = "0.0.14" dependencies = [ "farmfe_core", "farmfe_macro_cache_item", "farmfe_testing_helpers", "farmfe_toolkit", - "farmfe_utils 0.1.5", + "farmfe_utils 0.1.6", "rkyv", ] [[package]] name = "farmfe_plugin_define" -version = "0.0.11" +version = "0.0.12" dependencies = [ "farmfe_core", "farmfe_testing_helpers", "farmfe_toolkit", - "farmfe_utils 0.1.5", + "farmfe_utils 0.1.6", ] [[package]] name = "farmfe_plugin_html" -version = "0.0.11" +version = "0.0.12" dependencies = [ "farmfe_core", "farmfe_testing_helpers", @@ -1737,7 +1737,7 @@ dependencies = [ [[package]] name = "farmfe_plugin_json" -version = "0.0.11" +version = "0.0.12" dependencies = [ "farmfe_core", "farmfe_testing_helpers", @@ -1746,17 +1746,17 @@ dependencies = [ [[package]] name = "farmfe_plugin_lazy_compilation" -version = "0.0.11" +version = "0.0.12" dependencies = [ "farmfe_core", "farmfe_testing_helpers", "farmfe_toolkit", - "farmfe_utils 0.1.5", + "farmfe_utils 0.1.6", ] [[package]] name = "farmfe_plugin_minify" -version = "0.0.11" +version = "0.0.12" dependencies = [ "farmfe_core", "farmfe_testing_helpers", @@ -1765,7 +1765,7 @@ dependencies = [ [[package]] name = "farmfe_plugin_partial_bundling" -version = "0.0.11" +version = "0.0.12" dependencies = [ "farmfe_core", "farmfe_testing_helpers", @@ -1774,7 +1774,7 @@ dependencies = [ [[package]] name = "farmfe_plugin_polyfill" -version = "0.0.11" +version = "0.0.12" dependencies = [ "farmfe_core", "farmfe_testing_helpers", @@ -1783,7 +1783,7 @@ dependencies = [ [[package]] name = "farmfe_plugin_progress" -version = "0.0.11" +version = "0.0.12" dependencies = [ "console", "farmfe_core", @@ -1806,23 +1806,23 @@ dependencies = [ [[package]] name = "farmfe_plugin_resolve" -version = "0.0.11" +version = "0.0.12" dependencies = [ "farmfe_core", "farmfe_testing_helpers", "farmfe_toolkit", - "farmfe_utils 0.1.5", + "farmfe_utils 0.1.6", "once_cell", ] [[package]] name = "farmfe_plugin_runtime" -version = "0.0.11" +version = "0.0.12" dependencies = [ "farmfe_core", "farmfe_testing_helpers", "farmfe_toolkit", - "farmfe_utils 0.1.5", + "farmfe_utils 0.1.6", "rkyv", ] @@ -1836,20 +1836,20 @@ dependencies = [ "farmfe_testing_helpers", "farmfe_toolkit", "farmfe_toolkit_plugin_types", - "farmfe_utils 0.1.5", + "farmfe_utils 0.1.6", "sass-embedded", "serde", ] [[package]] name = "farmfe_plugin_script" -version = "0.0.10" +version = "0.0.11" dependencies = [ "farmfe_core", "farmfe_swc_transformer_import_glob", "farmfe_testing_helpers", "farmfe_toolkit", - "farmfe_utils 0.1.5", + "farmfe_utils 0.1.6", "once_cell", "swc_ecma_loader", "swc_plugin_proxy", @@ -1859,35 +1859,35 @@ dependencies = [ [[package]] name = "farmfe_plugin_static_assets" -version = "0.0.11" +version = "0.0.12" dependencies = [ "base64 0.21.7", "farmfe_core", "farmfe_testing_helpers", "farmfe_toolkit", - "farmfe_utils 0.1.5", + "farmfe_utils 0.1.6", "mime_guess", "rkyv", ] [[package]] name = "farmfe_plugin_tree_shake" -version = "0.0.10" +version = "0.0.11" dependencies = [ "farmfe_core", "farmfe_testing_helpers", "farmfe_toolkit", - "farmfe_utils 0.1.5", + "farmfe_utils 0.1.6", ] [[package]] name = "farmfe_swc_transformer_import_glob" -version = "0.0.11" +version = "0.0.12" dependencies = [ "farmfe_core", "farmfe_testing_helpers", "farmfe_toolkit", - "farmfe_utils 0.1.5", + "farmfe_utils 0.1.6", ] [[package]] @@ -1905,20 +1905,20 @@ dependencies = [ [[package]] name = "farmfe_testing_helpers" -version = "0.0.13" +version = "0.0.14" dependencies = [ "farmfe_core", ] [[package]] name = "farmfe_toolkit" -version = "0.0.13" +version = "0.0.14" dependencies = [ "anyhow", "farmfe_core", "farmfe_testing_helpers", "farmfe_toolkit_plugin_types", - "farmfe_utils 0.1.5", + "farmfe_utils 0.1.6", "lazy_static", "preset_env_base", "sourcemap", @@ -1946,7 +1946,7 @@ dependencies = [ [[package]] name = "farmfe_toolkit_plugin_types" -version = "0.0.20" +version = "0.0.21" dependencies = [ "farmfe_core", "lazy_static", @@ -1956,6 +1956,8 @@ dependencies = [ [[package]] name = "farmfe_utils" version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d797c8fb2b5c357bd730dc119169e663f8ae7dfbc606696350c104e39324749d" dependencies = [ "base64 0.21.7", "pathdiff", @@ -1964,9 +1966,7 @@ dependencies = [ [[package]] name = "farmfe_utils" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d797c8fb2b5c357bd730dc119169e663f8ae7dfbc606696350c104e39324749d" +version = "0.1.6" dependencies = [ "base64 0.21.7", "pathdiff", diff --git a/crates/bench/CHANGELOG.md b/crates/bench/CHANGELOG.md new file mode 100644 index 000000000..d3a8c5b75 --- /dev/null +++ b/crates/bench/CHANGELOG.md @@ -0,0 +1,14 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.0.2](https://github.com/farm-fe/farm/compare/farmfe_bench-v0.0.1...farmfe_bench-v0.0.2) - 2024-10-28 + +### Other + +- simplify string formatting for readability ([#1828](https://github.com/farm-fe/farm/pull/1828)) diff --git a/crates/bench/Cargo.toml b/crates/bench/Cargo.toml index ac3f36ede..02a477212 100644 --- a/crates/bench/Cargo.toml +++ b/crates/bench/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "farmfe_bench" -version = "0.0.1" +version = "0.0.2" edition = "2021" authors = ["brightwu(吴明亮) <1521488775@qq.com>"] license = "MIT" @@ -11,8 +11,8 @@ documentation = "https://docs.rs/farmfe_bench" [dependencies] criterion2 = { version = "0.11.0", default-features = false } -farmfe_core = { path = "../core", version = "0.6.4" } -farmfe_compiler = { path = "../compiler", version = "0.0.11" } +farmfe_core = { path = "../core", version = "0.7.0" } +farmfe_compiler = { path = "../compiler", version = "0.0.12" } [[bench]] name = "compiler_bench" diff --git a/crates/compiler/CHANGELOG.md b/crates/compiler/CHANGELOG.md index abdabfad8..233162cc6 100644 --- a/crates/compiler/CHANGELOG.md +++ b/crates/compiler/CHANGELOG.md @@ -6,6 +6,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.12](https://github.com/farm-fe/farm/compare/farmfe_compiler-v0.0.11...farmfe_compiler-v0.0.12) - 2024-10-28 + +### Fixed + +- css resolving issue ([#1834](https://github.com/farm-fe/farm/pull/1834)) +- namespace import MemberProp name failed ([#1826](https://github.com/farm-fe/farm/pull/1826)) +- lazy compilation cache && postcss tailwind does not work on windows ([#1808](https://github.com/farm-fe/farm/pull/1808)) +- arcgis lazy compile fail ([#1750](https://github.com/farm-fe/farm/pull/1750)) +- html runtime inject failed when build multiple page ([#1760](https://github.com/farm-fe/farm/pull/1760)) +- globalThis undefined ([#1726](https://github.com/farm-fe/farm/pull/1726)) +- [#1672](https://github.com/farm-fe/farm/pull/1672) ([#1692](https://github.com/farm-fe/farm/pull/1692)) +- bundle import namespace name uniq ([#1696](https://github.com/farm-fe/farm/pull/1696)) +- single bundle ([#1653](https://github.com/farm-fe/farm/pull/1653)) + +### Other + +- simplify string formatting for readability ([#1828](https://github.com/farm-fe/farm/pull/1828)) +- *(refactor)* refactor stats and visualizer ([#1739](https://github.com/farm-fe/farm/pull/1739)) +- remove `query_string` when `emit_file` to `resource_map` in `plugin_static_assets` ([#1746](https://github.com/farm-fe/farm/pull/1746)) + ## [0.0.11](https://github.com/farm-fe/farm/compare/farmfe_compiler-v0.0.10...farmfe_compiler-v0.0.11) - 2024-07-25 ### Added diff --git a/crates/compiler/Cargo.toml b/crates/compiler/Cargo.toml index bb21e3892..e4f7259a1 100644 --- a/crates/compiler/Cargo.toml +++ b/crates/compiler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "farmfe_compiler" -version = "0.0.11" +version = "0.0.12" edition = "2021" authors = ["brightwu(吴明亮) <1521488775@qq.com>"] license = "MIT" @@ -10,25 +10,25 @@ repository = "https://github.com/farm-fe/farm" documentation = "https://docs.rs/farmfe_compiler" [dependencies] -farmfe_core = { path = "../core", version = "0.6.4" } -farmfe_plugin_partial_bundling = { path = "../plugin_partial_bundling", version = "0.0.11" } -farmfe_plugin_resolve = { path = "../plugin_resolve", version = "0.0.11" } -farmfe_plugin_script = { path = "../plugin_script", version = "0.0.10" } -farmfe_plugin_runtime = { path = "../plugin_runtime", version = "0.0.11" } -farmfe_plugin_html = { path = "../plugin_html", version = "0.0.11" } -farmfe_plugin_tree_shake = { path = "../plugin_tree_shake", version = "0.0.10" } -farmfe_plugin_css = { path = "../plugin_css", version = "0.0.13" } -farmfe_plugin_lazy_compilation = { path = "../plugin_lazy_compilation", version = "0.0.11" } -farmfe_plugin_static_assets = { path = "../plugin_static_assets", version = "0.0.11" } -farmfe_plugin_minify = { path = "../plugin_minify", version = "0.0.11" } -farmfe_toolkit = { path = "../toolkit", version = "0.0.13" } -farmfe_utils = { path = "../utils", version = "0.1.5" } -farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.13" } -farmfe_plugin_json = { path = "../plugin_json", version = "0.0.11" } -farmfe_plugin_polyfill = { path = "../plugin_polyfill", version = "0.0.11" } -farmfe_plugin_progress = { path = "../plugin_progress", version = "0.0.11" } -farmfe_plugin_define = { path = "../plugin_define", version = "0.0.11" } -farmfe_plugin_bundle = { path = "../plugin_bundle", version = "0.0.5" } +farmfe_core = { path = "../core", version = "0.7.0" } +farmfe_plugin_partial_bundling = { path = "../plugin_partial_bundling", version = "0.0.12" } +farmfe_plugin_resolve = { path = "../plugin_resolve", version = "0.0.12" } +farmfe_plugin_script = { path = "../plugin_script", version = "0.0.11" } +farmfe_plugin_runtime = { path = "../plugin_runtime", version = "0.0.12" } +farmfe_plugin_html = { path = "../plugin_html", version = "0.0.12" } +farmfe_plugin_tree_shake = { path = "../plugin_tree_shake", version = "0.0.11" } +farmfe_plugin_css = { path = "../plugin_css", version = "0.0.14" } +farmfe_plugin_lazy_compilation = { path = "../plugin_lazy_compilation", version = "0.0.12" } +farmfe_plugin_static_assets = { path = "../plugin_static_assets", version = "0.0.12" } +farmfe_plugin_minify = { path = "../plugin_minify", version = "0.0.12" } +farmfe_toolkit = { path = "../toolkit", version = "0.0.14" } +farmfe_utils = { path = "../utils", version = "0.1.6" } +farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.14" } +farmfe_plugin_json = { path = "../plugin_json", version = "0.0.12" } +farmfe_plugin_polyfill = { path = "../plugin_polyfill", version = "0.0.12" } +farmfe_plugin_progress = { path = "../plugin_progress", version = "0.0.12" } +farmfe_plugin_define = { path = "../plugin_define", version = "0.0.12" } +farmfe_plugin_bundle = { path = "../plugin_bundle", version = "0.0.6" } num_cpus = "1.16.0" farmfe_testing = { path = "../macro_testing", version = "0.0.2" } diff --git a/crates/core/CHANGELOG.md b/crates/core/CHANGELOG.md index c2d473e2e..e1138b03b 100644 --- a/crates/core/CHANGELOG.md +++ b/crates/core/CHANGELOG.md @@ -7,6 +7,29 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.7.0](https://github.com/farm-fe/farm/compare/farmfe_core-v0.6.4...farmfe_core-v0.7.0) - 2024-10-28 + +### Added + +- add assets mode for asset path generate ([#1852](https://github.com/farm-fe/farm/pull/1852)) +- *(css)* support css module name coversion ([#1784](https://github.com/farm-fe/farm/pull/1784)) +- support resolve dedupe ([#1762](https://github.com/farm-fe/farm/pull/1762)) + +### Fixed + +- lazy compilation cache && postcss tailwind does not work on windows ([#1808](https://github.com/farm-fe/farm/pull/1808)) +- arcgis lazy compile fail ([#1750](https://github.com/farm-fe/farm/pull/1750)) +- preset_env plugin match and module system `analyze` ([#1751](https://github.com/farm-fe/farm/pull/1751)) +- globalThis undefined ([#1726](https://github.com/farm-fe/farm/pull/1726)) +- [#1672](https://github.com/farm-fe/farm/pull/1672) ([#1692](https://github.com/farm-fe/farm/pull/1692)) +- single bundle ([#1653](https://github.com/farm-fe/farm/pull/1653)) + +### Other + +- revert change of replacing invalid css ([#1831](https://github.com/farm-fe/farm/pull/1831)) +- simplify string formatting for readability ([#1828](https://github.com/farm-fe/farm/pull/1828)) +- *(refactor)* refactor stats and visualizer ([#1739](https://github.com/farm-fe/farm/pull/1739)) + ## [0.6.4](https://github.com/farm-fe/farm/compare/farmfe_core-v0.6.3...farmfe_core-v0.6.4) - 2024-07-25 ### Added diff --git a/crates/core/Cargo.toml b/crates/core/Cargo.toml index 99c8b4744..6760a9e94 100644 --- a/crates/core/Cargo.toml +++ b/crates/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "farmfe_core" -version = "0.6.4" +version = "0.7.0" edition = "2021" authors = ["brightwu(吴明亮) <1521488775@qq.com>"] license = "MIT" @@ -15,7 +15,7 @@ no-default-features = true [dependencies] farmfe_macro_cache_item = { version = "0.1.3", path = "../macro_cache_item" } -farmfe_utils = { version = "0.1.5", path = "../utils" } +farmfe_utils = { version = "0.1.6", path = "../utils" } serde = { version = "1.0", features = ["derive", "rc"] } serde_json = { version = "1.0", features = ["preserve_order"] } parking_lot = { version = "0.12", features = ["deadlock_detection"] } diff --git a/crates/create-farm-rs/CHANGELOG.md b/crates/create-farm-rs/CHANGELOG.md index dea4b2784..085e3b771 100644 --- a/crates/create-farm-rs/CHANGELOG.md +++ b/crates/create-farm-rs/CHANGELOG.md @@ -6,6 +6,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.3](https://github.com/farm-fe/farm/compare/create-farm-v0.1.2...create-farm-v0.1.3) - 2024-10-28 + +### Added + +- *(cli)* support re-prompt project name ([#1732](https://github.com/farm-fe/farm/pull/1732)) + +### Other + +- simplify string formatting for readability ([#1828](https://github.com/farm-fe/farm/pull/1828)) +- *(create-farm)* update README for vanilla template ([#1724](https://github.com/farm-fe/farm/pull/1724)) +- *(create-farm)* rewrite `create-farm` ([#1700](https://github.com/farm-fe/farm/pull/1700)) + ## [0.1.2](https://github.com/farm-fe/farm/compare/create-farm-v0.1.1...create-farm-v0.1.2) - 2024-07-19 ### Fixed diff --git a/crates/create-farm-rs/Cargo.toml b/crates/create-farm-rs/Cargo.toml index bced5375f..a8feb4f8c 100644 --- a/crates/create-farm-rs/Cargo.toml +++ b/crates/create-farm-rs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "create-farm" -version = "0.1.2" +version = "0.1.3" edition = "2021" authors = ["Erkelost"] license = "MIT" diff --git a/crates/plugin_bundle/CHANGELOG.md b/crates/plugin_bundle/CHANGELOG.md index 78062d963..b5a87ca2c 100644 --- a/crates/plugin_bundle/CHANGELOG.md +++ b/crates/plugin_bundle/CHANGELOG.md @@ -6,6 +6,19 @@ 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_plugin_bundle-v0.0.5...farmfe_plugin_bundle-v0.0.6) - 2024-10-28 + +### Fixed + +- namespace import MemberProp name failed ([#1826](https://github.com/farm-fe/farm/pull/1826)) +- globalThis undefined ([#1726](https://github.com/farm-fe/farm/pull/1726)) +- bundle import namespace name uniq ([#1696](https://github.com/farm-fe/farm/pull/1696)) +- single bundle ([#1653](https://github.com/farm-fe/farm/pull/1653)) + +### Other + +- simplify string formatting for readability ([#1828](https://github.com/farm-fe/farm/pull/1828)) + ## [0.0.5](https://github.com/farm-fe/farm/compare/farmfe_plugin_bundle-v0.0.4...farmfe_plugin_bundle-v0.0.5) - 2024-07-25 ### Added diff --git a/crates/plugin_bundle/Cargo.toml b/crates/plugin_bundle/Cargo.toml index 4b394992e..ad06f5f42 100644 --- a/crates/plugin_bundle/Cargo.toml +++ b/crates/plugin_bundle/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "farmfe_plugin_bundle" -version = "0.0.5" +version = "0.0.6" edition = "2021" authors = ["shulandmimi"] license = "MIT" @@ -10,10 +10,10 @@ repository = "https://github.com/farm-fe/farm" documentation = "https://docs.rs/farmfe_plugin_bundle" [dependencies] -farmfe_core = { path = "../core", version = "0.6.4" } -farmfe_toolkit = { path = "../toolkit", version = "0.0.13" } -farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.13" } -farmfe_utils = { path = "../utils", version = "0.1.5" } +farmfe_core = { path = "../core", version = "0.7.0" } +farmfe_toolkit = { path = "../toolkit", version = "0.0.14" } +farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.14" } +farmfe_utils = { path = "../utils", version = "0.1.6" } [features] profile = ["farmfe_core/profile"] diff --git a/crates/plugin_css/CHANGELOG.md b/crates/plugin_css/CHANGELOG.md index 162fe0fa7..dd017316f 100644 --- a/crates/plugin_css/CHANGELOG.md +++ b/crates/plugin_css/CHANGELOG.md @@ -6,6 +6,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.14](https://github.com/farm-fe/farm/compare/farmfe_plugin_css-v0.0.13...farmfe_plugin_css-v0.0.14) - 2024-10-28 + +### Added + +- *(css)* support css module name coversion ([#1784](https://github.com/farm-fe/farm/pull/1784)) + +### Fixed + +- invalid css [#1748](https://github.com/farm-fe/farm/pull/1748) and [#1557](https://github.com/farm-fe/farm/pull/1557) ([#1823](https://github.com/farm-fe/farm/pull/1823)) + +### Other + +- revert change of replacing invalid css ([#1831](https://github.com/farm-fe/farm/pull/1831)) +- simplify string formatting for readability ([#1828](https://github.com/farm-fe/farm/pull/1828)) + ## [0.0.13](https://github.com/farm-fe/farm/compare/farmfe_plugin_css-v0.0.12...farmfe_plugin_css-v0.0.13) - 2024-07-25 ### Other diff --git a/crates/plugin_css/Cargo.toml b/crates/plugin_css/Cargo.toml index 52ef7675c..5432932b8 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.13" +version = "0.0.14" 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.6.4" } -farmfe_toolkit = { path = "../toolkit", version = "0.0.13" } -farmfe_utils = { path = "../utils", version = "0.1.5" } +farmfe_core = { path = "../core", version = "0.7.0" } +farmfe_toolkit = { path = "../toolkit", version = "0.0.14" } +farmfe_utils = { path = "../utils", version = "0.1.6" } 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.13" } +farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.14" } diff --git a/crates/plugin_define/CHANGELOG.md b/crates/plugin_define/CHANGELOG.md index 607412aeb..ab2af2578 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.12](https://github.com/farm-fe/farm/compare/farmfe_plugin_define-v0.0.11...farmfe_plugin_define-v0.0.12) - 2024-10-28 + +### Other + +- updated the following local packages: farmfe_core, farmfe_utils, farmfe_testing_helpers, farmfe_toolkit + ## [0.0.11](https://github.com/farm-fe/farm/compare/farmfe_plugin_define-v0.0.10...farmfe_plugin_define-v0.0.11) - 2024-07-25 ### Other diff --git a/crates/plugin_define/Cargo.toml b/crates/plugin_define/Cargo.toml index 579647c25..597342935 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.11" +version = "0.0.12" 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.6.4" } -farmfe_toolkit = { path = "../toolkit", version = "0.0.13" } -farmfe_utils = { path = "../utils", version = "0.1.5" } -farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.13" } +farmfe_core = { path = "../core", version = "0.7.0" } +farmfe_toolkit = { path = "../toolkit", version = "0.0.14" } +farmfe_utils = { path = "../utils", version = "0.1.6" } +farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.14" } diff --git a/crates/plugin_html/CHANGELOG.md b/crates/plugin_html/CHANGELOG.md index 40c063c7a..ccb4f6e57 100644 --- a/crates/plugin_html/CHANGELOG.md +++ b/crates/plugin_html/CHANGELOG.md @@ -6,6 +6,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.12](https://github.com/farm-fe/farm/compare/farmfe_plugin_html-v0.0.11...farmfe_plugin_html-v0.0.12) - 2024-10-28 + +### Fixed + +- html runtime inject failed when build multiple page ([#1760](https://github.com/farm-fe/farm/pull/1760)) +- globalThis undefined ([#1726](https://github.com/farm-fe/farm/pull/1726)) +- [#1672](https://github.com/farm-fe/farm/pull/1672) ([#1692](https://github.com/farm-fe/farm/pull/1692)) + +### Other + +- simplify string formatting for readability ([#1828](https://github.com/farm-fe/farm/pull/1828)) + ## [0.0.11](https://github.com/farm-fe/farm/compare/farmfe_plugin_html-v0.0.10...farmfe_plugin_html-v0.0.11) - 2024-07-25 ### Other diff --git a/crates/plugin_html/Cargo.toml b/crates/plugin_html/Cargo.toml index 13c7250e8..d99ce6010 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.11" +version = "0.0.12" 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.6.4" } -farmfe_toolkit = { path = "../toolkit", version = "0.0.13" } -farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.13" } +farmfe_core = { path = "../core", version = "0.7.0" } +farmfe_toolkit = { path = "../toolkit", version = "0.0.14" } +farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.14" } rkyv = { version = "0.7.42" } diff --git a/crates/plugin_json/CHANGELOG.md b/crates/plugin_json/CHANGELOG.md index e7269b59a..ae50f8c54 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.12](https://github.com/farm-fe/farm/compare/farmfe_plugin_json-v0.0.11...farmfe_plugin_json-v0.0.12) - 2024-10-28 + +### Other + +- simplify string formatting for readability ([#1828](https://github.com/farm-fe/farm/pull/1828)) + ## [0.0.11](https://github.com/farm-fe/farm/compare/farmfe_plugin_json-v0.0.10...farmfe_plugin_json-v0.0.11) - 2024-07-25 ### Other diff --git a/crates/plugin_json/Cargo.toml b/crates/plugin_json/Cargo.toml index 9b335ba14..b38578be5 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.11" +version = "0.0.12" 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.6.4" } -farmfe_toolkit = { path = "../toolkit", version = "0.0.13" } -farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.13" } +farmfe_core = { path = "../core", version = "0.7.0" } +farmfe_toolkit = { path = "../toolkit", version = "0.0.14" } +farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.14" } diff --git a/crates/plugin_lazy_compilation/CHANGELOG.md b/crates/plugin_lazy_compilation/CHANGELOG.md index 46c420e87..a64bc28b8 100644 --- a/crates/plugin_lazy_compilation/CHANGELOG.md +++ b/crates/plugin_lazy_compilation/CHANGELOG.md @@ -6,6 +6,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.12](https://github.com/farm-fe/farm/compare/farmfe_plugin_lazy_compilation-v0.0.11...farmfe_plugin_lazy_compilation-v0.0.12) - 2024-10-28 + +### Fixed + +- arcgis lazy compile fail ([#1750](https://github.com/farm-fe/farm/pull/1750)) +- globalThis undefined ([#1726](https://github.com/farm-fe/farm/pull/1726)) +- [#1672](https://github.com/farm-fe/farm/pull/1672) ([#1692](https://github.com/farm-fe/farm/pull/1692)) +- lazy compile url ([#1671](https://github.com/farm-fe/farm/pull/1671)) + +### Other + +- simplify string formatting for readability ([#1828](https://github.com/farm-fe/farm/pull/1828)) + ## [0.0.11](https://github.com/farm-fe/farm/compare/farmfe_plugin_lazy_compilation-v0.0.10...farmfe_plugin_lazy_compilation-v0.0.11) - 2024-07-25 ### Other diff --git a/crates/plugin_lazy_compilation/Cargo.toml b/crates/plugin_lazy_compilation/Cargo.toml index cc8162ec5..d03e1ce06 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.11" +version = "0.0.12" 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.6.4" } -farmfe_toolkit = { path = "../toolkit", version = "0.0.13" } -farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.13" } -farmfe_utils = { path = "../utils", version = "0.1.5" } +farmfe_core = { path = "../core", version = "0.7.0" } +farmfe_toolkit = { path = "../toolkit", version = "0.0.14" } +farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.14" } +farmfe_utils = { path = "../utils", version = "0.1.6" } diff --git a/crates/plugin_minify/CHANGELOG.md b/crates/plugin_minify/CHANGELOG.md index 28a148f5c..ceca47411 100644 --- a/crates/plugin_minify/CHANGELOG.md +++ b/crates/plugin_minify/CHANGELOG.md @@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.12](https://github.com/farm-fe/farm/compare/farmfe_plugin_minify-v0.0.11...farmfe_plugin_minify-v0.0.12) - 2024-10-28 + +### Fixed + +- [#1672](https://github.com/farm-fe/farm/pull/1672) ([#1692](https://github.com/farm-fe/farm/pull/1692)) + +### Other + +- simplify string formatting for readability ([#1828](https://github.com/farm-fe/farm/pull/1828)) + ## [0.0.11](https://github.com/farm-fe/farm/compare/farmfe_plugin_minify-v0.0.10...farmfe_plugin_minify-v0.0.11) - 2024-07-25 ### Fixed diff --git a/crates/plugin_minify/Cargo.toml b/crates/plugin_minify/Cargo.toml index 6f75819cb..e37a26ad6 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.11" +version = "0.0.12" 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.6.4" } -farmfe_toolkit = { path = "../toolkit", version = "0.0.13" } -farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.13" } +farmfe_core = { path = "../core", version = "0.7.0" } +farmfe_toolkit = { path = "../toolkit", version = "0.0.14" } +farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.14" } diff --git a/crates/plugin_partial_bundling/CHANGELOG.md b/crates/plugin_partial_bundling/CHANGELOG.md index 6d089fbe9..600ac21ad 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.12](https://github.com/farm-fe/farm/compare/farmfe_plugin_partial_bundling-v0.0.11...farmfe_plugin_partial_bundling-v0.0.12) - 2024-10-28 + +### Other + +- simplify string formatting for readability ([#1828](https://github.com/farm-fe/farm/pull/1828)) + ## [0.0.11](https://github.com/farm-fe/farm/compare/farmfe_plugin_partial_bundling-v0.0.10...farmfe_plugin_partial_bundling-v0.0.11) - 2024-07-25 ### Other diff --git a/crates/plugin_partial_bundling/Cargo.toml b/crates/plugin_partial_bundling/Cargo.toml index 8c12c6c46..f51128abd 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.11" +version = "0.0.12" 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.6.4" } -farmfe_toolkit = { path = "../toolkit", version = "0.0.13" } -farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.13" } +farmfe_core = { path = "../core", version = "0.7.0" } +farmfe_toolkit = { path = "../toolkit", version = "0.0.14" } +farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.14" } [features] profile = ["farmfe_core/profile"] diff --git a/crates/plugin_polyfill/CHANGELOG.md b/crates/plugin_polyfill/CHANGELOG.md index 2544fba36..db5fabb19 100644 --- a/crates/plugin_polyfill/CHANGELOG.md +++ b/crates/plugin_polyfill/CHANGELOG.md @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.12](https://github.com/farm-fe/farm/compare/farmfe_plugin_polyfill-v0.0.11...farmfe_plugin_polyfill-v0.0.12) - 2024-10-28 + +### Fixed + +- revert preset-env match & add enforce exclude ([#1752](https://github.com/farm-fe/farm/pull/1752)) +- preset_env plugin match and module system `analyze` ([#1751](https://github.com/farm-fe/farm/pull/1751)) + ## [0.0.11](https://github.com/farm-fe/farm/compare/farmfe_plugin_polyfill-v0.0.10...farmfe_plugin_polyfill-v0.0.11) - 2024-07-25 ### Other diff --git a/crates/plugin_polyfill/Cargo.toml b/crates/plugin_polyfill/Cargo.toml index 1e47dd1b9..0d60efa7b 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.11" +version = "0.0.12" 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.6.4" } -farmfe_toolkit = { path = "../toolkit", version = "0.0.13" } -farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.13" } +farmfe_core = { path = "../core", version = "0.7.0" } +farmfe_toolkit = { path = "../toolkit", version = "0.0.14" } +farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.14" } diff --git a/crates/plugin_progress/CHANGELOG.md b/crates/plugin_progress/CHANGELOG.md index 9ba716a32..adcc5c75d 100644 --- a/crates/plugin_progress/CHANGELOG.md +++ b/crates/plugin_progress/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.12](https://github.com/farm-fe/farm/compare/farmfe_plugin_progress-v0.0.11...farmfe_plugin_progress-v0.0.12) - 2024-10-28 + +### Other + +- updated the following local packages: farmfe_core, farmfe_testing_helpers + ## [0.0.11](https://github.com/farm-fe/farm/compare/farmfe_plugin_progress-v0.0.10...farmfe_plugin_progress-v0.0.11) - 2024-07-25 ### Other diff --git a/crates/plugin_progress/Cargo.toml b/crates/plugin_progress/Cargo.toml index 275fbc93a..7b4ef8cd8 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.11" +version = "0.0.12" 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.6.4" } -farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.13" } +farmfe_core = { path = "../core", version = "0.7.0" } +farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.14" } indicatif = "0.17.7" console = "0.15.8" diff --git a/crates/plugin_resolve/CHANGELOG.md b/crates/plugin_resolve/CHANGELOG.md index fdbc0eb65..70ea80a8f 100644 --- a/crates/plugin_resolve/CHANGELOG.md +++ b/crates/plugin_resolve/CHANGELOG.md @@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.12](https://github.com/farm-fe/farm/compare/farmfe_plugin_resolve-v0.0.11...farmfe_plugin_resolve-v0.0.12) - 2024-10-28 + +### Added + +- support resolve dedupe ([#1762](https://github.com/farm-fe/farm/pull/1762)) + +### Other + +- simplify string formatting for readability ([#1828](https://github.com/farm-fe/farm/pull/1828)) + ## [0.0.11](https://github.com/farm-fe/farm/compare/farmfe_plugin_resolve-v0.0.10...farmfe_plugin_resolve-v0.0.11) - 2024-07-25 ### Added diff --git a/crates/plugin_resolve/Cargo.toml b/crates/plugin_resolve/Cargo.toml index 3a96d1444..8c344319f 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.11" +version = "0.0.12" edition = "2021" authors = ["brightwu(吴明亮) <1521488775@qq.com>"] license = "MIT" @@ -10,10 +10,10 @@ repository = "https://github.com/farm-fe/farm" documentation = "https://docs.rs/farmfe_plugin_resolve" [dependencies] -farmfe_core = { path = "../core", version = "0.6.4" } -farmfe_toolkit = { path = "../toolkit", version = "0.0.13" } -farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.13" } -farmfe_utils = { path = "../utils", version = "0.1.5" } +farmfe_core = { path = "../core", version = "0.7.0" } +farmfe_toolkit = { path = "../toolkit", version = "0.0.14" } +farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.14" } +farmfe_utils = { path = "../utils", version = "0.1.6" } once_cell = "1.19.0" [features] diff --git a/crates/plugin_runtime/CHANGELOG.md b/crates/plugin_runtime/CHANGELOG.md index 7c33b1cc8..5f47ee2fa 100644 --- a/crates/plugin_runtime/CHANGELOG.md +++ b/crates/plugin_runtime/CHANGELOG.md @@ -6,6 +6,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.12](https://github.com/farm-fe/farm/compare/farmfe_plugin_runtime-v0.0.11...farmfe_plugin_runtime-v0.0.12) - 2024-10-28 + +### Fixed + +- async module detection wrong ([#1890](https://github.com/farm-fe/farm/pull/1890)) +- [#1755](https://github.com/farm-fe/farm/pull/1755) ([#1814](https://github.com/farm-fe/farm/pull/1814)) +- globalThis undefined ([#1726](https://github.com/farm-fe/farm/pull/1726)) +- [#1672](https://github.com/farm-fe/farm/pull/1672) ([#1692](https://github.com/farm-fe/farm/pull/1692)) +- single bundle ([#1653](https://github.com/farm-fe/farm/pull/1653)) + +### Other + +- simplify string formatting for readability ([#1828](https://github.com/farm-fe/farm/pull/1828)) +- *(refactor)* refactor stats and visualizer ([#1739](https://github.com/farm-fe/farm/pull/1739)) + ## [0.0.11](https://github.com/farm-fe/farm/compare/farmfe_plugin_runtime-v0.0.10...farmfe_plugin_runtime-v0.0.11) - 2024-07-25 ### Added diff --git a/crates/plugin_runtime/Cargo.toml b/crates/plugin_runtime/Cargo.toml index 111779fbc..e35f851d2 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.11" +version = "0.0.12" edition = "2021" authors = ["brightwu(吴明亮) <1521488775@qq.com>"] license = "MIT" @@ -10,10 +10,10 @@ repository = "https://github.com/farm-fe/farm" documentation = "https://docs.rs/farmfe_plugin_runtime" [dependencies] -farmfe_core = { path = "../core", version = "0.6.4" } -farmfe_toolkit = { path = "../toolkit", version = "0.0.13" } -farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.13" } -farmfe_utils = { path = "../utils", version = "0.1.5" } +farmfe_core = { path = "../core", version = "0.7.0" } +farmfe_toolkit = { path = "../toolkit", version = "0.0.14" } +farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.14" } +farmfe_utils = { path = "../utils", version = "0.1.6" } rkyv = { version = "0.7.42" } [features] diff --git a/crates/plugin_script/CHANGELOG.md b/crates/plugin_script/CHANGELOG.md index cfbda5a2e..f6e76f429 100644 --- a/crates/plugin_script/CHANGELOG.md +++ b/crates/plugin_script/CHANGELOG.md @@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.11](https://github.com/farm-fe/farm/compare/farmfe_plugin_script-v0.0.10...farmfe_plugin_script-v0.0.11) - 2024-10-28 + +### Fixed + +- [#1672](https://github.com/farm-fe/farm/pull/1672) ([#1692](https://github.com/farm-fe/farm/pull/1692)) +- single bundle ([#1653](https://github.com/farm-fe/farm/pull/1653)) + +### Other + +- simplify string formatting for readability ([#1828](https://github.com/farm-fe/farm/pull/1828)) + ## [0.0.10](https://github.com/farm-fe/farm/compare/farmfe_plugin_script-v0.0.9...farmfe_plugin_script-v0.0.10) - 2024-07-25 ### Other diff --git a/crates/plugin_script/Cargo.toml b/crates/plugin_script/Cargo.toml index 3dc12b3c9..8c8f26bdf 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.10" +version = "0.0.11" 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.6.4" } -farmfe_toolkit = { path = "../toolkit", version = "0.0.13" } -farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.13" } -farmfe_utils = { path = "../utils", version = "0.1.5" } -farmfe_swc_transformer_import_glob = { path = "../swc_transformer_import_glob", version = "0.0.11" } +farmfe_core = { path = "../core", version = "0.7.0" } +farmfe_toolkit = { path = "../toolkit", version = "0.0.14" } +farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.14" } +farmfe_utils = { path = "../utils", version = "0.1.6" } +farmfe_swc_transformer_import_glob = { path = "../swc_transformer_import_glob", version = "0.0.12" } swc_plugin_proxy = { version = "0.44.2", features = [ "plugin-rt", ], optional = true } diff --git a/crates/plugin_static_assets/CHANGELOG.md b/crates/plugin_static_assets/CHANGELOG.md index 5e86becdd..81986f009 100644 --- a/crates/plugin_static_assets/CHANGELOG.md +++ b/crates/plugin_static_assets/CHANGELOG.md @@ -6,6 +6,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.12](https://github.com/farm-fe/farm/compare/farmfe_plugin_static_assets-v0.0.11...farmfe_plugin_static_assets-v0.0.12) - 2024-10-28 + +### Added + +- add assets mode for asset path generate ([#1852](https://github.com/farm-fe/farm/pull/1852)) + +### Fixed + +- css resolving issue ([#1834](https://github.com/farm-fe/farm/pull/1834)) + +### Other + +- simplify string formatting for readability ([#1828](https://github.com/farm-fe/farm/pull/1828)) +- remove `query_string` when `emit_file` to `resource_map` in `plugin_static_assets` ([#1746](https://github.com/farm-fe/farm/pull/1746)) + ## [0.0.11](https://github.com/farm-fe/farm/compare/farmfe_plugin_static_assets-v0.0.10...farmfe_plugin_static_assets-v0.0.11) - 2024-07-25 ### Added diff --git a/crates/plugin_static_assets/Cargo.toml b/crates/plugin_static_assets/Cargo.toml index 0844d47a0..f50af2209 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.11" +version = "0.0.12" edition = "2021" authors = ["brightwu(吴明亮) <1521488775@qq.com>"] license = "MIT" @@ -10,10 +10,10 @@ repository = "https://github.com/farm-fe/farm" documentation = "https://docs.rs/farmfe_plugin_static_assets" [dependencies] -farmfe_core = { path = "../core", version = "0.6.4" } -farmfe_toolkit = { path = "../toolkit", version = "0.0.13" } -farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.13" } -farmfe_utils = { path = "../utils", version = "0.1.5" } +farmfe_core = { path = "../core", version = "0.7.0" } +farmfe_toolkit = { path = "../toolkit", version = "0.0.14" } +farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.14" } +farmfe_utils = { path = "../utils", version = "0.1.6" } base64 = "0.21.0" rkyv = { version = "0.7.42" } mime_guess = "2.0.4" diff --git a/crates/plugin_tree_shake/CHANGELOG.md b/crates/plugin_tree_shake/CHANGELOG.md index 8735e98c2..9d9a15f81 100644 --- a/crates/plugin_tree_shake/CHANGELOG.md +++ b/crates/plugin_tree_shake/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.11](https://github.com/farm-fe/farm/compare/farmfe_plugin_tree_shake-v0.0.10...farmfe_plugin_tree_shake-v0.0.11) - 2024-10-28 + +### Other + +- simplify string formatting for readability ([#1828](https://github.com/farm-fe/farm/pull/1828)) + ## [0.0.10](https://github.com/farm-fe/farm/compare/farmfe_plugin_tree_shake-v0.0.9...farmfe_plugin_tree_shake-v0.0.10) - 2024-07-25 ### Other diff --git a/crates/plugin_tree_shake/Cargo.toml b/crates/plugin_tree_shake/Cargo.toml index 72baa58f4..f193473ec 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.10" +version = "0.0.11" edition = "2021" authors = ["brightwu(吴明亮) <1521488775@qq.com>"] license = "MIT" @@ -10,10 +10,10 @@ repository = "https://github.com/farm-fe/farm" documentation = "https://docs.rs/farmfe_plugin_tree_shake" [dependencies] -farmfe_core = { path = "../core", version = "0.6.4" } -farmfe_toolkit = { path = "../toolkit", version = "0.0.13" } -farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.13" } -farmfe_utils = { path = "../utils", version = "0.1.5" } +farmfe_core = { path = "../core", version = "0.7.0" } +farmfe_toolkit = { path = "../toolkit", version = "0.0.14" } +farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.14" } +farmfe_utils = { path = "../utils", version = "0.1.6" } [features] profile = ["farmfe_core/profile"] diff --git a/crates/swc_transformer_import_glob/CHANGELOG.md b/crates/swc_transformer_import_glob/CHANGELOG.md index 59120bebd..807253f50 100644 --- a/crates/swc_transformer_import_glob/CHANGELOG.md +++ b/crates/swc_transformer_import_glob/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.12](https://github.com/farm-fe/farm/compare/farmfe_swc_transformer_import_glob-v0.0.11...farmfe_swc_transformer_import_glob-v0.0.12) - 2024-10-28 + +### Other + +- simplify string formatting for readability ([#1828](https://github.com/farm-fe/farm/pull/1828)) + ## [0.0.11](https://github.com/farm-fe/farm/compare/farmfe_swc_transformer_import_glob-v0.0.10...farmfe_swc_transformer_import_glob-v0.0.11) - 2024-07-25 ### Other diff --git a/crates/swc_transformer_import_glob/Cargo.toml b/crates/swc_transformer_import_glob/Cargo.toml index b51cf1eeb..74c6b330d 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.11" +version = "0.0.12" 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.6.4" } -farmfe_toolkit = { path = "../toolkit", version = "0.0.13" } -farmfe_utils = { path = "../utils", version = "0.1.5" } -farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.13" } +farmfe_core = { path = "../core", version = "0.7.0" } +farmfe_toolkit = { path = "../toolkit", version = "0.0.14" } +farmfe_utils = { path = "../utils", version = "0.1.6" } +farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.14" } diff --git a/crates/testing_helpers/CHANGELOG.md b/crates/testing_helpers/CHANGELOG.md index a2c122203..8464bef0c 100644 --- a/crates/testing_helpers/CHANGELOG.md +++ b/crates/testing_helpers/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.14](https://github.com/farm-fe/farm/compare/farmfe_testing_helpers-v0.0.13...farmfe_testing_helpers-v0.0.14) - 2024-10-28 + +### Other + +- simplify string formatting for readability ([#1828](https://github.com/farm-fe/farm/pull/1828)) + ## [0.0.13](https://github.com/farm-fe/farm/compare/farmfe_testing_helpers-v0.0.12...farmfe_testing_helpers-v0.0.13) - 2024-07-25 ### Other diff --git a/crates/testing_helpers/Cargo.toml b/crates/testing_helpers/Cargo.toml index 52307e4bc..1fe3ef814 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.13" +version = "0.0.14" 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.6.4" } +farmfe_core = { path = "../core", version = "0.7.0" } diff --git a/crates/toolkit/CHANGELOG.md b/crates/toolkit/CHANGELOG.md index 23198d784..e8462e9a3 100644 --- a/crates/toolkit/CHANGELOG.md +++ b/crates/toolkit/CHANGELOG.md @@ -6,6 +6,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.14](https://github.com/farm-fe/farm/compare/farmfe_toolkit-v0.0.13...farmfe_toolkit-v0.0.14) - 2024-10-28 + +### Fixed + +- css resolving issue ([#1834](https://github.com/farm-fe/farm/pull/1834)) +- invalid css [#1748](https://github.com/farm-fe/farm/pull/1748) and [#1557](https://github.com/farm-fe/farm/pull/1557) ([#1823](https://github.com/farm-fe/farm/pull/1823)) +- arcgis lazy compile fail ([#1750](https://github.com/farm-fe/farm/pull/1750)) +- ignore non-utf8 error when getting file contents ([#1799](https://github.com/farm-fe/farm/pull/1799)) +- preset_env plugin match and module system `analyze` ([#1751](https://github.com/farm-fe/farm/pull/1751)) +- globalThis undefined ([#1726](https://github.com/farm-fe/farm/pull/1726)) +- [#1672](https://github.com/farm-fe/farm/pull/1672) ([#1692](https://github.com/farm-fe/farm/pull/1692)) + +### Other + +- revert change of replacing invalid css ([#1831](https://github.com/farm-fe/farm/pull/1831)) +- simplify string formatting for readability ([#1828](https://github.com/farm-fe/farm/pull/1828)) + ## [0.0.13](https://github.com/farm-fe/farm/compare/farmfe_toolkit-v0.0.12...farmfe_toolkit-v0.0.13) - 2024-07-25 ### Other diff --git a/crates/toolkit/Cargo.toml b/crates/toolkit/Cargo.toml index 83df54f5c..76e2add84 100644 --- a/crates/toolkit/Cargo.toml +++ b/crates/toolkit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "farmfe_toolkit" -version = "0.0.13" +version = "0.0.14" 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.6.4" } -farmfe_utils = { path = "../utils", version = "0.1.5" } -farmfe_toolkit_plugin_types = { path = "../toolkit_plugin_types", version = "0.0.20" } -farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.13" } +farmfe_core = { path = "../core", version = "0.7.0" } +farmfe_utils = { path = "../utils", version = "0.1.6" } +farmfe_toolkit_plugin_types = { path = "../toolkit_plugin_types", version = "0.0.21" } +farmfe_testing_helpers = { path = "../testing_helpers", version = "0.0.14" } swc_ecma_parser = { version = "0.146.12" } swc_ecma_visit = { version = "0.101.0" } swc_ecma_codegen = { version = "0.151.1" } diff --git a/crates/toolkit_plugin_types/CHANGELOG.md b/crates/toolkit_plugin_types/CHANGELOG.md index bb62269e2..bba4646f8 100644 --- a/crates/toolkit_plugin_types/CHANGELOG.md +++ b/crates/toolkit_plugin_types/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.21](https://github.com/farm-fe/farm/compare/farmfe_toolkit_plugin_types-v0.0.20...farmfe_toolkit_plugin_types-v0.0.21) - 2024-10-28 + +### Other + +- updated the following local packages: farmfe_core + ## [0.0.20](https://github.com/farm-fe/farm/compare/farmfe_toolkit_plugin_types-v0.0.19...farmfe_toolkit_plugin_types-v0.0.20) - 2024-07-25 ### Other diff --git a/crates/toolkit_plugin_types/Cargo.toml b/crates/toolkit_plugin_types/Cargo.toml index 125f85cdb..9dc70d2c7 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.20" +version = "0.0.21" edition = "2021" authors = ["brightwu(吴明亮) <1521488775@qq.com>"] license = "MIT" description = "builtin tooltips for farm plugins" [dependencies] -farmfe_core = { version = "0.6.4", path = "../core" } +farmfe_core = { version = "0.7.0", path = "../core" } lazy_static = "1.4.0" libloading = "0.7.0" diff --git a/crates/utils/CHANGELOG.md b/crates/utils/CHANGELOG.md index e0a432bf7..4f0285051 100644 --- a/crates/utils/CHANGELOG.md +++ b/crates/utils/CHANGELOG.md @@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.6](https://github.com/farm-fe/farm/compare/farmfe_utils-v0.1.5...farmfe_utils-v0.1.6) - 2024-10-28 + +### Fixed + +- single bundle ([#1653](https://github.com/farm-fe/farm/pull/1653)) + +### Other + +- simplify string formatting for readability ([#1828](https://github.com/farm-fe/farm/pull/1828)) + ## [0.1.5](https://github.com/farm-fe/farm/compare/farmfe_utils-v0.1.4...farmfe_utils-v0.1.5) - 2024-07-11 ### Added diff --git a/crates/utils/Cargo.toml b/crates/utils/Cargo.toml index 91ced0eff..ace89b9e6 100644 --- a/crates/utils/Cargo.toml +++ b/crates/utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "farmfe_utils" -version = "0.1.5" +version = "0.1.6" edition = "2021" authors = ["brightwwu(吴明亮) <1521488775@qq.com>"] description = "farm utils" diff --git a/packages/create-farm/CHANGELOG.md b/packages/create-farm/CHANGELOG.md index 585fda82a..7fdffe8b4 100644 --- a/packages/create-farm/CHANGELOG.md +++ b/packages/create-farm/CHANGELOG.md @@ -53,13 +53,21 @@ ### Patch Changes - 068c3ea5: support more frameworks electron, tauri, nestjs - All notable changes to this project will be documented in this file. +All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [0.1.3](https://github.com/farm-fe/farm/compare/create_farm_node-v0.1.2...create_farm_node-v0.1.3) - 2024-10-28 + +### Other + +- Version Packages ([#1722](https://github.com/farm-fe/farm/pull/1722)) +- Version Packages ([#1703](https://github.com/farm-fe/farm/pull/1703)) +- *(create-farm)* add multiple platforms ([#1689](https://github.com/farm-fe/farm/pull/1689)) + ## [0.1.2](https://github.com/farm-fe/farm/compare/create_farm_node-v0.1.1...create_farm_node-v0.1.2) - 2024-07-19 ### Other diff --git a/packages/create-farm/Cargo.toml b/packages/create-farm/Cargo.toml index bdf65f98f..8ad0b9a1b 100644 --- a/packages/create-farm/Cargo.toml +++ b/packages/create-farm/Cargo.toml @@ -1,7 +1,7 @@ [package] edition = "2021" name = "create_farm_node" -version = "0.1.2" +version = "0.1.3" authors = ["Erkelost"] license = "MIT" description = "Create Farm cli tool" @@ -19,7 +19,7 @@ napi = { version = "2.15.2", default-features = false, features = [ "serde-json", ] } napi-derive = "2.15.2" -create-farm = { version = "0.1.2", path = "../../crates/create-farm-rs" } +create-farm = { version = "0.1.3", path = "../../crates/create-farm-rs" } [build-dependencies] napi-build = "2.0.1"