title | issue | author | author_email |
---|---|---|---|
Remove http cache deprecations |
NEXT-30261 |
Oliver Skroblin |
- Removed
Shopware\Storefront\Framework\Cache\ReverseProxy\*
, moved it toShopware\Core\Framework\Adapter\Cache\ReverseProxy\*
- Removed
storefront.reverse_proxy
andstorefront.http_cache
, now stored undershopware.http_cache.reverse_proxy
andshopware.http_cache
- Changed
\Shopware\Core\Framework\Adapter\Kernel\HttpCacheKernel::__construct
signature - Removed
Shopware\Core\Framework\Adapter\Cache\InvalidatorStorage\CacheInvalidatorStorage
- Removed
Shopware\Core\Framework\Api\Controller\CacheController::clearCacheAndScheduleWarmUp
- Removed
/api/_action/cache_warmup
endpoint
The reverse proxy and http cache config has been moved from storefront.http_cache
and storefront.reverse_proxy
to shopware.http_cache
and shopware.http_cache.reverse_proxy
.
Before:
storefront:
reverse_proxy:
enabled: true
...
http_cache:
ignored_url_parameters: true
...
After:
shopware:
http_cache:
reverse_proxy:
enabled: true
...
ignored_url_parameters: true
...