Skip to content

Releases: ycs77/laravel-wizard

v1.0.1

14 Oct 16:31
Compare
Choose a tag to compare

Only support laravel 5.5

v1.0.0

14 Oct 14:50
ed0892a
Compare
Choose a tag to compare

Added

  • Add wizard factory (cfac1d4)
  • Add type judgment from StepRepository (64bbc38)

Changed

  • Change the make method of the StepRepository to push (ca2aa70)
  • Change the ip_address field type of the wizard migration to ipAddress (4695867)
  • Change the setModel method name of the Step class to model (5a8bbab)
  • Change the CacheManager constructor parameter ordering (545f484)
  • Update StepNotFoundException (ea37e43)
  • Update TableCommand (c56fb17)

Removed

  • Remove wizardKey default value of the SessionStore (15888ed)
  • Remove stepKey property of the CacheStore has method (c16543d)
  • Remove the make static method of the Step class (d0962cd)

Upgrade Considerations

  • Add WizardFactory to make wizard.
  • Change wizard database driver default table name wizard to wizards.
  • Change step method setModel to model. and must return model.
  • Change WizardController __construct injection class Wizard to WizardFactory.
  • Browse more changes

v0.7.0

20 Jun 07:52
Compare
Choose a tag to compare
v0.7.0 Pre-release
Pre-release

Added

Changed

  • Change with view data to wizard controller property (eeb8094)
  • Update wizard routes (fe61c32)
  • Update done view (cdf6fa4)

Removed

  • Remove wizard data with done view (345f018)

v0.6.1

20 Jun 06:33
Compare
Choose a tag to compare
v0.6.1 Pre-release
Pre-release

Fixed

  • Fix undifined variable $data (9e4b074)

v0.6.0

19 Jun 11:53
Compare
Choose a tag to compare
v0.6.0 Pre-release
Pre-release

Added

  • Let the step support the relationships model (037069d)
  • Add wizard controller events (2f46bdc)
  • Customize a specific wizard base view (168a689)

Fixed

  • Fix back step no save data bug (ff7b060)
  • Fix methods that need to be protected on wizard controller (e13fa5c)

v0.5.4

16 Jun 02:51
Compare
Choose a tag to compare
v0.5.4 Pre-release
Pre-release

Fixed

  • Fix default step redirect (1b62fd2)

v0.5.3

15 Jun 12:31
Compare
Choose a tag to compare
v0.5.3 Pre-release
Pre-release

Removed

  • Unbind wizard cache to container (4d51860)

v0.5.2

15 Jun 10:30
Compare
Choose a tag to compare
v0.5.2 Pre-release
Pre-release

Changed

  • Change step stub setModel method default content (fe9bda0)

Fixed

  • Fix step stub type hint (dbcf2b9)

v0.5.1

15 Jun 06:38
Compare
Choose a tag to compare
v0.5.1 Pre-release
Pre-release

Changed

  • Bind wizard, cache to service provider (5f21fbe)

v0.5.0

14 Jun 09:02
Compare
Choose a tag to compare
v0.5.0 Pre-release
Pre-release

Added

  • Add options to the wizard, you can use options: cache, driver, connection, table to override configuration. (570f8dc)

Changed