From cb5e4386f8842dad2d54530ffbc0c97aec72a55a Mon Sep 17 00:00:00 2001 From: Nyholm Date: Mon, 16 Dec 2019 22:43:45 +0100 Subject: [PATCH] Prepare for 1.7.0 --- CHANGELOG.md | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ffe9ddd..557e211 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,11 @@ # Change Log -## 1.7.0 - unreleased +## 1.7.0 - 2019-12-17 ### Added +* Support for Symfony 5. +* Support for PSR-17 `StreamFactoryInterface`. * Added `blacklisted_paths` option, which takes an array of `strings` (regular expressions) and allows to define paths, that shall not be cached in any case. ## 1.6.0 - 2019-01-23 @@ -21,18 +23,18 @@ ### Changed -* Removed check if etag is a string. Etag can never be a string, it is always an array. +* Removed check if etag is a string. Etag can never be a string, it is always an array. ## 1.4.0 - 2017-04-05 -### Added +### Added - `CacheKeyGenerator` interface that allow you to configure how the PSR-6 cache key is created. There are two implementations of this interface: `SimpleGenerator` (default) and `HeaderCacheKeyGenerator`. ### Fixed -- Issue where deprecation warning always was triggered. Not it is just triggered if `respect_cache_headers` is used. +- Issue where deprecation warning always was triggered. Not it is just triggered if `respect_cache_headers` is used. ## 1.3.0 - 2017-03-28 @@ -40,13 +42,13 @@ of this interface: `SimpleGenerator` (default) and `HeaderCacheKeyGenerator`. - New `methods` option which allows to configure the request methods which can be cached. - New `respect_response_cache_directives` option to define specific cache directives to respect when handling responses. -- Introduced `CachePlugin::clientCache` and `CachePlugin::serverCache` factory methods to easily setup the plugin with +- Introduced `CachePlugin::clientCache` and `CachePlugin::serverCache` factory methods to easily setup the plugin with the correct config settigns for each usecase. ### Changed - The `no-cache` directive is now respected by the plugin and will not cache the response. If you need the previous behaviour, configure `respect_response_cache_directives`. -- We always rewind the stream after loading response from cache. +- We always rewind the stream after loading response from cache. ### Deprecated