Feature The settings.php file is now preconfigured in Cloud IDE to
establish connection to the Cloud IDE database.
Feature Cloud IDE is now compatible with Drupal 9.
Change MySQL was upgraded to version 5.7.
Change Cloud IDE now supports PHP 7.3, which is the default PHP version.
Change Xdebug is now disabled by default to improve Cloud IDE performance. To enable Xdebug, see Enabling or disabling Xdebug.
Change Cloud IDE no longer supports phpenv.
Change Apache logs are now accessible to users.
Change The ads-refresh command now works without application
dependencies (such as Drush and Acquia BLT).
Change The Dev Studio CLI will now wait longer before timing out when creating a Cloud IDE.
Change The AH_SITE_ENVIRONMENT variable is now set to IDE which
allows for IDE-specific configuration overrides.
Since Cloud IDE uses a preconfigured settings.php file for
database credentials, Acquia BLT users may want to use the following code to
continue using local.settings.php:
if (EnvironmentDetector::getAhEnv() == 'IDE') {
require 'local.settings.php';
}