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
Marked as low priority because while the caching is broken, things still work perfectly fine on the front-end. So fixing this would only net a tiny performance benefit
Non issue in CMS 5 because the cache key validation logic isn't called
Discovered during #10478
The tests in CMS4 VersionedProviderTest currently pass when they kind of should not
The following
$key
assignments in VersionProvider generate keys with invalid charactersWhere $key is a filesystem path
$key = sprintf('%s-%s', $this->getComposerLockPath(), 'all');
$key = sprintf('%s-%s', $this->getComposerLockPath(), $module);
The contains the
/
character, which is invalid - https://github.com/symfony/cache-contracts/blob/main/ItemInterface.php#L43Called via:
https://github.com/symfony/cache/blob/4.4/CacheItem.php#L170
https://github.com/symfony/cache/blob/4.4/Simple/AbstractCache.php#L77
Marked as low priority because while the caching is broken, things still work perfectly fine on the front-end. So fixing this would only net a tiny performance benefit
Non issue in CMS 5 because the cache key validation logic isn't calledPR
The text was updated successfully, but these errors were encountered: