If you are already using BLT via Composer, you can update to the latest version of BLT using composer.
-
To update to the latest version of BLT that is compatible with your existing dependencies, run the following commands:
composer update acquia/blt --with-dependencies
-
Sometimes, the first command will fail to update to the latest version of BLT. This is typically because some other dependency prevents it. If this happens, run:
rm -rf vendor && composer require acquia/blt:^[latest-version] --no-update && composer update
Where
[latest-version]
is the latest version of BLT. E.g.,8.7.0
.This will cause Composer to update all of your dependencies (in accordance with your version constraints) and permit the latest version of BLT to be installed.
-
Check the release information to see if there are special update instructions for the new version.
-
Review and commit changes to your project files.
-
Rarely, you may need to refresh your local environment via
blt setup
. This will drop your local database and re-install Drupal.
By default BLT will modify a handful of files in your project to conform to the upstream template. If you'd like to prevent this, set extra.blt.update
to false
in composer.json
:
"extra": {
"blt": {
"update": false
}
}
Please not that if you choose to do this, it is your responsibility to track upstream changes. This is very likely to cause issues when you upgrade BLT to a new version.
If you are using an older version of BLT that was not installed using Composer, you may update to the Composer-managed version by running the following commands:
-
Remove any dependencies that may conflict with upstream acquia/blt. You may add these back later after the upgrade, if necessary.
composer remove drush/drush drupal/console phing/phing phpunit/phpunit squizlabs/php_codesniffer symfony/yaml drupal/coder symfony/console --no-interaction --no-update composer remove drush/drush drupal/console phing/phing phpunit/phpunit squizlabs/php_codesniffer symfony/yaml drupal/coder symfony/console --no-interaction --no-update --dev composer config minimum-stability dev
-
(conditional) If you are using Lightning, verify that your version constraint allows it to be updated to the latest stable version:
composer require drupal/lightning:~8 --no-update
-
Require acquia/blt version 8.3.0 as a dependency:
composer require acquia/blt:8.3.0 --no-update
-
Update all dependencies:
composer update
-
Execute update script:
./vendor/acquia/blt/scripts/blt/convert-to-composer.sh
-
Upgrade to the latest version of BLT:
composer require acquia/blt:^8.6.15 --no-update composer update
-
If using Travis CI, re-initialize .travis.yml and re-apply customizations:
rm .travis.yml && blt ci:travis:init
-
Cleanup deprecated files
rm -rf .git/hooks && mkdir .git/hooks blt cleanup
-
If using Drupal VM, re-create VM:
blt vm:nuke blt vm
Review and commit changes to your project files. For customized files like .travis.yml
or docroot/sites/default/settings.php
it is recommended that you use git add -p
to select which specific line changes you'd like to stage and commit.