Upgrade Guide

Platform


From v2.4.0 to v2.5.0

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.

From v2.3.0 to v2.4.0

Local Filesystem

The local filesystem drivers was updated to match laravel. You will need to apply those changes.

From v1 to v2

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.

From 1.12.0 to 1.13.0

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).

Mobile Analytics