From 6ca9051db88ab4ad20e0866b61347842fe2ff5f0 Mon Sep 17 00:00:00 2001 From: Mike Decker Date: Wed, 10 Apr 2024 08:49:05 -0700 Subject: [PATCH] D8CORE-7342 Disable page_cache_query_ignore module --- composer.json | 3 --- config/default/core.extension.yml | 1 - config/default/page_cache_query_ignore.settings.yml | 6 ------ .../humsci/su_humsci_profile/su_humsci_profile.install | 7 +++++++ 4 files changed, 7 insertions(+), 10 deletions(-) delete mode 100644 config/default/page_cache_query_ignore.settings.yml diff --git a/composer.json b/composer.json index c5be196d06..1d47854c2a 100644 --- a/composer.json +++ b/composer.json @@ -269,9 +269,6 @@ "drupal/migrate_plus": { "https://www.drupal.org/project/migrate_plus/issues/2837684": "https://www.drupal.org/files/issues/2023-01-13/2837684-14-migrate-plus-xml-return-as-xml.patch" }, - "drupal/page_cache_query_ignore": { - "https://www.drupal.org/project/page_cache_query_ignore/issues/3336993": "https://www.drupal.org/files/issues/2023-01-27/3336993-get_config.patch" - }, "drupal/paragraphs": { "https://www.drupal.org/project/paragraphs/issues/2895561": "https://www.drupal.org/files/issues/2021-05-06/paragraphs-2895561-32.patch" }, diff --git a/config/default/core.extension.yml b/config/default/core.extension.yml index 36528b2d57..37dbc114b2 100644 --- a/config/default/core.extension.yml +++ b/config/default/core.extension.yml @@ -185,7 +185,6 @@ module: oembed_providers: 0 options: 0 page_cache: 0 - page_cache_query_ignore: 0 paragraphs_browser: 0 paragraphs_edit: 0 path: 0 diff --git a/config/default/page_cache_query_ignore.settings.yml b/config/default/page_cache_query_ignore.settings.yml deleted file mode 100644 index e1d8de45a0..0000000000 --- a/config/default/page_cache_query_ignore.settings.yml +++ /dev/null @@ -1,6 +0,0 @@ -_core: - default_config_hash: UPWJFuty7hCczn4qUNvoIaa01y3kIPas_9tcDzItcoQ -query_parameters: - - search - - page -ignore_action: include 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 a6d1498ea0..9acfeebbab 100644 --- a/docroot/profiles/humsci/su_humsci_profile/su_humsci_profile.install +++ b/docroot/profiles/humsci/su_humsci_profile/su_humsci_profile.install @@ -567,3 +567,10 @@ function _su_humsci_profile_reset_node_changed_time(NodeInterface $node, int $ch function su_humsci_profile_update_9609() { \Drupal::service('module_installer')->uninstall(['chosen']); } + +/** + * Disable page_cache_query_ignore. + */ +function su_humsci_profile_update_9610() { + \Drupal::service('module_installer')->uninstall(['page_cache_query_ignore']); +}