Config and planning for L5 upgrade

This commit is contained in:
Samuel Georges 2015-01-28 18:02:32 +11:00
parent 7c1de4f728
commit 9e500985ff
2 changed files with 43 additions and 0 deletions

View File

@ -1,5 +1,18 @@
* **Build !!!** (2015-!!-!!)
- **Upgraded framework to Laravel version 5**
- Renamed classes:
```
October\Rain\Support\Yaml -> Yaml
October\Rain\Support\Markdown -> Markdown
System\Classes\ApplicationException -> ApplicationException
System\Classes\SystemException -> SystemException
October\Rain\Support\ValidationException -> ValidationException
```
- Introduced a linking policy to control the way URLs are generated globally (see config cms.linkPolicy).
* **Build 18x** (2015-01-xx)
- Lists now support exporting to CSV format via the default **export** controller action.
- Platforms can *opt-in* for bleeding edge updates by enabling a config setting (`cms.edgeUpdates`), this helps perform testing before a stable version is deployed.
* **Build 183** (2015-01-22)
- Relation Controller now supports *has one* and *belongs to* relations (see Backend > Relations docs).

View File

@ -49,6 +49,19 @@ return array(
'disableCoreUpdates' => false,
/*
|--------------------------------------------------------------------------
| Bleeding edge updates
|--------------------------------------------------------------------------
|
| If you are developing with October, it is important to have the latest
| code base, set this value to 'true' to tell the platform to download
| and use the development copies of core files and plugins.
|
*/
'edgeUpdates' => false,
/*
|--------------------------------------------------------------------------
| Back-end URI prefix
@ -206,4 +219,21 @@ return array(
'convertLineEndings' => false,
/*
|--------------------------------------------------------------------------
| Linking policy
|--------------------------------------------------------------------------
|
| Controls how URL links are generated throughout the application.
|
| relative - relative to the application, schema and hostname is omitted
| detect - detect hostname and use the current schema
| secure - detect hostname and force HTTPS schema
| insecure - detect hostname and force HTTP schema
| force - force hostname and schema using app.url config value
|
*/
'linkPolicy' => 'relative',
);