Releases: orchestral/lumen
Releases · orchestral/lumen
v3.8.3
v3.8.2
v3.8.1
v3.8.0
v3.7.2
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
v3.7.0
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
Added
- Added
Laravel\Lumen\Application::routesAreCached()
method. (@JacksonIV)