From 273594be154e08457862f12fe6e9e95435509eb5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 29 Aug 2024 11:44:38 +0000 Subject: [PATCH] chore: release --- Cargo.lock | 84 +++++++++---------- crates/bench/CHANGELOG.md | 12 +++ crates/bench/Cargo.toml | 6 +- crates/compiler/CHANGELOG.md | 11 +++ crates/compiler/Cargo.toml | 40 ++++----- crates/core/CHANGELOG.md | 8 ++ crates/core/Cargo.toml | 4 +- crates/create-farm-rs/CHANGELOG.md | 9 ++ crates/create-farm-rs/Cargo.toml | 2 +- crates/plugin_bundle/CHANGELOG.md | 7 ++ crates/plugin_bundle/Cargo.toml | 10 +-- crates/plugin_css/CHANGELOG.md | 5 ++ crates/plugin_css/Cargo.toml | 10 +-- crates/plugin_define/CHANGELOG.md | 5 ++ crates/plugin_define/Cargo.toml | 10 +-- crates/plugin_html/CHANGELOG.md | 6 ++ crates/plugin_html/Cargo.toml | 8 +- crates/plugin_json/CHANGELOG.md | 5 ++ crates/plugin_json/Cargo.toml | 8 +- crates/plugin_lazy_compilation/CHANGELOG.md | 7 ++ crates/plugin_lazy_compilation/Cargo.toml | 10 +-- crates/plugin_minify/CHANGELOG.md | 5 ++ crates/plugin_minify/Cargo.toml | 8 +- crates/plugin_partial_bundling/CHANGELOG.md | 5 ++ crates/plugin_partial_bundling/Cargo.toml | 8 +- crates/plugin_polyfill/CHANGELOG.md | 6 ++ crates/plugin_polyfill/Cargo.toml | 8 +- crates/plugin_progress/CHANGELOG.md | 5 ++ crates/plugin_progress/Cargo.toml | 6 +- crates/plugin_resolve/CHANGELOG.md | 5 ++ crates/plugin_resolve/Cargo.toml | 10 +-- crates/plugin_runtime/CHANGELOG.md | 7 ++ crates/plugin_runtime/Cargo.toml | 10 +-- crates/plugin_script/CHANGELOG.md | 6 ++ crates/plugin_script/Cargo.toml | 12 +-- crates/plugin_static_assets/CHANGELOG.md | 5 ++ crates/plugin_static_assets/Cargo.toml | 10 +-- crates/plugin_tree_shake/CHANGELOG.md | 5 ++ crates/plugin_tree_shake/Cargo.toml | 10 +-- .../swc_transformer_import_glob/CHANGELOG.md | 5 ++ crates/swc_transformer_import_glob/Cargo.toml | 10 +-- crates/testing_helpers/CHANGELOG.md | 5 ++ crates/testing_helpers/Cargo.toml | 4 +- crates/toolkit/CHANGELOG.md | 7 ++ crates/toolkit/Cargo.toml | 10 +-- crates/toolkit_plugin_types/CHANGELOG.md | 5 ++ crates/toolkit_plugin_types/Cargo.toml | 4 +- crates/utils/CHANGELOG.md | 5 ++ crates/utils/Cargo.toml | 2 +- packages/create-farm/CHANGELOG.md | 9 +- packages/create-farm/Cargo.toml | 4 +- 51 files changed, 313 insertions(+), 155 deletions(-) create mode 100644 crates/bench/CHANGELOG.md diff --git a/Cargo.lock b/Cargo.lock index 10880d7987..b86497e77a 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 0000000000..dfbd9240ea --- /dev/null +++ b/crates/bench/CHANGELOG.md @@ -0,0 +1,12 @@ +# 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-08-29 + +### Other +- updated the following local packages: farmfe_compiler, farmfe_core diff --git a/crates/bench/Cargo.toml b/crates/bench/Cargo.toml index ac3f36ede6..02a477212a 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 abdabfad8b..2f5156156a 100644 --- a/crates/compiler/CHANGELOG.md +++ b/crates/compiler/CHANGELOG.md @@ -6,6 +6,17 @@ 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-08-29 + +### Fixed +- 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 +- 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 bb21e3892a..e4f7259a17 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 c2d473e2e9..9bd60eb7f4 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.7.0](https://github.com/farm-fe/farm/compare/farmfe_core-v0.6.4...farmfe_core-v0.7.0) - 2024-08-29 + +### Fixed +- 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)) + ## [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 99c8b47446..6760a9e949 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 dea4b27842..1f4fb3ed3b 100644 --- a/crates/create-farm-rs/CHANGELOG.md +++ b/crates/create-farm-rs/CHANGELOG.md @@ -6,6 +6,15 @@ 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-08-29 + +### Added +- *(cli)* support re-prompt project name ([#1732](https://github.com/farm-fe/farm/pull/1732)) + +### Other +- *(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 bced5375fe..a8feb4f8cb 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 78062d963a..5f46c682e7 100644 --- a/crates/plugin_bundle/CHANGELOG.md +++ b/crates/plugin_bundle/CHANGELOG.md @@ -6,6 +6,13 @@ 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-08-29 + +### Fixed +- 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)) + ## [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 4b394992e8..ad06f5f429 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 162fe0fa75..2195af88e0 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.14](https://github.com/farm-fe/farm/compare/farmfe_plugin_css-v0.0.13...farmfe_plugin_css-v0.0.14) - 2024-08-29 + +### Other +- updated the following local packages: farmfe_core, farmfe_utils, farmfe_toolkit + ## [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 52ef7675c1..5432932b84 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 607412aeb7..6b99f64a6b 100644 --- a/crates/plugin_define/CHANGELOG.md +++ b/crates/plugin_define/CHANGELOG.md @@ -6,6 +6,11 @@ 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-08-29 + +### Other +- updated the following local packages: farmfe_core, farmfe_utils, 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 579647c25b..597342935d 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 40c063c7af..d230c51e54 100644 --- a/crates/plugin_html/CHANGELOG.md +++ b/crates/plugin_html/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_html-v0.0.11...farmfe_plugin_html-v0.0.12) - 2024-08-29 + +### Fixed +- 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)) + ## [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 13c7250e8f..d99ce6010c 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 e7269b59a8..1d56093751 100644 --- a/crates/plugin_json/CHANGELOG.md +++ b/crates/plugin_json/CHANGELOG.md @@ -6,6 +6,11 @@ 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-08-29 + +### Other +- updated the following local packages: farmfe_core, farmfe_toolkit + ## [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 9b335ba140..b38578be5f 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 46c420e878..9c7b2b5ec3 100644 --- a/crates/plugin_lazy_compilation/CHANGELOG.md +++ b/crates/plugin_lazy_compilation/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_lazy_compilation-v0.0.11...farmfe_plugin_lazy_compilation-v0.0.12) - 2024-08-29 + +### Fixed +- 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)) + ## [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 cc8162ec52..d03e1ce06d 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 28a148f5cd..30cbcc369f 100644 --- a/crates/plugin_minify/CHANGELOG.md +++ b/crates/plugin_minify/CHANGELOG.md @@ -6,6 +6,11 @@ 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-08-29 + +### Fixed +- [#1672](https://github.com/farm-fe/farm/pull/1672) ([#1692](https://github.com/farm-fe/farm/pull/1692)) + ## [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 6f75819cb0..e37a26ad64 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 6d089fbe95..a258c79992 100644 --- a/crates/plugin_partial_bundling/CHANGELOG.md +++ b/crates/plugin_partial_bundling/CHANGELOG.md @@ -6,6 +6,11 @@ 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-08-29 + +### Other +- updated the following local packages: farmfe_core, farmfe_toolkit + ## [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 8c12c6c46c..f51128abd0 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 2544fba362..dfb943eed0 100644 --- a/crates/plugin_polyfill/CHANGELOG.md +++ b/crates/plugin_polyfill/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_polyfill-v0.0.11...farmfe_plugin_polyfill-v0.0.12) - 2024-08-29 + +### 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 1e47dd1b97..0d60efa7b6 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 9ba716a323..42b8a324d0 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.12](https://github.com/farm-fe/farm/compare/farmfe_plugin_progress-v0.0.11...farmfe_plugin_progress-v0.0.12) - 2024-08-29 + +### Other +- updated the following local packages: farmfe_core + ## [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 275fbc93af..7b4ef8cd8c 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 fdbc0eb659..0070704ba7 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.12](https://github.com/farm-fe/farm/compare/farmfe_plugin_resolve-v0.0.11...farmfe_plugin_resolve-v0.0.12) - 2024-08-29 + +### Other +- updated the following local packages: farmfe_core, farmfe_utils, farmfe_toolkit + ## [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 3a96d14440..8c344319f1 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 7c33b1cc8e..8d4d38b0e8 100644 --- a/crates/plugin_runtime/CHANGELOG.md +++ b/crates/plugin_runtime/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_runtime-v0.0.11...farmfe_plugin_runtime-v0.0.12) - 2024-08-29 + +### Fixed +- 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)) + ## [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 111779fbc4..e35f851d2b 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 cfbda5a2e4..1820ac3d7a 100644 --- a/crates/plugin_script/CHANGELOG.md +++ b/crates/plugin_script/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_script-v0.0.10...farmfe_plugin_script-v0.0.11) - 2024-08-29 + +### 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)) + ## [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 3dc12b3c98..8c8f26bdfa 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 5e86becddb..cc2f9f5cf5 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.12](https://github.com/farm-fe/farm/compare/farmfe_plugin_static_assets-v0.0.11...farmfe_plugin_static_assets-v0.0.12) - 2024-08-29 + +### Other +- 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 0844d47a0d..f50af22097 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 8735e98c20..1029d7f4e1 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.11](https://github.com/farm-fe/farm/compare/farmfe_plugin_tree_shake-v0.0.10...farmfe_plugin_tree_shake-v0.0.11) - 2024-08-29 + +### Other +- updated the following local packages: farmfe_core, farmfe_utils, farmfe_toolkit + ## [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 72baa58f4f..f193473ec5 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 59120bebd0..21b3627c8d 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.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-08-29 + +### Other +- updated the following local packages: farmfe_core, farmfe_utils, farmfe_toolkit + ## [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 b51cf1eeb9..74c6b330d7 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 a2c122203a..f417226541 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.14](https://github.com/farm-fe/farm/compare/farmfe_testing_helpers-v0.0.13...farmfe_testing_helpers-v0.0.14) - 2024-08-29 + +### Other +- updated the following local packages: farmfe_core + ## [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 52307e4bc7..1fe3ef8148 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 23198d7841..050a573b0f 100644 --- a/crates/toolkit/CHANGELOG.md +++ b/crates/toolkit/CHANGELOG.md @@ -6,6 +6,13 @@ 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-08-29 + +### Fixed +- 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)) + ## [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 83df54f5c8..76e2add84d 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 bb62269e26..5b0f26b454 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.21](https://github.com/farm-fe/farm/compare/farmfe_toolkit_plugin_types-v0.0.20...farmfe_toolkit_plugin_types-v0.0.21) - 2024-08-29 + +### 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 125f85cdbe..9dc70d2c72 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 e0a432bf70..2f3005fa3d 100644 --- a/crates/utils/CHANGELOG.md +++ b/crates/utils/CHANGELOG.md @@ -6,6 +6,11 @@ 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-08-29 + +### Fixed +- single bundle ([#1653](https://github.com/farm-fe/farm/pull/1653)) + ## [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 91ced0eff2..ace89b9e68 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 585fda82a2..e4dd3d6b7d 100644 --- a/packages/create-farm/CHANGELOG.md +++ b/packages/create-farm/CHANGELOG.md @@ -53,13 +53,20 @@ ### 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-08-29 + +### 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 bdf65f98f6..8ad0b9a1bb 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"