Site Building

13.6. Updating a Module for Drupal 8, 9, 10, and 11

Goal

Update a contributed module and run the Database updates script.

Site prerequisites

Steps

Sprout Video

Before you start, check for module-specific update instructions. Read and understand all module-specific requirements before proceeding with the updates. To find instructions, check the module’s project page Read Documentation link.

To view further instructions, after downloading the updated files, look for README.txt, INSTALL.txt, and UPGRADE.txt that come with the module. Also, review the release notes on the project page by clicking the version number you’re downloading.

Image
Release notes link

Updating a module requires first putting your site into maintenance mode, then obtaining the new code files and applying any required database updates, then finally taking the site out of maintenance mode.

You can update the code for a contributed module using Composer. If you are updating a custom module rather than a contributed module, obtain the new module files, then continue with instructions for running the database updates via the administrative interface below.

This assumes that you are using Composer to manage the files in your site; see Section 3.5, “Using Composer to Download and Update Files”.

Update a contributed module with Composer

  1. Put your site in maintenance mode. See Section 11.2, “Enabling and Disabling Maintenance Mode”.
  2. In the Manage administrative menu, navigate to Reports > Available updates > Update (admin/reports/updates).
  3. Find and check the module in the list. Click Download these updates for the module.

    Image
    Available updates

  4. Determine the short name of the project you want to update. For contributed modules and themes, it is the last part of the URL of the project page; for example, the Geofield module, at https://www.drupal.org/project/geofield, has short name geofield.
  5. If you want to update to the latest stable release, use the following command, substituting the short name of the project to be updated for geofield:

    composer update drupal/geofield --with-dependencies

+ To learn how to download specific versions see Section 3.5, “Using Composer to Download and Update Files”.

  1. After obtaining the new module files run any database updates page by typing the URL example.com/update.php in your browser.
  2. Click Continue to run the updates. The database update scripts will be executed.
  3. Click Administration pages to return to the administration section of your site.
  4. Take your site out of maintenance mode. See Section 11.2, “Enabling and Disabling Maintenance Mode”.
  5. Clear the Drupal cache (refer to Section 12.2, “Clearing the Cache”).

Expand your understanding

Drupal User Guide