You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix: The cache flushing was handled using a PSR CacheInterface method (clear) instead of the Laravel-specific method (flush). Despite this should have had the same effect, calling clear on Laravel caches purges the entire store, even if called on a TaggedStore. This is a bug in Laravel, but they won't fix it.
Fix: If the response cache was used with a long-running application server, such as Octane, and the cache would be enabled or disabled at runtime, this change may in some circumstances have not been picked up.