Skip to content

Latest commit

 

History

History
125 lines (68 loc) · 2.62 KB

CHANGELOG.md

File metadata and controls

125 lines (68 loc) · 2.62 KB

Changelog

All Notable changes to laravel-modules will be documented in this file.

Next

1.16.0 - 2017-01-24

Added

  • Support for Laravel 5.4
  • Adding show method on resource controller
  • Added check for cached routes to not load them multiple times

1.15.0 - 2017-01-12

Added

  • Module requirements (PR #117)
  • Added Macroable trait to Module class (PR #116)

Changed

  • Added missing import of the Schema facade on migration stubs
  • A default plain migration will be used if the name was not matched against a predefined structure (create, add, delete and drop)
  • Add tests for all the different migration structures above
  • Fix: respecting order in reverse migrations (PR #98)
  • Fix: module:reset and module:migrate-rollback didn't have --database option (PR #88)
  • Fix: Module::asset(), removed obsolete backslash. (PR #91)

1.14.0 - 2016-10-19

Added

  • module:make-notification command to generate a notification class

Changed

  • Usage of the lists() method on the laravel collection has been removed in favor of pluck()
  • Modules can now overwrite the default migration and seed paths in the module.json file

0.13.1 - 2016-09-09

Changed

  • Generated emails are now generated in the Emails folder by default

0.13.0 - 2016-09-08

Changed

  • Ability to set default value on the config() method of a module.
  • Mail: Setting default value to config. Using that as the namespace.
  • Using PSR2 for generated stubs

0.12.0 - 2016-09-08

Added

  • Generation of Mailable classes

0.11.2 - 2016-08-29

Changed

  • Using stable version of laravelcollective/html (5.3)

0.11.1 - 2016-08-25

Changed

  • Using stable development of laravelcollective/html

0.11 - 2016-08-24

Added

  • Adding module:make-job command to generate a job class
  • Adding support for Laravel 5.3

Changed

  • Added force option to module:seed command

0.10 - 2016-08-10

Added

  • Experimental Laravel 5.3 support

Changed

  • Make sure the class name has Controller appended to it as well. Previously only the file had it suffixed.

Removed

  • Dependencies: pingpong/support and pingpong/generators

0.9 - 2016-07-30

Added

  • Adding a plain option to the generate controller command

Changed

  • Generate controller command now generates all resource methods

0.8 - 2016-07-28

Fixed

  • Module generation namespace now works with StudlyCase (Issue #14)
  • No module namespace fix (#13)

Changed

  • Using new service provider stub for module generation too

0.1 - 2016-06-27

Initial release