diff --git a/UPGRADE.md b/UPGRADE.md index c27bd5d58..a101c8b35 100644 --- a/UPGRADE.md +++ b/UPGRADE.md @@ -21,6 +21,17 @@ *SPAWN* means to create a file using the git source. +### Cron job changes + +Remove old cron jobs: + + * * * * * php /path/to/artisan queue:cron 1>> /dev/null 2>&1 + * * * * * php /path/to/artisan scheduled:run 1>> /dev/null 2>&1 + +Add new cron job: + + * * * * * php /path/to/artisan schedule:run 1>> /dev/null 2>&1 + ### Clean up Optional things you can delete, if they do not contain anything custom. @@ -38,6 +49,10 @@ Optional things you can delete, if they do not contain anything custom. ### Breaking code changes +#### Dispatcher has been removed + +Dispatcher functionality is now baked in to Laravel, check the Plugin registration documentation for more information. + #### Removed PATH_* constants PATH_APP - use app_path() diff --git a/modules/system/providers.php b/modules/system/providers.php index 1c3e4bb73..b0ef99b5d 100644 --- a/modules/system/providers.php +++ b/modules/system/providers.php @@ -33,16 +33,9 @@ return [ 'October\Rain\Filesystem\FilesystemServiceProvider', 'October\Rain\Html\HtmlServiceProvider', 'October\Rain\Network\NetworkServiceProvider', - // 'October\Rain\Translation\TranslationServiceProvider', 'October\Rain\Scaffold\ScaffoldServiceProvider', 'October\Rain\Flash\FlashServiceProvider', 'October\Rain\Mail\MailServiceProvider', 'October\Rain\Parse\ParseServiceProvider', - /* - * Vendor providers - */ - // @todo L5 Dispatcher broken - // 'Indatus\Dispatcher\ServiceProvider', - ];