Andrea DeMers

How I Update Craft CMS 3.6.x and Craft CMS Plugins

Published , updated

This article describes the steps that I follow to update Craft 3.6.x and plugins in a stress-free and reliable manner. 🧘

Jonathan bean ywnnwzcd R5o unsplash 1
Photo by Jonathan Bean on Unsplash

Still running Craft 3.5.x? Checkout out How I Update Craft CMS 3.5.x and Craft CMS Plugins.

Update apnea: the temporary cessation of breath when updating Craft and Craft plugins.

Assumptions

  • Craft 3.6.x is installed in local development and production environments.
  • Composer 1.3.0 or later is installed in local development and production environments. If you're new to Composer or need a refresher, read this excellent article titled Composer for the Rest of Us by Andrew Welch.
  • Access to a command line interface (CLI) in local development and production environments.
  • The exact versions of Craft and all plugin packages are specified in composer.json to avoid unintended updates/upgrades when running composer update in your local development environment. The one exception I make is for the vlucas/phpdotenv package.

Changes in Craft 3.6.x

The migrate/all command now outputs all pending migrations, and if the shell is interactive, it will prompt the user for confirmation before running them (just like migrate/up). This change doesn’t affect most deployment tools, as they will typically run terminal commands via non-interactive shells, however that’s not always the case.Upgrading to Craft 3.6

In Local Development Environment

Updating Craft

  1. Confirm the latest version of Craft by visiting the Update utility in the Craft control panel at http://example.test/admin/utilities/updates.
  2. Edit the craftcms/cms line in the composer.json file to change the Craft Composer package to the latest version.
  3. From the command line in the Craft project root, run:
    1. ./craft db/backup to backup the Craft database.
    2. composer update to update the Craft Composer package to the version specified in composer.json. See step 2.
    3. ./craft migrate/all --interactive=0 to run Craft database migrations. The --interactive=0 flag forces the command to run without user input.
    4. ./craft project-config/apply to apply Craft project config file changes.
    5. ./craft clear-caches/all to clear all the caches.
  4. Verify that Craft has been updated to the specified version and is still working as expected.

Updating a Craft Plugin

  1. Confirm the latest version of the plugin by visiting the Update utility in the Craft control panel at http://example.test/admin/utilities/updates.
  2. Edit the vendor/package-name line in the composer.json file to change the plugin Composer package to the latest version.
  3. From the command line in the Craft project root, run:
    1. ./craft db/backup to backup the Craft database.
    2. composer update to update the plugin Composer package to the version specified in composer.json. See step 2.
    3. ./craft migrate/all --interactive=0 to run plugin database migrations. The --interactive=0 flag forces the command to run without user input.
    4. ./craft project-config/apply to apply project config file changes.
    5. ./craft clear-caches/all to clear all the caches.
  4. Verify that the plugin has been updated to the specified version and is still working as expected.
  5. Repeat steps 1-4 for all other plugins that I want to update.

In Production Environment

Installing Updated Craft CMS and/or Plugins

  1. From the command line in the Craft project root, run:
    1. ./craft db/backup to backup the Craft database.
    2. composer install to install the Craft and/or plugin Composer packages that I previously updated in my local development environment.
    3. ./craft migrate/all --interactive=0 to run all database migrations. The --interactive=0 flag forces the command to run without user input.
    4. ./craft project-config/apply to apply project config file changes.
    5. ./craft clear-caches/all to clear all the caches.
  2. Verify that Craft and/or plugins have been updated to the specified versions and are still working as expected.

Automating the Craft CLI Commands

To avoid running the above Craft CLI commands manually, I've added the following Composer command events with the relevant Craft CLI commands to the scripts section of my Craft project's composer.json file.

"pre-update-cmd": [
    "@php craft db/backup"
],
"post-update-cmd": [
    "@php craft migrate/all --interactive=0",
    "@php craft project-config/apply",
    "@php craft clear-caches/all"
],
"pre-install-cmd": [
    "@php craft db/backup"
],
"post-install-cmd": [
    "@php craft migrate/all --interactive=0",
    "@php craft project-config/apply",
    "@php craft clear-caches/all"
]
composer.json file in Craft project root

By following the steps described above, I can calmly and confidently update Craft and plugins in my local development and production environments.

⊹╰(⌣ʟ⌣)╯⊹