From 3131f789ae05bb727e8f8b65981f6957391a5e3d Mon Sep 17 00:00:00 2001 From: Seyed Morteza Ebadi <47121888+seyed-me@users.noreply.github.com> Date: Fri, 14 May 2021 19:39:09 +0430 Subject: [PATCH 1/4] Add Octane cache store (#5610) --- config/cache.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/config/cache.php b/config/cache.php index e32a2fd3..32fd2039 100644 --- a/config/cache.php +++ b/config/cache.php @@ -37,6 +37,10 @@ 'driver' => 'apc', ], + 'octane' => [ + 'driver' => 'octane', + ], + 'array' => [ 'driver' => 'array', 'serialize' => false, From 637c85d624bf19355025b68aaa90e6cadf8a2881 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Fri, 14 May 2021 10:09:46 -0500 Subject: [PATCH 2/4] wip --- config/cache.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/config/cache.php b/config/cache.php index 32fd2039..8736c7a7 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", "null" + | "memcached", "redis", "dynamodb", "octane", "null" | */ @@ -37,10 +37,6 @@ 'driver' => 'apc', ], - 'octane' => [ - 'driver' => 'octane', - ], - 'array' => [ 'driver' => 'array', 'serialize' => false, @@ -92,6 +88,10 @@ 'endpoint' => env('DYNAMODB_ENDPOINT'), ], + 'octane' => [ + 'driver' => 'octane', + ], + ], /* From d3efbaab58945ee97c4719283b04632fe474c0e7 Mon Sep 17 00:00:00 2001 From: Hiren Keraliya Date: Mon, 17 May 2021 18:45:26 +0530 Subject: [PATCH 3/4] [8.x] Fixed grammar mistake (#5611) * Grammar mistakes * Update session.php Co-authored-by: Taylor Otwell --- config/session.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/session.php b/config/session.php index 4e0f66cd..ac0802b1 100644 --- a/config/session.php +++ b/config/session.php @@ -164,7 +164,7 @@ | | By setting this option to true, session cookies will only be sent back | to the server if the browser has a HTTPS connection. This will keep - | the cookie from being sent to you if it can not be done securely. + | the cookie from being sent to you when it can't be done securely. | */ From afa06fac2aa9a83ad843b9968a21bb013f015704 Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Tue, 18 May 2021 17:37:20 +0200 Subject: [PATCH 4/4] Update CHANGELOG.md --- CHANGELOG.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b5a89ee9..a7349fa0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v8.5.17...8.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v8.5.18...8.x) + + +## [v8.5.18 (2021-05-18)](https://github.com/laravel/laravel/compare/v8.5.17...v8.5.18) + +### Changed +- Add Octane cache store ([#5610](https://github.com/laravel/laravel/pull/5610), [637c85d](https://github.com/laravel/laravel/commit/637c85d624bf19355025b68aaa90e6cadf8a2881)) ## [v8.5.17 (2021-05-11)](https://github.com/laravel/laravel/compare/v8.5.16...v8.5.17)