diff --git a/composer.json b/composer.json index 7bd3a0f57..2a55a56ca 100644 --- a/composer.json +++ b/composer.json @@ -130,6 +130,7 @@ "drupal/menu_link_weight": "^2.0", "drupal/menu_position": "^1.0@beta", "drupal/metatag": "^2.0", + "drupal/migrate_plus": "6.0.2", "drupal/migrate_source_csv": "^3.4", "drupal/mysql56": "^1.1", "drupal/nobots": "^1.0", diff --git a/composer.lock b/composer.lock index cbe430bbe..b637c8029 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "14a8c99831865ed8ed86a00c9adffbfb", + "content-hash": "bb282b6313dce9e958c4d5aae8d63e0d", "packages": [ { "name": "acquia/blt", @@ -8712,17 +8712,17 @@ }, { "name": "drupal/migrate_plus", - "version": "6.0.4", + "version": "6.0.2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/migrate_plus.git", - "reference": "6.0.4" + "reference": "6.0.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/migrate_plus-6.0.4.zip", - "reference": "6.0.4", - "shasum": "0357c416d2a9fd3f4211dd13c6585ed8072fabe7" + "url": "https://ftp.drupal.org/files/projects/migrate_plus-6.0.2.zip", + "reference": "6.0.2", + "shasum": "4315bc293aa75ea9247582d5d1925b075865e467" }, "require": { "drupal/core": ">=9.1", @@ -8739,8 +8739,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "6.0.4", - "datestamp": "1721745585", + "version": "6.0.2", + "datestamp": "1705424638", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" diff --git a/config/default/core.extension.yml b/config/default/core.extension.yml index 1fbe42e84..1e0d70d03 100644 --- a/config/default/core.extension.yml +++ b/config/default/core.extension.yml @@ -183,7 +183,6 @@ module: node_revision_delete: 0 oembed_providers: 0 options: 0 - page_cache: 0 paragraphs_browser: 0 paragraphs_edit: 0 path: 0 diff --git a/docroot/profiles/humsci/su_humsci_profile/su_humsci_profile.info.yml b/docroot/profiles/humsci/su_humsci_profile/su_humsci_profile.info.yml index d62951ea8..f79f49608 100644 --- a/docroot/profiles/humsci/su_humsci_profile/su_humsci_profile.info.yml +++ b/docroot/profiles/humsci/su_humsci_profile/su_humsci_profile.info.yml @@ -1,7 +1,7 @@ name: 'Stanford HumSci' type: profile description: 'Installation profile for HumSci Drupal' -version: 11.2.0 +version: 11.2.1 core_version_requirement: '^9.4 || ^10' themes: - material_admin @@ -36,7 +36,6 @@ dependencies: - 'drupal:migrate' - 'drupal:node' - 'drupal:options' - - 'drupal:page_cache' - 'drupal:path' - 'drupal:path_alias' - 'drupal:responsive_image' diff --git a/docroot/profiles/humsci/su_humsci_profile/su_humsci_profile.install b/docroot/profiles/humsci/su_humsci_profile/su_humsci_profile.install index a174a7505..8319cdabd 100644 --- a/docroot/profiles/humsci/su_humsci_profile/su_humsci_profile.install +++ b/docroot/profiles/humsci/su_humsci_profile/su_humsci_profile.install @@ -915,3 +915,11 @@ function su_humsci_profile_update_9707() { // Uninstall eck module. \Drupal::service('module_installer')->uninstall(['eck']); } + + +/** + * Uninstall page_cache. + */ +function su_humsci_profile_update_9708() { + \Drupal::service('module_installer')->uninstall(['page_cache']); +}