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 #2

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

Conversation

github-actions[bot]
Copy link

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

🤖 New release

  • farmfe_compiler: 0.0.7 -> 0.0.8 (⚠️ API breaking changes)
  • farmfe_core: 0.5.0 -> 0.5.1 (✓ API compatible changes)
  • farmfe_plugin_css: 0.0.7 -> 0.0.8 (✓ API compatible changes)
  • farmfe_toolkit: 0.0.7 -> 0.0.8 (✓ API compatible changes)
  • farmfe_plugin_define: 0.0.5 -> 0.0.6 (⚠️ API breaking changes)
  • farmfe_plugin_html: 0.0.5 -> 0.0.6 (✓ API compatible changes)
  • farmfe_plugin_json: 0.0.5 -> 0.0.6 (✓ API compatible changes)
  • farmfe_plugin_lazy_compilation: 0.0.5 -> 0.0.6 (⚠️ API breaking changes)
  • farmfe_plugin_resolve: 0.0.5 -> 0.0.6 (✓ API compatible changes)
  • farmfe_plugin_runtime: 0.0.5 -> 0.0.6 (⚠️ API breaking changes)
  • farmfe_plugin_script: 0.0.5 -> 0.0.6 (✓ API compatible changes)
  • farmfe_plugin_tree_shake: 0.0.5 -> 0.0.6 (✓ API compatible changes)
  • farmfe_testing_helpers: 0.0.7 -> 0.0.8
  • farmfe_toolkit_plugin_types: 0.0.14 -> 0.0.15
  • farmfe_plugin_minify: 0.0.5 -> 0.0.6
  • farmfe_plugin_partial_bundling: 0.0.5 -> 0.0.6
  • farmfe_plugin_polyfill: 0.0.5 -> 0.0.6
  • farmfe_plugin_progress: 0.0.5 -> 0.0.6
  • farmfe_swc_transformer_import_glob: 0.0.5 -> 0.0.6
  • farmfe_plugin_static_assets: 0.0.6 -> 0.0.7

⚠️ farmfe_compiler breaking changes

--- 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.31.0/src/lints/method_parameter_count_changed.ron

Failed in:
  farmfe_compiler::Compiler::update now takes 5 parameters instead of 4, in /tmp/.tmpzORteP/farm/crates/compiler/src/update/mod.rs:74

⚠️ farmfe_plugin_define 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.31.0/src/lints/auto_trait_impl_removed.ron

Failed in:
  type FarmPluginDefine is no longer RefUnwindSafe, in /tmp/.tmpzORteP/farm/crates/plugin_define/src/lib.rs:23

--- 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.31.0/src/lints/constructible_struct_adds_private_field.ron

Failed in:
  field FarmPluginDefine.sorted_define in /tmp/.tmpzORteP/farm/crates/plugin_define/src/lib.rs:25

⚠️ farmfe_plugin_lazy_compilation breaking changes

--- failure pub_module_level_const_missing: pub module-level const is missing ---

Description:
A public const is missing, renamed, or changed from const to static.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.31.0/src/lints/pub_module_level_const_missing.ron

Failed in:
  DYNAMIC_VIRTUAL_PREFIX in file /tmp/.tmpQDtlvQ/farmfe_plugin_lazy_compilation/src/lib.rs:11

⚠️ farmfe_plugin_runtime 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.31.0/src/lints/function_parameter_count_changed.ron

Failed in:
  farmfe_plugin_runtime::render_resource_pot::resource_pot_to_runtime_object now takes 4 parameters instead of 3, in /tmp/.tmpzORteP/farm/crates/plugin_runtime/src/render_resource_pot/mod.rs:52
Changelog

farmfe_compiler

0.0.8 - 2024-04-30

Added

  • support lazy compilation when targeting node (#1035)
  • support top level await (#1202)

Other

  • Fix/lazy compilation (#1253)
  • Version Packages v1.1.0 (#1214)
  • update swc to v0.90 (#1227)

farmfe_core

0.5.1 - 2024-04-30

Added

  • support lazy compilation when targeting node (#1035)

Other

  • Fix/lazy compilation (#1253)
  • Version Packages v1.1.0 (#1214)
  • update swc to v0.90 (#1227)

farmfe_plugin_css

0.0.8 - 2024-04-30

Fixed

  • vite migrations bugs (#1236)
  • css import url panic (#1187)

farmfe_toolkit

0.0.8 - 2024-04-30

Added

  • support lazy compilation when targeting node (#1035)

Other

  • Fix/lazy compilation (#1253)
  • update swc to v0.90 (#1227)

farmfe_plugin_define

0.0.6 - 2024-04-30

Fixed

  • vite migrations bugs (#1236)

farmfe_plugin_html

0.0.6 - 2024-04-30

Added

  • support isolate runtime resource (#1200)

Fixed

  • vite migrations bugs (#1236)

Other

  • Fix/lazy compilation (#1253)

farmfe_plugin_json

0.0.6 - 2024-04-30

Fixed

  • vite migrations bugs (#1236)

farmfe_plugin_lazy_compilation

0.0.6 - 2024-04-30

Added

  • support lazy compilation when targeting node (#1035)

Other

  • Fix/lazy compilation (#1253)

farmfe_plugin_resolve

0.0.6 - 2024-04-30

Fixed

  • vite migrations bugs (#1236)

farmfe_plugin_runtime

0.0.6 - 2024-04-30

Added

  • support lazy compilation when targeting node (#1035)
  • support top level await (#1202)

Fixed

  • minify module filter use absolute path (#1259)
  • vite migrations bugs (#1236)

Other

  • Fix/lazy compilation (#1253)
  • update swc to v0.90 (#1227)
  • add ssr e2e tests (#1201)

farmfe_plugin_script

0.0.6 - 2024-04-30

Added

  • support lazy compilation when targeting node (#1035)

Other

  • update swc to v0.90 (#1227)

farmfe_plugin_tree_shake

0.0.6 - 2024-04-30

Other

  • update swc to v0.90 (#1227)

farmfe_testing_helpers

0.0.8 - 2024-04-30

Other

  • updated the following local packages: farmfe_core

farmfe_toolkit_plugin_types

0.0.15 - 2024-04-30

Other

  • updated the following local packages: farmfe_core

farmfe_plugin_minify

0.0.6 - 2024-04-30

Other

  • updated the following local packages: farmfe_core, farmfe_toolkit

farmfe_plugin_partial_bundling

0.0.6 - 2024-04-30

Other

  • updated the following local packages: farmfe_core, farmfe_toolkit

farmfe_plugin_polyfill

0.0.6 - 2024-04-30

Other

  • updated the following local packages: farmfe_core, farmfe_toolkit

farmfe_plugin_progress

0.0.6 - 2024-04-30

Other

  • updated the following local packages: farmfe_core

farmfe_swc_transformer_import_glob

0.0.6 - 2024-04-30

Other

  • updated the following local packages: farmfe_core, farmfe_toolkit

farmfe_plugin_static_assets

0.0.7 - 2024-04-30

Other

  • updated the following local packages: farmfe_core, farmfe_toolkit


This PR was generated with release-plz.

Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
@github-actions github-actions bot force-pushed the release-plz-2024-03-23T13-31-45Z branch from 2ca2524 to bc5ca28 Compare April 30, 2024 06:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
0 participants