Skip to content

Releases: zonneplan/laravel-module-loader

v5.0.0

18 Mar 12:05
aed06d7
Compare
Choose a tag to compare

Support Laravel 11

Full Changelog: v4.0.0...v5.0.0

v4.0.0

16 Feb 13:07
5572d5c
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3.0.0...v4.0.0

3.0.0

24 Feb 13:23
4f40547
Compare
Choose a tag to compare

Version 3 is here!

We made a few changes to be ready for the future. This includes dropping support for older PHP versions and old Laravel versions.
Since we love the changes PHP8 have brought us we decided to drop support for any versions older than Laravel 9.
If you still want to use the package with Laravel 8 or are unable to upgrade to PHP 8 or newer, feel free to continue using 2.x.

Changes:

  • Add support for Laravel 9

Breaking changes:

  • Legacy factory loading is disable by default and must be enabled for each module that wants to use it.
    Add protected bool $enableLegacyFactoryLoading = true; to your module to continue attempting to load legacy factories.
  • Drop support for Laravel 8

2.0.2

28 Apr 14:45
f3533e7
Compare
Choose a tag to compare

Changes:

  • reimplemented registerFactories. As long as the loadFactoriesFrom-method exists it's possible to load the legacy database factories.

2.0.1

14 Jan 10:35
Compare
Choose a tag to compare

The previous release included a small bug. This fixes that.
Below you will find the release log for 2.0.0:

We made a few changes to be ready for the future. This includes dropping support for old PHP versions and old Laravel versions.
Since we love the changes PHP 7.4 have brought us (typed properties) we decided to drop support a bit further than Laravel 8 already forces you to.
If you are currently unable to use PHP 7.4 or newer, please make use of the 1.x version.

Changes:

  • Add support for PHP 8
  • Make use of some PHP 7.4 features

Breaking changes:

  • Factory loading is no longer possible due to Laravel 8's new model factories
  • Drop support for Laravel 6 & 7
  • Drop support for PHP 7.2 & 7.3

1.2.2

16 Sep 07:29
Compare
Choose a tag to compare
  • Fix issue that somehow did not make it into the previous version

1.2.1

15 Sep 14:10
Compare
Choose a tag to compare
  • Update README
  • Fix issue with access of constant

1.2.0

15 Sep 13:58
Compare
Choose a tag to compare
  • Update to support Laravel 8
  • Load route files in the Routes folder automatically when they are present.

Please note that route files should implement their own middlewares as routes are loaded without middleware.

1.1.2

04 May 11:36
Compare
Choose a tag to compare
  • Revert back since PHPUnit fails when loaded running module items that were not loaded

1.1.1

01 May 10:36
Compare
Choose a tag to compare
  • Improved the way which functions from a module are loaded when using console only applications.