From bd2bca2223885c713bba7d6ce48a67e4b2cebaa5 Mon Sep 17 00:00:00 2001 From: Ryan Wagner Date: Wed, 27 Mar 2024 13:09:23 -0400 Subject: [PATCH 1/2] [BUGS-5816] Provides update notes for PAPC Drupal Module update. --- source/releasenotes/2024-03-26-papc-drupal-file-cache.md | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 source/releasenotes/2024-03-26-papc-drupal-file-cache.md diff --git a/source/releasenotes/2024-03-26-papc-drupal-file-cache.md b/source/releasenotes/2024-03-26-papc-drupal-file-cache.md new file mode 100644 index 0000000000..2ce56f07f2 --- /dev/null +++ b/source/releasenotes/2024-03-26-papc-drupal-file-cache.md @@ -0,0 +1,8 @@ +--- +title: Pantheon Advanced Page Cache Drupal File Caching Improvements +published_date: "2024-03-26" +categories: [new-feature, drupal, tools-apis, modules] +--- +The [Pantheon Advanced Page Cache Module](https://www.drupal.org/project/pantheon_advanced_page_cache) has received an update in the 2.2.0 release which resolves [Issues #3337669](https://www.drupal.org/project/pantheon_advanced_page_cache/issues/3337669) and provides some additional enhancements. Now, when any file is updated inside the Drupal File system, that file will have its edge cache cleared immediately and new content will be shown. + +Technical Details: The cache clearing is specifically triggered by any action which invokes the [update file hook](https://api.drupal.org/api/drupal/core%21lib%21Drupal%21Core%21Entity%21entity.api.php/function/hook_entity_update/10). If the file is an image, all image styles will also have their edge cache entry cleared. From 33336a0eb2f86bca6ffff9918f051b8a7bfdd5dc Mon Sep 17 00:00:00 2001 From: Ryan Wagner Date: Wed, 27 Mar 2024 16:06:28 -0400 Subject: [PATCH 2/2] [BUGS-5816]: Updates styling to match other notes --- source/releasenotes/2024-03-26-papc-drupal-file-cache.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/source/releasenotes/2024-03-26-papc-drupal-file-cache.md b/source/releasenotes/2024-03-26-papc-drupal-file-cache.md index 2ce56f07f2..4a83263302 100644 --- a/source/releasenotes/2024-03-26-papc-drupal-file-cache.md +++ b/source/releasenotes/2024-03-26-papc-drupal-file-cache.md @@ -3,6 +3,10 @@ title: Pantheon Advanced Page Cache Drupal File Caching Improvements published_date: "2024-03-26" categories: [new-feature, drupal, tools-apis, modules] --- -The [Pantheon Advanced Page Cache Module](https://www.drupal.org/project/pantheon_advanced_page_cache) has received an update in the 2.2.0 release which resolves [Issues #3337669](https://www.drupal.org/project/pantheon_advanced_page_cache/issues/3337669) and provides some additional enhancements. Now, when any file is updated inside the Drupal File system, that file will have its edge cache cleared immediately and new content will be shown. +The [Pantheon Advanced Page Cache Module](https://www.drupal.org/project/pantheon_advanced_page_cache) has received an update in the 2.2.0 release which resolves [Issue #3337669](https://www.drupal.org/project/pantheon_advanced_page_cache/issues/3337669) and provides some additional enhancements. Now, when any file is updated inside the Drupal File system, that file will have its edge cache cleared immediately and new content will be shown. -Technical Details: The cache clearing is specifically triggered by any action which invokes the [update file hook](https://api.drupal.org/api/drupal/core%21lib%21Drupal%21Core%21Entity%21entity.api.php/function/hook_entity_update/10). If the file is an image, all image styles will also have their edge cache entry cleared. +Some Technical Details: + +- The cache clearing is specifically triggered by any action which invokes the [update file hook](https://api.drupal.org/api/drupal/core%21lib%21Drupal%21Core%21Entity%21entity.api.php/function/hook_entity_update/10). + +- If the file is an image, all image styles will also have their edge cache entry cleared.