Releases: orchestral/kernel
Releases · orchestral/kernel
v3.1.4
v3.1.3
v3.1.2
v3.1.1
v3.1.0
- Update support to Laravel Framework v5.1.
- Config:
- Simplify
Orchestra\Config\Console\ConfigCacheCommand
class.
- Simplify
- Contracts:
- Update
Orchestra\Contracts\Memory\Provider
contract. - Add
Orchestra\Contracts\Publisher\Publisher
contract. - Add
Orchestra\Contracts\Publisher\Uploader
contract. - Add
Orchestra\Contracts\Publisher\ServerException
exception.
- Update
- Routing
- Add
Orchestra\Routing\ResourceRegistrar
to supportGET resources/id/delete
route for resource routing.
- Add
v3.0.4
v3.0.3
v3.0.2
v3.0.1
v3.0.0
- Initial release for Laravel Framework v5.0.
- Split components to five (5) sub-components; Config, Contracts, Database, HTTP, and Routing.
- Config:
- Based from
illuminate/config
v4.2. - Add
Orchestra\Config\Bootstrap\LoadConfiguration
. - Add
Orchestra\Config\Console\ConfigCacheCommand
. - Set
mb_internal_encoding('UTF-8');
on bootstrap.
- Based from
- Contracts:
- Move various Interface to
orchestra/contracts
.
- Move various Interface to
- Database:
- Based from
illuminate/database
. - Add
Orchestra\Database\Console\Migrations\MigrateCommand
with--package
and--realpath
options.
- Based from
- HTTP:
- Move
Orchestra\Http\RouteManager
fromorchestra/foundation
. - Add experimental
Orchestra\Http\FormRequest
.
- Move
- Routing:
- Based from
illuminate/routing
. - Add filtering toggle to disable filters during unit testing.
- Add multiple contracts:
Orchestra\Contracts\Routing\CallableController
.Orchestra\Contracts\Routing\FilterableController
.Orchestra\Contracts\Routing\StackableController
.
- Add
redirect_with_errors()
andredirect_with_message()
helper function.
- Based from