Skip to content

Commit

Permalink
Merge branch 'release/2.5.5' into craft-vite
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Welch committed Mar 30, 2022
2 parents c887fa2 + 86b94c3 commit c7197f7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# nystudio107/craft Change Log

## 2.5.5 - 2022.03.30
### Changed
* Remove deprecated `useProjectConfigFile` from `config/general.php`
* Remove `platform` from `composer.json`

## 2.5.4 - 2022.03.28
### Changed
* Add `disableProcessTimeout` to the `post-craft-update` Composer scripts, and run Project Config before migrations
Expand Down
5 changes: 1 addition & 4 deletions cms/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,7 @@
"yiisoft/yii2-composer": true
},
"optimize-autoloader": true,
"sort-packages": true,
"platform": {
"php": "7.2.5"
}
"sort-packages": true
},
"scripts": {
"craft-update": [
Expand Down
3 changes: 1 addition & 2 deletions cms/config/general.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
'backupOnUpdate' => (bool)App::env('BACKUP_ON_UPDATE'),
'devMode' => (bool)App::env('DEV_MODE'),
'enableTemplateCaching' => (bool)App::env('ENABLE_TEMPLATE_CACHING'),
'resourceBasePath' => App::env('WEB_ROOT_PATH').'/cpresources',
'resourceBasePath' => App::env('WEB_ROOT_PATH') . '/cpresources',
'runQueueAutomatically' => (bool)App::env('RUN_QUEUE_AUTOMATICALLY'),
'securityKey' => App::env('SECURITY_KEY'),
// Craft config settings from constants
Expand All @@ -41,5 +41,4 @@
'omitScriptNameInUrls' => true,
'useEmailAsUsername' => true,
'usePathInfo' => true,
'useProjectConfigFile' => true,
];

0 comments on commit c7197f7

Please sign in to comment.