Skip to content

Releases: orchestral/lumen

v3.8.3

24 May 15:07
Compare
Choose a tag to compare

Added

  • Add Laravel\Lumen\Application::useStoragePath() method to register custom storage path.

v3.8.2

24 May 14:57
Compare
Choose a tag to compare

Added

  • Added Laravel\Lumen\Http\ResponseFactory::stream() method.

v3.8.1

04 Apr 15:31
Compare
Choose a tag to compare

Fixes

  • Fix compatibility based on changes made to Laravel Framework v5.8.9.

v3.8.0

26 Mar 01:07
Compare
Choose a tag to compare

Changes

  • Update support for Laravel Framework v5.8.

Upgrade Guide

  • Update the following files:
    • skeleton/artisan
    • skeleton/bootstrap.php
    • skeleton/public/index.php

v3.7.2

11 Mar 01:11
Compare
Choose a tag to compare

Changes

  • Improve performance by prefixing all global functions calls with \ to skip the look up and resolve process and go straight to the global function.

Fixes

  • Fixes incorrect request type during testing. When testing, the call method provides an instance of the Laravel Request class while this should be Lumen's own Request class.

v3.7.1

24 Feb 10:55
Compare
Choose a tag to compare

Changes

  • Add signed route ability to Lumen.

v3.7.0

25 Dec 10:20
Compare
Choose a tag to compare

Added

  • Added Laravel\Lumen\Bus\PendingDispatch.
  • Added Laravel\Lumen\Http\Request.

Changes

  • Update support for Laravel Framework v5.7.
  • Set the application url when running tests.
  • Make the fingerprint method compatible with Lumen.
  • Ensure the response object is prepared before returning it.

v3.6.4

26 Jul 03:33
Compare
Choose a tag to compare

Added

  • Added Laravel\Lumen\Application::routesAreCached() method. (@JacksonIV)

v3.6.3

29 Jun 00:48
Compare
Choose a tag to compare

Fixes

  • Reduce memory leaks during testing.
  • Fixes condition to json_decode on $responseData when using Laravel\Lumen\Testing\Concerns\MakesHttpRequests::seeJsonStructure().

v3.6.2

05 Jun 01:15
Compare
Choose a tag to compare

Changes

  • Bind the app environment as 'env'. (@yuloh)
  • Able to resolve Illuminate\Hashing\HashManager.