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

Merged
merged 1 commit into from May 9, 2024
Merged

chore: release #1188

merged 1 commit into from May 9, 2024

Conversation

github-actions[bot]
Copy link
Contributor

@github-actions github-actions bot commented Apr 15, 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/.tmpDvF9Zw/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/.tmpDvF9Zw/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/.tmpDvF9Zw/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/.tmpFfGYNn/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/.tmpDvF9Zw/farm/crates/plugin_runtime/src/render_resource_pot/mod.rs:52
Changelog

farmfe_compiler

0.0.8 - 2024-05-09

Added

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

Fixed

  • circle module require (#1290)

Other

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

farmfe_core

0.5.1 - 2024-05-09

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-05-09

Fixed

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

farmfe_toolkit

0.0.8 - 2024-05-09

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-05-09

Fixed

  • vite migrations bugs (#1236)

farmfe_plugin_html

0.0.6 - 2024-05-09

Added

  • support isolate runtime resource (#1200)

Fixed

  • vite migrations bugs (#1236)

Other

  • Fix/lazy compilation (#1253)

farmfe_plugin_json

0.0.6 - 2024-05-09

Fixed

  • vite migrations bugs (#1236)

farmfe_plugin_lazy_compilation

0.0.6 - 2024-05-09

Added

  • support lazy compilation when targeting node (#1035)

Other

  • Fix/lazy compilation (#1253)

farmfe_plugin_resolve

0.0.6 - 2024-05-09

Fixed

  • vite migrations bugs (#1236)

farmfe_plugin_runtime

0.0.6 - 2024-05-09

Added

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

Fixed

  • circle module require (#1290)
  • 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-05-09

Added

  • support lazy compilation when targeting node (#1035)

Other

  • update swc to v0.90 (#1227)

farmfe_plugin_tree_shake

0.0.6 - 2024-05-09

Other

  • update swc to v0.90 (#1227)

farmfe_testing_helpers

0.0.8 - 2024-05-09

Other

  • updated the following local packages: farmfe_core

farmfe_toolkit_plugin_types

0.0.15 - 2024-05-09

Other

  • updated the following local packages: farmfe_core

farmfe_plugin_minify

0.0.6 - 2024-05-09

Other

  • updated the following local packages: farmfe_core, farmfe_toolkit

farmfe_plugin_partial_bundling

0.0.6 - 2024-05-09

Other

  • updated the following local packages: farmfe_core, farmfe_toolkit

farmfe_plugin_polyfill

0.0.6 - 2024-05-09

Other

  • updated the following local packages: farmfe_core, farmfe_toolkit

farmfe_plugin_progress

0.0.6 - 2024-05-09

Other

  • updated the following local packages: farmfe_core

farmfe_swc_transformer_import_glob

0.0.6 - 2024-05-09

Other

  • updated the following local packages: farmfe_core, farmfe_toolkit

farmfe_plugin_static_assets

0.0.7 - 2024-05-09

Other

  • updated the following local packages: farmfe_core, farmfe_toolkit


This PR was generated with release-plz.

Copy link

changeset-bot bot commented Apr 15, 2024

⚠️ No Changeset found

Latest commit: 07ea6c4

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-04-15T03-12-49Z branch 15 times, most recently from 85b58c1 to 5b07924 Compare April 22, 2024 06:25
@github-actions github-actions bot force-pushed the release-plz-2024-04-15T03-12-49Z branch 14 times, most recently from e0af9bf to f1aea13 Compare April 27, 2024 16:25
@github-actions github-actions bot force-pushed the release-plz-2024-04-15T03-12-49Z branch 8 times, most recently from f8a0e06 to 85a1827 Compare May 5, 2024 01:23
@github-actions github-actions bot force-pushed the release-plz-2024-04-15T03-12-49Z branch 6 times, most recently from b6c3771 to 62346e5 Compare May 8, 2024 15:21
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-04-15T03-12-49Z branch from 62346e5 to 07ea6c4 Compare May 9, 2024 00:47
@wre232114 wre232114 merged commit 9703b9d into main May 9, 2024
@wre232114 wre232114 deleted the release-plz-2024-04-15T03-12-49Z branch May 9, 2024 02:43
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.

None yet

1 participant