Skip to content

4.2.0

Latest
Compare
Choose a tag to compare
@byrond byrond released this 14 Oct 20:48
7f7be9e

What's Changed

New Contributors

Full Changelog: 4.1.1...4.2.0

Updating to this release

If your project uses a custom version of acquia-get-backup or acquia-load-backup, it will continue to work as it did. However, if you want to use the version directly from the-build, make the following changes:

  • Update build.yml to include the correct settings for acquia-get-backup:
# Configuration for targets/acquia.xml
acquia:
  # Local path to store downloaded database backups.
  backups: 'artifacts/backups'
  # Site name as it appears in the Acquia Cloud list of applications.
  site: 'My Site'
  # Database name as it appears in the list of databases for the application.
  database: 'mysite'
  # Environment to pull database backup from (prod, test, or dev).
  env: prod
  • Ensure the following settings are correct in the project build.yml:
drupal:
  sites:
    default:
      # OPTIONAL: The Drupal database name defaults to the site's "dir" value.
      database:
        # DDEV's default first database name is "db".
        database: "db"

    # Defaults for all sites; these can be overridden for individual sites.
    _defaults:
      database:
        username: "db"
        password: "db"
        host: "db"