From bc339f712389cf536ad7e340453f35d1dd865777 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Wed, 16 Dec 2020 08:44:41 -0600 Subject: [PATCH 1/3] add lock_connection --- config/cache.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/cache.php b/config/cache.php index 9473acc9..963adfb5 100644 --- a/config/cache.php +++ b/config/cache.php @@ -46,6 +46,7 @@ 'driver' => 'database', 'table' => 'cache', 'connection' => null, + 'lock_connection' => null, ], 'file' => [ @@ -75,6 +76,7 @@ 'redis' => [ 'driver' => 'redis', 'connection' => 'cache', + 'lock_connection' => 'cache', ], 'dynamodb' => [ From e8788a768899ff2a2ef1fe78e24b46e6e10175dc Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Wed, 16 Dec 2020 15:51:18 -0600 Subject: [PATCH 2/3] update cache --- config/cache.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/cache.php b/config/cache.php index 963adfb5..e32a2fd3 100644 --- a/config/cache.php +++ b/config/cache.php @@ -76,7 +76,7 @@ 'redis' => [ 'driver' => 'redis', 'connection' => 'cache', - 'lock_connection' => 'cache', + 'lock_connection' => 'default', ], 'dynamodb' => [ From 454f0e1abeeb22cb4af317b837777ad7f169e497 Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Tue, 22 Dec 2020 18:07:44 +0100 Subject: [PATCH 3/3] Update CHANGELOG.md --- CHANGELOG.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 58366dbf..5859655e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v8.5.5...8.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v8.5.6...8.x) + + +## [v8.5.6 (2020-12-22)](https://github.com/laravel/laravel/compare/v8.5.5...v8.5.6) + +### Added +- Add `lock_connection` ([](https://github.com/laravel/laravel/commit/bc339f712389cf536ad7e340453f35d1dd865777), [e8788a7](https://github.com/laravel/laravel/commit/e8788a768899ff2a2ef1fe78e24b46e6e10175dc)) ## [v8.5.5 (2020-12-12)](https://github.com/laravel/laravel/compare/v8.5.4...v8.5.5)