Releases: orchestral/http
Releases · orchestral/http
v3.2.1
v3.1.14
v3.2.0
- Update support to Laravel Framework v5.2.
- Improved performances by reducing call within
Illuminate\Container\Container
. - Add
Orchestra\Http\Traits\PassThroughTrait
. - Allow
Orchestra\Http\RouteManager::group()
to utilize newOrchestra\Extension\RouteManager::group()
. Orchestra\Http\RouteManager
should implementsOrchestra\Contracts\Http\RouteManager
.- Add
Orchestra\Http\RouteManager::mode()
abstract method. - Small optimization to reduce additional method calls when generating routes.
- Add
Orchestra\Http\RouteManager::when()
event to be executed duringrouter.matched
. - Add
Orchestra\Http\RouteManager::whenOn()
to allow user to specifically choose which event it should listen to. - Add
Orchestra\Http\Middleware\NotModified
. - Add
Orchestra\Http\Middleware\RequireCsrfToken
.
v3.1.13
v3.1.11
- Move
Orchestra\Http\RouteManager::when()
event to be executed duringrouter.matched
instead ofkernel.handled
as this is usually to late in the application request lifecycle. - Add
Orchestra\Http\RouteManager::whenOn()
to allow user to specifically choose which event it should listen to.