Skip to content

Commit

Permalink
Config and planning for L5 upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
daftspunk committed Jan 28, 2015
1 parent 7c1de4f commit 9e50098
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 0 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
@@ -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).
Expand Down
30 changes: 30 additions & 0 deletions app/config/cms.php
Expand Up @@ -49,6 +49,19 @@

'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
Expand Down Expand Up @@ -206,4 +219,21 @@

'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',

);

0 comments on commit 9e50098

Please sign in to comment.