Cache issue after Drupal 10.4 upgrade

Created on 17 January 2025, 3 months ago

General breadcrumb tests failing on my site after Drupal 10.4

User warning: Trying to overwrite a cache redirect with one that has nothing in common, old one at address "languages:language_interface, theme, user.permissions" was pointing to "url.path.parent, url.path.is_front, route", new one points to "url.path, languages:language_url". in Drupal\Core\Cache\VariationCache->set() (line 138 of core/lib/Drupal/Core/Cache/VariationCache.php).
πŸ› Bug report
Status

Active

Version

2.0

Component

Code

Created by

πŸ‡ͺπŸ‡ΈSpain escuriola

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

  • Issue created by @escuriola
  • πŸ‡ͺπŸ‡ΈSpain escuriola

    After applied this patch tests are passing again.

  • πŸ‡ΊπŸ‡ΈUnited States Greg Boggs Portland Oregon

    The interface language and the content language are not the same cache contexts.

  • πŸ‡ΊπŸ‡ΈUnited States Greg Boggs Portland Oregon

    Also, why is url needed if url.path is already in the context? Here are the core contexts for reference:

    https://git.drupalcode.org/project/drupal/-/blob/11.x/core/modules/syste...

  • I currently have the same issue on 10.3.10 and patch #2 solved it. The bug on my website was fixed by adding the "url" in addition to the "url.path" that was already included in the context.

    I have a breadcrumb block, displayed within a hero block, which is in turn rendered inside the view template.
    - I created 2 views A and B and enabled ajax for both of them.
    - I added an exposed filter "Category" for view A and an exposed filter "Theme" for view B .
    - I have a custom hero block created in a separate module that renders both the page title and the breadcrumb.

    block template :
    
     {{ hero_heading }}
     {{ drupal_block('system_breadcrumb_block') }}
    

    - In the view template, I call this hero block using:

    {%
      set classes = [
        dom_id ? 'js-view-dom-id-' ~ dom_id,
      ]
    %}
    <div{{ attributes.addClass(classes) }}>
      {{ title_prefix }}
      {{ title }}
      {{ title_suffix }}
      
      {{ drupal_entity('block', 'test_heroblock', check_access=false) }}
    

    - When I navigate to the path of view A, I get the correct page title in the breadcrumb which is Page A.
    - I then filter using the exposed filter "Category". This is where ajax is being triggered and the hero block is rendered again and this time the breadcrumb also displays the right title which is "Page A".
    - I then visit the path of view B, and initially, I get the correct page title which is Page B. However, when I filter using the exposed filter "Theme", ajax is triggered and the breadcrumb is rendered again but this time it displays the wrong title: "Page A" instead of "Page B", as if whenever views/ajax is detected, the cached title will always be "Page A".

    Adding "url" solved it.

  • πŸ‡―πŸ‡΅Japan ptmkenny

    Added a link to the change record that is causing this.

  • First commit to issue fork.
  • πŸ‡¬πŸ‡§United Kingdom malcomio

    Need to test further, but seems to work, based on similar changes in other modules, e.g. https://git.drupalcode.org/project/menu_breadcrumb/-/merge_requests/27/d... for πŸ› Missing route cachability metadata. Active

Production build 0.71.5 2024