Skip to content

Releases: laravel-arcanist/arcanist

0.9.0

24 Jan 07:29
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 0.8.0...0.9.0

0.8.0

23 Jun 05:41
09bd9c1
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 0.7.0...0.8.0

0.7.0

15 Apr 12:10
34a6bcb
Compare
Choose a tag to compare

What's Changed

  • pass request to transformWizardData() by @ziming in #34

Full Changelog: 0.6.0...0.7.0

0.6.0

16 Mar 07:57
de6dfdd
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 0.5.2...0.6.0

0.5.2

20 Aug 19:21
Compare
Choose a tag to compare

Changed

  • Changed visibility of $responseRenderer from private to protected in AbstractWizard (#21, @erikwittek)
  • Changed visibility of AbstractWizard::fields() method from private to protected (#21, @erikwittek)

0.5.1

17 Aug 17:55
Compare
Choose a tag to compare

Added

  • Added protected onAfterDelete method to AbstractWizard. This method gets called after a wizard was deleted instead of a hardcoded redirect (#20, @erikwittek)

0.5.0

04 Aug 09:08
Compare
Choose a tag to compare

Changed

  • Changed visibility of fields method to public. This should make it possible to have generic
    templates by looping over the field definitions (#17, @thoresuenert)

0.4.0

20 Jul 03:51
Compare
Choose a tag to compare

Changed

  • Breaking change: Changed return type declarations of ResponseRenderer interface to be less restrictive

0.3.1

15 Jul 14:02
Compare
Choose a tag to compare

Changed

  • Use static inside of Field::make() to make it easier to extend from the Field class (#15).
    This is a potentially breaking change if you've extended from the Field class in your code

0.3.0

21 May 14:19
Compare
Choose a tag to compare

Added

  • Added make:wizard and make:wizard-step commands
  • Added transform method to Field class to register arbitrary callbacks for a field.
    Note that whatever the callback returns is the value that gets persisted for the field.