Update to Drupal 8.1.8. For more information, see https://www.drupal.org/project/drupal/releases/8.1.8

This commit is contained in:
Pantheon Automation 2016-08-03 13:22:33 -07:00 committed by Greg Anderson
parent e9f047ccf8
commit f9f23cdf38
312 changed files with 6751 additions and 1546 deletions

View file

@ -266,6 +266,14 @@ class MigrateUpgradeForm extends ConfirmFormBase {
'source_module' => 'image',
'destination_module' => 'image',
],
'd6_language_content_settings' => [
'source_module' => 'locale',
'destination_module' => 'language',
],
'd7_language_content_settings' => [
'source_module' => 'locale',
'destination_module' => 'language',
],
'd7_language_negotiation_settings' => [
'source_module' => 'locale',
'destination_module' => 'language',
@ -290,6 +298,10 @@ class MigrateUpgradeForm extends ConfirmFormBase {
'source_module' => 'node',
'destination_module' => 'node',
],
'd6_node_translation' => [
'source_module' => 'node',
'destination_module' => 'node',
],
'd6_node_revision' => [
'source_module' => 'node',
'destination_module' => 'node',

View file

@ -30,7 +30,7 @@ abstract class MigrateUpgradeTestBase extends WebTestBase {
*
* @var array
*/
public static $modules = ['migrate_drupal_ui', 'telephone'];
public static $modules = ['language', 'content_translation', 'migrate_drupal_ui', 'telephone'];
/**
* {@inheritdoc}

View file

@ -40,14 +40,16 @@ class MigrateUpgrade6Test extends MigrateUpgradeTestBase {
'comment' => 3,
'comment_type' => 2,
'contact_form' => 5,
'configurable_language' => 5,
'editor' => 2,
'field_config' => 62,
'field_config' => 63,
'field_storage_config' => 43,
'file' => 7,
'filter_format' => 7,
'image_style' => 5,
'language_content_settings' => 2,
'migration' => 105,
'node' => 9,
'node' => 10,
'node_type' => 11,
'rdf_mapping' => 5,
'search_page' => 2,
@ -57,7 +59,7 @@ class MigrateUpgrade6Test extends MigrateUpgradeTestBase {
'menu' => 8,
'taxonomy_term' => 6,
'taxonomy_vocabulary' => 6,
'tour' => 1,
'tour' => 4,
'user' => 7,
'user_role' => 6,
'menu_link_content' => 4,

View file

@ -39,13 +39,16 @@ class MigrateUpgrade7Test extends MigrateUpgradeTestBase {
'block_content_type' => 1,
'comment' => 1,
'comment_type' => 7,
// Module 'language' comes with 'en', 'und', 'zxx'. Migration adds 'is'.
'configurable_language' => 4,
'contact_form' => 3,
'editor' => 2,
'field_config' => 41,
'field_storage_config' => 31,
'field_config' => 43,
'field_storage_config' => 32,
'file' => 1,
'filter_format' => 7,
'image_style' => 6,
'language_content_settings' => 1,
'migration' => 59,
'node' => 2,
'node_type' => 6,
@ -57,16 +60,16 @@ class MigrateUpgrade7Test extends MigrateUpgradeTestBase {
'menu' => 10,
'taxonomy_term' => 18,
'taxonomy_vocabulary' => 3,
'tour' => 1,
'tour' => 4,
'user' => 3,
'user_role' => 4,
'menu_link_content' => 9,
'view' => 12,
'date_format' => 11,
'entity_form_display' => 15,
'entity_form_display' => 16,
'entity_form_mode' => 1,
'entity_view_display' => 22,
'entity_view_mode' => 10,
'entity_view_display' => 24,
'entity_view_mode' => 11,
'base_field_override' => 7,
];
}