Skip to content

v5.0.0

Choose a tag to compare

@aerni aerni released this 17 Jul 23:21
· 88 commits to main since this release
d2861e3

What's fixed

  • The captcha response is no longer saved to form submissions

What's improved

  • Field property methods are now executed on demand, allowing for dynamic use. This is helpful if you change a field property like options in the hydratedFields callback.
  • Make the inline_label property translatable
  • Make the show, view, and wire_model_modifier properties configurable through the form blueprint
  • Make the input_type property of Integer fields configurable

What's breaking

  • All field property methods are now protected. If you've accessed properties using their methods like defaultProperty(), you can simply remove Property and use default() instead.
  • If you've changed the view of a field through the @formField blade directive, you should remove fields., e.g. instead of 'view' => 'fields.nameInput' it should now be 'view' => 'nameInput'.