Update Thunder 6 -> Thunder 7

Prerequisites

These are the instructions to manually update your existing Thunder 6 installation to Thunder 7. If you want to do a fresh installation of thunder please visit install Thunder.

The most important changes are that we switched from our own "Thunder Admin" theme to the Gin theme and also replaced the Entity Browser module by the Media Library that is provided by Drupal core.

You have to make sure that your Thunder 6 project and all its dependencies are fully updated to the most current versions. Run the following command in your docroot:

drush ev "print drupal_get_installed_schema_version('thunder') . PHP_EOL;"
1

This should print the number 8326 or greater. If that is not the case, update your project.

cd ..
composer update
1
2

This should update to Thunder 6.3 or greater.

Now run database updates:

cd docroot
drush updb
1
2

You should at least see the Thunder 8326 schema update. If not, double check that the correct version of Thunder is installed, and that drush updb did not throw any errors.

Before you start with the code and database update please add the Entity Browser module, the Shariff module, and the Thunder Admin theme to your own composer.json. Both are no longer part of Thunder and can be removed after the update was successfully executed. Also the ckeditor module and the seven theme are needed for the update process.

composer require drupal/entity_browser drupal/thunder_admin drupal/shariff drupal/ckeditor drupal/seven
1

Also, if you have the liveblog, better_normalizers, google_analytics, ctools or adsense module enabled, you have to require them own your own, since Thunder removed them from the distribution.

composer require drupal/liveblog
composer require drupal/better_normalizers
composer require drupal/adsense
composer require drupal/google_analytics
composer require drupal/ctools
1
2
3
4
5

Thunder's new default frontend theme is Olivero, and we removed Thunder Base which was based on the Bartik theme, which was removed from Drupal 10 as well. In case you use Thunder Base as your theme, you have to switch to a different one before updating. We recommend to switch to Olivero as well.

In Thunder 7 we also upgraded the simple_sitemap module from version 3 to version 4. If your project has custom plugins, you have to update them to the new version. See the simple_sitemap documentationopen in new window.

Execute the update

All you need to do now is:

composer require thunder/thunder-distribution:~7.0@STABLE --no-update
composer update

drush updb
drush cr
1
2
3
4
5

After the update was executed successfully, you can remove the outdated extensions.

composer remove drupal/entity_browser drupal/thunder_admin
1