Skip to content

Commit

Permalink
Merge branch 'release/2.5.5' into devmode-vite
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Welch committed Mar 28, 2022
2 parents 06a95fa + b70db61 commit f1b5d9a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# nystudio107/devmode Change Log

## 2.5.5 - 2022.03.28
### Changed
* Add `disableProcessTimeout` to the `post-craft-update` Composer scripts, and run Project Config before migrations

## 2.5.4 - 2022.03.26
### Added
* Ensure permissions on directories Craft needs to write to
Expand Down
5 changes: 3 additions & 2 deletions cms/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,10 @@
"pre-craft-update": [
],
"post-craft-update": [
"Composer\\Config::disableProcessTimeout",
"@php craft install/check && php craft clear-caches/all --interactive=0 || exit 0",
"@php craft install/check && php craft migrate/all --interactive=0 || exit 0",
"@php craft install/check && php craft project-config/apply --interactive=0 || exit 0"
"@php craft install/check && php craft project-config/apply --interactive=0 || exit 0",
"@php craft install/check && php craft migrate/all --interactive=0 || exit 0"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
Expand Down

0 comments on commit f1b5d9a

Please sign in to comment.