Skip to content

Releases: orchestral/lumen

v4.2.1

03 Nov 13:25
Compare
Choose a tag to compare

Fixed

  • Load app configuration when bootstrapping db component to allow faker configuration is available.

v4.2.0

12 Oct 02:09
Compare
Choose a tag to compare

Changes

  • Update support for Laravel Framework v6.2+.
  • Improves support for locale support under Laravel\Lumen\Application by properly implements setLocale(), getLocale() and isLocale().

v4.1.0

03 Oct 02:53
Compare
Choose a tag to compare

Changes

  • Laravel\Lumen\Application::hasBeenBootstrapped() now default to return true instead of throwing an Exception.
  • Laravel\Lumen\Application::loadDeferredProviders() now does return void (does nothing) instead of throwing an Exception.

v4.0.0

14 Sep 02:19
Compare
Choose a tag to compare

Added

  • Add Laravel\Lumen\Auth\Providers\Concerns\AuthorizationHelpers trait.

Changes

  • Update support for Laravel Framework v6.x.
  • Mark Laravel\Lumen\Auth\Providers\Guard as abstract class.
  • Improves configuration paths resolution on Lumen.

Deprecated

  • Deprecate Laravel\Lumen\Application::getConfigurationPath() method.

v3.8.9

13 Sep 16:48
Compare
Choose a tag to compare

Changes

  • Allow laravie/api version 3.0+ to be installed when it become available.
  • Additional use static function rather than function whenever possible, the PHP engine does not need to instantiate and later GC a $this variable for said closure.

Fixes

  • Fixes tests skeleton code.

v3.8.8

07 Sep 12:58
Compare
Choose a tag to compare

Changes

  • Tweak minimum version for laravel/framework and laravie/api.

Fixes

  • Fixes Laravel\Lumen\Testing\Concerns\MakesHttpRequests::options().

v3.8.7

02 Sep 06:44
Compare
Choose a tag to compare

Changes

  • Set $user to Illuminate\Http\Request::setUserResolver() when user get authenticated via Laravel\Lumen\Auth\Providers\Guard implementations.
  • Able to report exception via Exception::report() if the method exists.
  • Able to render exception via Exception::render() if the method exists.
  • Able to render exception if it implements Illuminate\Contracts\Support\Responsable.

v3.8.6

19 Aug 10:54
Compare
Choose a tag to compare

Changes

  • Use static function rather than function whenever possible, the PHP engine does not need to instantiate and later GC a $this variable for said closure.

v3.8.5

19 Aug 10:53
Compare
Choose a tag to compare

Added

  • Register Filesystem cloud disks into the container.

v3.8.4

06 Jul 04:52
Compare
Choose a tag to compare

Changes

  • Use request to get current version for dingo/api.