Releases: FriendsOfSymfony/FOSHttpCacheBundle
Releases · FriendsOfSymfony/FOSHttpCacheBundle
1.3.6
1.3.5
- 0a17d0b Make tests pass on Symfony 2.8 deprecation notices (David de Boer)
- a89ae50 Only load test clients when needed (David de Boer)
- 37d6c93 Test against Symfony 2.8 (David de Boer)
- b75a42a Merge pull request #261 from Tobion/patch-1 (David Buchmann)
- 15cc7bb Fix dependency on a non-existent service "security.context" (Tobias Schultze)
- dad3372 Merge pull request #254 from XWB/cleanup (David de Boer)
- 04803a6 Removed whitespace (Karel Souffriau)
1.3.4
1.3.3
1.3.2
1.3.1
1.3.0
- Deprecated
CacheManager::tagResponse
in favor ofTagHandler::addTags
. - Added configuration for Symfony HttpCache client and HttpCache now loads purge and refresh handlers by default.
- Configured/annotated cache tags on subrequests (in Twig:
render(controller())
) are no longer ignored. Additionally, it is now possible to add tags from code before the response object has been created, by using the TagHandler, and from Twig with thefos_httpcache_tag
function. If you defined custom services for theInvalidateTagCommand
, you should now inject the TagHandler instead of the CacheManager. - Added configuration option for custom proxy client (#208)
- Added support for a simple Etag header in the header configuration (#207)
1.2.1
1.2.0
- Refactored the Symfony built-in HttpCache support to be extensible.
- Deprecated
FOS\HttpCacheBundle\HttpCache
in favor ofEventDispatchingHttpCache
. - BC break: If you overwrite
cleanupForwardRequest()
in your cache kernel, you need to extendFOS\HttpCache\SymfonyCache\UserContextSubscriber
and move that logic to the methodcleanupHashLookupRequest
in there.