Skip to content

Latest commit

 

History

History
323 lines (183 loc) · 8.21 KB

CHANGELOG.md

File metadata and controls

323 lines (183 loc) · 8.21 KB

Changelog

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

Next

2.5.0 - 2017-10-03

Changed

  • Making the path to migrations for loadMigrationsFrom() call dynamic based of configuration
  • Making the factory path dynamic for master service provider & make-factory command
  • Make the route file location dynamic in start.php based of stubs.files.routes
  • Making the route path dynamic on the route service provider based of stubs.files.routes
  • New structure in configuration to set which folders will be generated on module:make (old format still supported)
  • Setting new sensible defaults to what folders to generate by default.
  • Change the assets directory default location resources/assets

2.4.1 - 2017-09-27

Changed

  • Setting a default value for modules.paths.modules configuration key

2.4.0 - 2017-09-27

Added

  • New module:make-resource command to generate resource classes
  • New module:make-test command to generate test classes

Changed

  • Improved error output of the module:seed command
  • Marking methods that served as proxies in Module and Repository classes as deprecated for next major
  • Fixed module:make and module:make-provider to generate the correct master service provider
  • Tests: tests are now using spatie/phpunit-snapshot-assertions to make sure the generated files have the correct content
  • Adding a sync option to the module:make-job command to make a synchronous job class
  • Changed module:make-event command to allow duck typed events (not type hinted event class)
  • Changed module:make-listener to allow a --queued option to make the event queueable
  • Changed module:make-listener command to not use the full class typehint when class was previous imported

2.3.0 - 2017-09-26

Added

  • Ability to ignore some folders to generate
  • Creating an module:unuse command to forget the previously saved module
  • New command to generate Policy classes
  • New command for creating factories
  • New command for creating rules
  • new public_path helper for Lumen

Changed

  • Refactored class names that generate something to be fully consistent

2.2.1 - 2017-09-14

Changed

  • Fixed class namespace to Repository in ContractsServiceProvider

2.2.0 - 2017-09-14

Added

  • Lumen compatibility with new way to register providers

2.1.0 - 2017-09-10

Changed

  • Register module migrations
  • Fixed issue with module:migrate-refresh command
  • Improved module loading of their service providers. Using laravel caching system. Allowing usage of deferred providers.
  • Fixed path to module factories

2.0.0 - 2017-08-31

Added

  • Support Laravel 5.5

1.27.2 - 2017-08-29

Changed

  • Allow migrate-refresh command to be run without module argument
  • Module name was added to the module enable and disable events

1.27.1 - 2017-07-31

Changed

  • Only run composer require on the module:update command if there's something to require
  • Fixing lumen support

1.27.0 - 2017-07-19

Added

  • Laravel Lumen support

Changed

  • Update dev dependencies grumphp and phpcsfixer to latest versions
  • The make:model command with the -m flag to create the associated migration is now using a current migration file name

1.26.0 - 2017-07-06

Changed

  • Throw an exception if asset name structure was not correct when using {!! Module::asset() !!}
  • Create the module used file if non existent. Will provide for a better error message if module is omitted in console commands without a module:use.

1.25.1 - 2017-06-29

Changed

  • More flexibility to the json() method, while keeping the performance improvements.

1.25.0 - 2017-06-29

Changed

  • Improving performance by only instantiating Json class for the module.json file once
  • Added support for generic git hosts

1.24.0 - 2017-06-12

Changed

  • Using resource_path to register module views
  • Changed the method to load additional eloquent factory paths

1.23.0 - 2017-06-09

Added

  • A --migration flag to the module:make-model command to generate the migration file with a model
  • Factories are now also defined in the master service providers. This is used in the module:make command without the --plain flag, or using module:make-provider with the --master flag.
  • module_path() helper function.

Changed

  • The default location of event listeners is now in Listeners/, from Events/Handlers

1.22.0 - 2017-05-22

Changed

  • Fixed the --plain on the make:module command, to not include a service provider in the module.json file as it's not generated.
  • Add command description to the GenerateNotificationCommand.

1.21.0 - 2017-05-10

Added

  • Added the Macroable trait to the Module class.

Changed

  • The collections method now accepts an optional parameter to get modules by status, in a laravel collection.
  • Allow laravel 5.5.* to be used.

1.20.0 - 2017-04-19

Changed

  • module:update: Copy over the scripts key to main composer.json file
  • Add a --subpath option to migrate command
  • module:update: Install / require all require & require-dev package at once, instead of multiple calls to composer require.
  • module:publish-config command now uses the namespace set up in the configuration file.

1.19.0 - 2017-03-16

Changed

  • module:update command now also takes the require-dev key into account
  • Making the $migrations parameter optional on getLastBatchNumber()

1.18.0 - 2017-03-13

Changed

  • The module list command (module:list) now returns the native module name

1.17.1 - 2017-03-02

Changed

  • Fixed issues with route file location in start.php

1.17.0 - 2017-02-27

Changed

  • Add checking for failure to parse module JSON

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