Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release #1737

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

Conversation

github-actions[bot]
Copy link
Contributor

@github-actions github-actions bot commented Aug 23, 2024

🤖 New release

  • farmfe_bench: 0.0.1 -> 0.0.2
  • farmfe_compiler: 0.0.11 -> 0.0.12 (⚠️ API breaking changes)
  • farmfe_core: 0.6.4 -> 0.7.0 (⚠️ API breaking changes)
  • farmfe_utils: 0.1.5 -> 0.1.6 (✓ API compatible changes)
  • farmfe_plugin_bundle: 0.0.5 -> 0.0.6 (⚠️ API breaking changes)
  • farmfe_testing_helpers: 0.0.13 -> 0.0.14 (✓ API compatible changes)
  • farmfe_toolkit: 0.0.13 -> 0.0.14 (⚠️ API breaking changes)
  • farmfe_plugin_css: 0.0.13 -> 0.0.14 (✓ API compatible changes)
  • farmfe_plugin_html: 0.0.11 -> 0.0.12 (✓ API compatible changes)
  • farmfe_plugin_json: 0.0.11 -> 0.0.12 (✓ API compatible changes)
  • farmfe_plugin_lazy_compilation: 0.0.11 -> 0.0.12 (✓ API compatible changes)
  • farmfe_plugin_minify: 0.0.11 -> 0.0.12 (✓ API compatible changes)
  • farmfe_plugin_partial_bundling: 0.0.11 -> 0.0.12 (✓ API compatible changes)
  • farmfe_plugin_polyfill: 0.0.11 -> 0.0.12 (✓ API compatible changes)
  • farmfe_plugin_resolve: 0.0.11 -> 0.0.12 (✓ API compatible changes)
  • farmfe_plugin_runtime: 0.0.11 -> 0.0.12 (✓ API compatible changes)
  • farmfe_plugin_script: 0.0.10 -> 0.0.11 (✓ API compatible changes)
  • farmfe_swc_transformer_import_glob: 0.0.11 -> 0.0.12 (✓ API compatible changes)
  • farmfe_plugin_static_assets: 0.0.11 -> 0.0.12 (⚠️ API breaking changes)
  • farmfe_plugin_tree_shake: 0.0.10 -> 0.0.11 (✓ API compatible changes)
  • create-farm: 0.1.2 -> 0.1.3 (✓ API compatible changes)
  • create_farm_node: 0.1.2 -> 0.1.3
  • farmfe_toolkit_plugin_types: 0.0.20 -> 0.0.21
  • farmfe_plugin_define: 0.0.11 -> 0.0.12
  • farmfe_plugin_progress: 0.0.11 -> 0.0.12

⚠️ farmfe_compiler breaking changes

--- failure function_missing: pub fn removed or renamed ---

Description:
A publicly-visible function cannot be imported by its prior path. A `pub use` may have been removed, or the function itself may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/function_missing.ron

Failed in:
  function farmfe_compiler::build::validate_config::validate_config, previously in file /tmp/.tmp4ZN0SB/farmfe_compiler/src/build/validate_config.rs:5

--- failure module_missing: pub module removed or renamed ---

Description:
A publicly-visible module cannot be imported by its prior path. A `pub use` may have been removed, or the module may have been renamed, removed, or made non-public.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/module_missing.ron

Failed in:
  mod farmfe_compiler::build::validate_config, previously in file /tmp/.tmp4ZN0SB/farmfe_compiler/src/build/validate_config.rs:1

⚠️ farmfe_core breaking changes

--- failure auto_trait_impl_removed: auto trait no longer implemented ---

Description:
A public type has stopped implementing one or more auto traits. This can break downstream code that depends on the traits being implemented.
        ref: https://doc.rust-lang.org/reference/special-types-and-traits.html#auto-traits
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/auto_trait_impl_removed.ron

Failed in:
  type Stats is no longer RefUnwindSafe, in /tmp/.tmpQ7XmcA/farm/crates/core/src/stats/mod.rs:13

--- failure constructible_struct_adds_field: externally-constructible struct adds field ---

Description:
A pub struct constructible with a struct literal has a new pub field. Existing struct literals must be updated to include the new field.
        ref: https://doc.rust-lang.org/reference/expressions/struct-expr.html
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/constructible_struct_adds_field.ron

Failed in:
  field Stats.initial_compilation_flow_stats in /tmp/.tmpQ7XmcA/farm/crates/core/src/stats/mod.rs:15
  field Stats.hmr_compilation_flow_stats in /tmp/.tmpQ7XmcA/farm/crates/core/src/stats/mod.rs:17

--- failure enum_missing: pub enum removed or renamed ---

Description:
A publicly-visible enum cannot be imported by its prior path. A `pub use` may have been removed, or the enum itself may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/enum_missing.ron

Failed in:
  enum farmfe_core::record::Trigger, previously in file /tmp/.tmp4ZN0SB/farmfe_core/src/record/mod.rs:12

--- failure enum_variant_added: enum variant added on exhaustive enum ---

Description:
A publicly-visible enum without #[non_exhaustive] has a new variant.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#enum-variant-new
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/enum_variant_added.ron

Failed in:
  variant ArchivedModuleSystem:UnInitial in /tmp/.tmpQ7XmcA/farm/crates/core/src/module/mod.rs:410
  variant ModuleSystemResolver:UnInitial in /tmp/.tmpQ7XmcA/farm/crates/core/src/module/mod.rs:410
  variant ModuleSystem:UnInitial in /tmp/.tmpQ7XmcA/farm/crates/core/src/module/mod.rs:410

--- failure module_missing: pub module removed or renamed ---

Description:
A publicly-visible module cannot be imported by its prior path. A `pub use` may have been removed, or the module may have been renamed, removed, or made non-public.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/module_missing.ron

Failed in:
  mod farmfe_core::record, previously in file /tmp/.tmp4ZN0SB/farmfe_core/src/record/mod.rs:1

--- failure struct_missing: pub struct removed or renamed ---

Description:
A publicly-visible struct cannot be imported by its prior path. A `pub use` may have been removed, or the struct itself may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/struct_missing.ron

Failed in:
  struct farmfe_core::record::PluginStats, previously in file /tmp/.tmp4ZN0SB/farmfe_core/src/record/mod.rs:243
  struct farmfe_core::record::ResolveRecord, previously in file /tmp/.tmp4ZN0SB/farmfe_core/src/record/mod.rs:185
  struct farmfe_core::record::TransformRecord, previously in file /tmp/.tmp4ZN0SB/farmfe_core/src/record/mod.rs:198
  struct farmfe_core::record::RecordManager, previously in file /tmp/.tmp4ZN0SB/farmfe_core/src/record/mod.rs:18
  struct farmfe_core::record::ModuleRecord, previously in file /tmp/.tmp4ZN0SB/farmfe_core/src/record/mod.rs:211
  struct farmfe_core::record::ResourcePotRecord, previously in file /tmp/.tmp4ZN0SB/farmfe_core/src/record/mod.rs:234
  struct farmfe_core::record::AnalyzeDepsRecord, previously in file /tmp/.tmp4ZN0SB/farmfe_core/src/record/mod.rs:222
  struct farmfe_core::config::AssetsConfig, previously in file /tmp/.tmp4ZN0SB/farmfe_core/src/config/mod.rs:297

⚠️ farmfe_plugin_bundle breaking changes

--- failure enum_variant_added: enum variant added on exhaustive enum ---

Description:
A publicly-visible enum without #[non_exhaustive] has a new variant.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#enum-variant-new
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/enum_variant_added.ron

Failed in:
  variant Polyfill:NodeEsmGlobalRequireHelper in /tmp/.tmpQ7XmcA/farm/crates/plugin_bundle/src/resource_pot_to_bundle/polyfill/mod.rs:67
  variant Polyfill:BrowserExternalRequire in /tmp/.tmpQ7XmcA/farm/crates/plugin_bundle/src/resource_pot_to_bundle/polyfill/mod.rs:77

--- failure method_parameter_count_changed: pub method parameter count changed ---

Description:
A publicly-visible method now takes a different number of parameters.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#fn-change-arity
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/method_parameter_count_changed.ron

Failed in:
  farmfe_plugin_bundle::resource_pot_to_bundle::BundleAnalyzer::codegen now takes 3 parameters instead of 2, in /tmp/.tmpQ7XmcA/farm/crates/plugin_bundle/src/resource_pot_to_bundle/bundle/bundle_analyzer.rs:994

⚠️ farmfe_toolkit breaking changes

--- failure function_parameter_count_changed: pub fn parameter count changed ---

Description:
A publicly-visible function now takes a different number of parameters.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#fn-change-arity
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/function_parameter_count_changed.ron

Failed in:
  farmfe_toolkit::html::get_farm_global_this now takes 2 parameters instead of 1, in /tmp/.tmpQ7XmcA/farm/crates/toolkit/src/html/mod.rs:123

⚠️ farmfe_plugin_static_assets breaking changes

--- failure constructible_struct_adds_private_field: struct no longer constructible due to new private field ---

Description:
A struct constructible with a struct literal has a new non-public field. It can no longer be constructed using a struct literal outside of its crate.
        ref: https://doc.rust-lang.org/reference/expressions/struct-expr.html
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.36.0/src/lints/constructible_struct_adds_private_field.ron

Failed in:
  field FarmPluginStaticAssets.asset_format_mode in /tmp/.tmpQ7XmcA/farm/crates/plugin_static_assets/src/lib.rs:47
Changelog

farmfe_bench

0.0.2 - 2024-10-27

Other

  • simplify string formatting for readability (#1828)

farmfe_compiler

0.0.12 - 2024-10-27

Fixed

  • css resolving issue (#1834)
  • namespace import MemberProp name failed (#1826)
  • lazy compilation cache && postcss tailwind does not work on windows (#1808)
  • arcgis lazy compile fail (#1750)
  • html runtime inject failed when build multiple page (#1760)
  • globalThis undefined (#1726)
  • #1672 (#1692)
  • bundle import namespace name uniq (#1696)
  • single bundle (#1653)

Other

  • simplify string formatting for readability (#1828)
  • (refactor) refactor stats and visualizer (#1739)
  • remove query_string when emit_file to resource_map in plugin_static_assets (#1746)

farmfe_core

0.7.0 - 2024-10-27

Added

  • add assets mode for asset path generate (#1852)
  • (css) support css module name coversion (#1784)
  • support resolve dedupe (#1762)

Fixed

  • lazy compilation cache && postcss tailwind does not work on windows (#1808)
  • arcgis lazy compile fail (#1750)
  • preset_env plugin match and module system analyze (#1751)
  • globalThis undefined (#1726)
  • #1672 (#1692)
  • single bundle (#1653)

Other

  • revert change of replacing invalid css (#1831)
  • simplify string formatting for readability (#1828)
  • (refactor) refactor stats and visualizer (#1739)

farmfe_utils

0.1.6 - 2024-10-27

Fixed

Other

  • simplify string formatting for readability (#1828)

farmfe_plugin_bundle

0.0.6 - 2024-10-27

Fixed

  • namespace import MemberProp name failed (#1826)
  • globalThis undefined (#1726)
  • bundle import namespace name uniq (#1696)
  • single bundle (#1653)

Other

  • simplify string formatting for readability (#1828)

farmfe_testing_helpers

0.0.14 - 2024-10-27

Other

  • simplify string formatting for readability (#1828)

farmfe_toolkit

0.0.14 - 2024-10-27

Fixed

  • css resolving issue (#1834)
  • invalid css #1748 and #1557 (#1823)
  • arcgis lazy compile fail (#1750)
  • ignore non-utf8 error when getting file contents (#1799)
  • preset_env plugin match and module system analyze (#1751)
  • globalThis undefined (#1726)
  • #1672 (#1692)

Other

  • revert change of replacing invalid css (#1831)
  • simplify string formatting for readability (#1828)

farmfe_plugin_css

0.0.14 - 2024-10-27

Added

  • (css) support css module name coversion (#1784)

Fixed

Other

  • revert change of replacing invalid css (#1831)
  • simplify string formatting for readability (#1828)

farmfe_plugin_html

0.0.12 - 2024-10-27

Fixed

  • html runtime inject failed when build multiple page (#1760)
  • globalThis undefined (#1726)
  • #1672 (#1692)

Other

  • simplify string formatting for readability (#1828)

farmfe_plugin_json

0.0.12 - 2024-10-27

Other

  • simplify string formatting for readability (#1828)

farmfe_plugin_lazy_compilation

0.0.12 - 2024-10-27

Fixed

Other

  • simplify string formatting for readability (#1828)

farmfe_plugin_minify

0.0.12 - 2024-10-27

Fixed

Other

  • simplify string formatting for readability (#1828)

farmfe_plugin_partial_bundling

0.0.12 - 2024-10-27

Other

  • simplify string formatting for readability (#1828)

farmfe_plugin_polyfill

0.0.12 - 2024-10-27

Fixed

  • revert preset-env match & add enforce exclude (#1752)
  • preset_env plugin match and module system analyze (#1751)

farmfe_plugin_resolve

0.0.12 - 2024-10-27

Added

  • support resolve dedupe (#1762)

Other

  • simplify string formatting for readability (#1828)

farmfe_plugin_runtime

0.0.12 - 2024-10-27

Fixed

Other

  • simplify string formatting for readability (#1828)
  • (refactor) refactor stats and visualizer (#1739)

farmfe_plugin_script

0.0.11 - 2024-10-27

Fixed

Other

  • simplify string formatting for readability (#1828)

farmfe_swc_transformer_import_glob

0.0.12 - 2024-10-27

Other

  • simplify string formatting for readability (#1828)

farmfe_plugin_static_assets

0.0.12 - 2024-10-27

Added

  • add assets mode for asset path generate (#1852)

Fixed

  • css resolving issue (#1834)

Other

  • simplify string formatting for readability (#1828)
  • remove query_string when emit_file to resource_map in plugin_static_assets (#1746)

farmfe_plugin_tree_shake

0.0.11 - 2024-10-27

Other

  • simplify string formatting for readability (#1828)

create-farm

0.1.3 - 2024-10-27

Added

  • (cli) support re-prompt project name (#1732)

Other

  • simplify string formatting for readability (#1828)
  • (create-farm) update README for vanilla template (#1724)
  • (create-farm) rewrite create-farm (#1700)

create_farm_node

0.0.14

Patch Changes

  • ee7ea4e: Fix tauri development command in create-farm
  • ee7ea4e: Refactor create-farm prompts
  • ee7ea4e: Fix supported templates display
  • ee7ea4e: Auto rewrite template project name in create-farm
  • ee7ea4e: Support create-farm to run with --force

farmfe_toolkit_plugin_types

0.0.21 - 2024-10-27

Other

  • updated the following local packages: farmfe_core

farmfe_plugin_define

0.0.12 - 2024-10-27

Other

  • updated the following local packages: farmfe_core, farmfe_utils, farmfe_testing_helpers, farmfe_toolkit

farmfe_plugin_progress

0.0.12 - 2024-10-27

Other

  • updated the following local packages: farmfe_core, farmfe_testing_helpers


This PR was generated with release-plz.

Copy link

changeset-bot bot commented Aug 23, 2024

⚠️ No Changeset found

Latest commit: b5f771c

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@github-actions github-actions bot force-pushed the release-plz-2024-08-23T12-47-27Z branch 10 times, most recently from 6d9efaf to 273594b Compare August 29, 2024 11:44
@github-actions github-actions bot force-pushed the release-plz-2024-08-23T12-47-27Z branch 5 times, most recently from 8620c4b to 2188e35 Compare September 10, 2024 01:24
@github-actions github-actions bot force-pushed the release-plz-2024-08-23T12-47-27Z branch 8 times, most recently from 09f3527 to 304a046 Compare September 16, 2024 13:56
@github-actions github-actions bot force-pushed the release-plz-2024-08-23T12-47-27Z branch 5 times, most recently from c4c7161 to 1df66cb Compare September 25, 2024 07:29
@github-actions github-actions bot force-pushed the release-plz-2024-08-23T12-47-27Z branch from 1df66cb to 3d907ef Compare September 27, 2024 07:56
@github-actions github-actions bot force-pushed the release-plz-2024-08-23T12-47-27Z branch 4 times, most recently from 7a1b2c2 to ef3f09b Compare October 6, 2024 00:18
@github-actions github-actions bot force-pushed the release-plz-2024-08-23T12-47-27Z branch 15 times, most recently from 7bcd6ef to 034367b Compare October 14, 2024 06:29
@github-actions github-actions bot force-pushed the release-plz-2024-08-23T12-47-27Z branch 3 times, most recently from 730e22e to 8d5357d Compare October 22, 2024 15:30
@github-actions github-actions bot force-pushed the release-plz-2024-08-23T12-47-27Z branch from 8d5357d to b5f771c Compare October 27, 2024 03:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants