From 3c814aa8e2c842efacc3e2407abf1b58b3e92bce Mon Sep 17 00:00:00 2001 From: Paras Malhotra Date: Wed, 18 Nov 2020 19:15:08 +0530 Subject: [PATCH 1/2] [8.x] Add missing null cache driver in config/cache.php (#5472) --- config/cache.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/cache.php b/config/cache.php index 7d5976ed..9473acc9 100644 --- a/config/cache.php +++ b/config/cache.php @@ -27,7 +27,7 @@ | same cache driver to group types of items stored in your caches. | | Supported drivers: "apc", "array", "database", "file", - | "memcached", "redis", "dynamodb" + | "memcached", "redis", "dynamodb", "null" | */ From 86b1b3f20a2fd120549f25bf7cf75bf467f5167b Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Tue, 24 Nov 2020 18:18:56 +0100 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fa89039e..80d51eb7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v8.4.2...8.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v8.4.3...8.x) + + +## [v8.4.3 (2020-11-24)](https://github.com/laravel/laravel/compare/v8.4.2...v8.4.3) + +### Added +- Add ably entry ([5182e9c](https://github.com/laravel/laravel/commit/5182e9c6de805e025fb4cfad63c210c3197002ab)) + +### Fixed +- Add missing null cache driver in `config/cache.php` ([#5472](https://github.com/laravel/laravel/pull/5472)) ## [v8.4.2 (2020-11-17)](https://github.com/laravel/laravel/compare/v8.4.1...v8.4.2)