-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: crynobone <crynobone@gmail.com>
- Loading branch information
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
--- | ||
title: Kernel Change Log | ||
|
||
--- | ||
|
||
# Version 3.0 {#v3-0} | ||
|
||
## v3.0.0 {#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. | ||
* Contracts: | ||
- Move various Interface to `orchestra/contracts`. | ||
* Database: | ||
- Based from `illuminate/database`. | ||
- Add `Orchestra\Database\Console\Migrations\MigrateCommand` with `--package` and `--realpath` options. | ||
* HTTP: | ||
- Move `Orchestra\Http\RouteManager` from `orchestra/foundation`. | ||
- Add experimental `Orchestra\Http\FormRequest`. | ||
* 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()` and `redirect_with_message()` helper function. |