Platform
New cache driver
A new cache driver was added specifically for translations. You can view this configuration here. You can also set the environment variable TRANSLATIONS_CACHE_DRIVER
in your .env
file to use redis for example or any other driver.
Local Filesystem
The local filesystem drivers was updated to match laravel. You will need to apply those changes.
Upgrade to laravel 5.2
Follow the Laravel upgrade guide to upgrade your application and modules.
Re-publish configuration files
Configuration files across modules has been changed, mostly the permissions.php
files.
Using the following command you will be able to publish a module config files.
php artisan module:publish-config --force
If you edited the module configurations, you will need to manually copy over the new files, depending on what you changed, you can also publish each module individually.
New Job class
The laravel abstract Job
class has been added in app/Jobs/Job.php
. Add the Job
class (view class) to your project in that same location (app/Jobs/Job.php
).