Skip to content

Releases: FriendsOfSymfony/FOSHttpCacheBundle

1.3.6

11 Dec 18:03
@dbu dbu
Compare
Choose a tag to compare
Merge pull request #268 from FriendsOfSymfony/symfony-3

Symfony 3

1.3.5

09 Dec 22:57
Compare
Choose a tag to compare
  • 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

30 Sep 07:03
Compare
Choose a tag to compare
  • Add compatibility with Symfony 2.8’s service validation by loading test clients only when needed.

1.3.3

20 Aug 07:03
@dbu dbu
Compare
Choose a tag to compare
  • fix configuration to make custom proxy client for the cache manager work

1.3.2

13 Jul 18:24
Compare
Choose a tag to compare
  • Fixed some status codes (such as 204 and 302) not triggering invalidation.

1.3.1

11 Jun 11:19
@dbu dbu
Compare
Choose a tag to compare
  • Fixed configuration handling with Symfony and NGINX cache clients. Cache tagging is now immediately reported to not work with those clients.

1.3.0

04 Jun 22:22
Compare
Choose a tag to compare
  • Deprecated CacheManager::tagResponse in favor of TagHandler::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 the fos_httpcache_tag function. If you defined custom services for the InvalidateTagCommand, 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

20 Feb 17:33
Compare
Choose a tag to compare
  • Add compatibility with TokenStorage introduced in Symfony 2.6 (#202)
  • Fix request_matcher and rule_matcher services not always being loaded (#194)
  • Fix documentation (#196, #198, #199)

1.2.0

18 Jan 20:54
Compare
Choose a tag to compare
  • Refactored the Symfony built-in HttpCache support to be extensible.
  • Deprecated FOS\HttpCacheBundle\HttpCache in favor of EventDispatchingHttpCache.
  • BC break: If you overwrite cleanupForwardRequest() in your cache kernel, you need to extend FOS\HttpCache\SymfonyCache\UserContextSubscriber and move that logic to the method cleanupHashLookupRequest in there.

1.1.1

28 Nov 14:57
@dbu dbu
Compare
Choose a tag to compare
  • Do not require a cache invalidation client when configuring the user context.
  • Fix typos and documentation cleanup