From b54ef297b3c723c8438596c6e6afef93a7458b98 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Mon, 9 Nov 2020 14:36:40 -0600 Subject: [PATCH 01/27] add auth line --- resources/lang/en/auth.php | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/lang/en/auth.php b/resources/lang/en/auth.php index e5506df2..6598e2c0 100644 --- a/resources/lang/en/auth.php +++ b/resources/lang/en/auth.php @@ -14,6 +14,7 @@ */ 'failed' => 'These credentials do not match our records.', + 'password' => 'The provided password is incorrect.', 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.', ]; From 3d7a5075e7db93a7df89c983c95d9016f448d3f9 Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Tue, 10 Nov 2020 15:57:51 +0100 Subject: [PATCH 02/27] Update CHANGELOG.md --- CHANGELOG.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index abd339dc..9543d618 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v8.4.0...8.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v8.4.1...8.x) + + +## [v8.4.1 (2020-11-10)](https://github.com/laravel/laravel/compare/v8.4.0...v8.4.1) + +### Changed +- Add auth line ([b54ef29](https://github.com/laravel/laravel/commit/b54ef297b3c723c8438596c6e6afef93a7458b98)) ## [v8.4.0 (2020-10-30)](https://github.com/laravel/laravel/compare/v8.3.0...v8.4.0) From aa6d3660114c93e537a52e0ba3c03071a7f3e67f Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 10 Nov 2020 14:18:52 -0600 Subject: [PATCH 03/27] add sanctum cookie endpoint to default cors paths --- config/cors.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/cors.php b/config/cors.php index 558369dc..8a39e6da 100644 --- a/config/cors.php +++ b/config/cors.php @@ -15,7 +15,7 @@ | */ - 'paths' => ['api/*'], + 'paths' => ['api/*', 'sanctum/csrf-cookie'], 'allowed_methods' => ['*'], From 3adc2196f79fa4d8470d41d5a7584f2b0432a6fc Mon Sep 17 00:00:00 2001 From: Iman Date: Thu, 12 Nov 2020 17:25:54 +0330 Subject: [PATCH 04/27] Modify the cache.php docblocks (#5468) In new versions of laravel we do not directly specify the "cache driver" anymore but rather a "cache store", so it does not make sense to mention the drivers up there since laravel supports any arbitrary values defined below it by the user. --- config/cache.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/cache.php b/config/cache.php index 4f41fdf9..7d5976ed 100644 --- a/config/cache.php +++ b/config/cache.php @@ -13,9 +13,6 @@ | using this caching library. This connection is used when another is | not explicitly specified when executing a given caching function. | - | Supported: "apc", "array", "database", "file", - | "memcached", "redis", "dynamodb" - | */ 'default' => env('CACHE_DRIVER', 'file'), @@ -29,6 +26,9 @@ | well as their drivers. You may even define multiple stores for the | same cache driver to group types of items stored in your caches. | + | Supported drivers: "apc", "array", "database", "file", + | "memcached", "redis", "dynamodb" + | */ 'stores' => [ From 4931af14006610bf8fd1f860cea1117c68133e94 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Sat, 14 Nov 2020 09:17:41 -0600 Subject: [PATCH 05/27] add stub handler --- app/Exceptions/Handler.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/Exceptions/Handler.php b/app/Exceptions/Handler.php index 7e40d735..f9644add 100644 --- a/app/Exceptions/Handler.php +++ b/app/Exceptions/Handler.php @@ -3,6 +3,7 @@ namespace App\Exceptions; use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler; +use Throwable; class Handler extends ExceptionHandler { @@ -32,6 +33,8 @@ class Handler extends ExceptionHandler */ public function register() { - // + $this->reportable(function (Throwable $e) { + // + }); } } From 9957559dc507a306ef42851abdb950f3c5c7af72 Mon Sep 17 00:00:00 2001 From: A-Maged Date: Tue, 17 Nov 2020 16:57:20 +0200 Subject: [PATCH 06/27] closed @auth correctly (#5471) --- resources/views/welcome.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/views/welcome.blade.php b/resources/views/welcome.blade.php index ed7110bb..e305e336 100644 --- a/resources/views/welcome.blade.php +++ b/resources/views/welcome.blade.php @@ -32,7 +32,7 @@ @if (Route::has('register')) Register @endif - @endif + @endauth @endif From e8498122a22745cf13e2d293e2160d914c04abbd Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Tue, 17 Nov 2020 17:40:17 +0100 Subject: [PATCH 07/27] Update CHANGELOG.md --- CHANGELOG.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9543d618..fa89039e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,17 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v8.4.1...8.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v8.4.2...8.x) + + +## [v8.4.2 (2020-11-17)](https://github.com/laravel/laravel/compare/v8.4.1...v8.4.2) + +### Changed +- Add sanctum cookie endpoint to default cors paths ([aa6d3660](https://github.com/laravel/laravel/commit/aa6d3660114c93e537a52e0ba3c03071a7f3e67f)) +- Modify the `cache.php` docblocks ([#5468](https://github.com/laravel/laravel/pull/5468)) +- Add stub handler ([4931af1](https://github.com/laravel/laravel/commit/4931af14006610bf8fd1f860cea1117c68133e94)) + +### Fixed +- Closed @auth correctly ([#5471](https://github.com/laravel/laravel/pull/5471)) ## [v8.4.1 (2020-11-10)](https://github.com/laravel/laravel/compare/v8.4.0...v8.4.1) From 5182e9c6de805e025fb4cfad63c210c3197002ab Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 17 Nov 2020 17:07:32 -0600 Subject: [PATCH 08/27] add ably entry --- config/broadcasting.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/config/broadcasting.php b/config/broadcasting.php index 3bba1103..ef208598 100644 --- a/config/broadcasting.php +++ b/config/broadcasting.php @@ -41,6 +41,11 @@ ], ], + 'ably' => [ + 'driver' => 'ably', + 'key' => env('ABLY_KEY'), + ], + 'redis' => [ 'driver' => 'redis', 'connection' => 'default', From 3c814aa8e2c842efacc3e2407abf1b58b3e92bce Mon Sep 17 00:00:00 2001 From: Paras Malhotra Date: Wed, 18 Nov 2020 19:15:08 +0530 Subject: [PATCH 09/27] [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 10/27] 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) From 612d16600419265566d01a19c852ddb13b5e9f4b Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 24 Nov 2020 16:10:36 -0600 Subject: [PATCH 11/27] comment out alias by default --- config/app.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/app.php b/config/app.php index 8409e00e..2a2f0ebe 100644 --- a/config/app.php +++ b/config/app.php @@ -215,7 +215,7 @@ 'Password' => Illuminate\Support\Facades\Password::class, 'Queue' => Illuminate\Support\Facades\Queue::class, 'Redirect' => Illuminate\Support\Facades\Redirect::class, - 'Redis' => Illuminate\Support\Facades\Redis::class, + // 'Redis' => Illuminate\Support\Facades\Redis::class, 'Request' => Illuminate\Support\Facades\Request::class, 'Response' => Illuminate\Support\Facades\Response::class, 'Route' => Illuminate\Support\Facades\Route::class, From 82213fbf40fc4ec687781d0b93ff60a7de536913 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Wed, 25 Nov 2020 10:24:16 -0600 Subject: [PATCH 12/27] remove cloud option --- config/filesystems.php | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/config/filesystems.php b/config/filesystems.php index 94c81126..10c9d9be 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -15,19 +15,6 @@ 'default' => env('FILESYSTEM_DRIVER', 'local'), - /* - |-------------------------------------------------------------------------- - | Default Cloud Filesystem Disk - |-------------------------------------------------------------------------- - | - | Many applications store files both locally and in the cloud. For this - | reason, you may specify a default "cloud" driver here. This driver - | will be bound as the Cloud disk implementation in the container. - | - */ - - 'cloud' => env('FILESYSTEM_CLOUD', 's3'), - /* |-------------------------------------------------------------------------- | Filesystem Disks From f6f772ba5490de48d8a79747b39540afe61eed24 Mon Sep 17 00:00:00 2001 From: Daniel Coulbourne Date: Thu, 26 Nov 2020 09:38:56 -0500 Subject: [PATCH 13/27] Uncomment TrustHosts middleware to enable it by default. (#5477) --- app/Http/Kernel.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Kernel.php b/app/Http/Kernel.php index 30020a50..21a8754b 100644 --- a/app/Http/Kernel.php +++ b/app/Http/Kernel.php @@ -14,7 +14,7 @@ class Kernel extends HttpKernel * @var array */ protected $middleware = [ - // \App\Http\Middleware\TrustHosts::class, + \App\Http\Middleware\TrustHosts::class, \App\Http\Middleware\TrustProxies::class, \Fruitcake\Cors\HandleCors::class, \App\Http\Middleware\PreventRequestsDuringMaintenance::class, From 0717bb0291a51ab63dd220ce4db8b7fa82e23787 Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Tue, 1 Dec 2020 16:21:29 +0100 Subject: [PATCH 14/27] Update CHANGELOG.md --- CHANGELOG.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 80d51eb7..195610f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,16 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v8.4.3...8.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v8.4.4...8.x) + + +## [v8.4.4 (2020-12-01)](https://github.com/laravel/laravel/compare/v8.4.3...v8.4.4) + +### Changed +- Comment out `Redis` facade by default ([612d166](https://github.com/laravel/laravel/commit/612d16600419265566d01a19c852ddb13b5e9f4b)) +- Uncomment `TrustHosts` middleware to enable it by default ([#5477](https://github.com/laravel/laravel/pull/5477)) + +### Removed +- Remove cloud option ([82213fb](https://github.com/laravel/laravel/commit/82213fbf40fc4ec687781d0b93ff60a7de536913)) ## [v8.4.3 (2020-11-24)](https://github.com/laravel/laravel/compare/v8.4.2...v8.4.3) From a895748980b3e055ffcb68b6bc1c2e5fad6ecb08 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 8 Dec 2020 09:04:09 -0600 Subject: [PATCH 15/27] update env file for sail --- .env.example | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/.env.example b/.env.example index 7dc51e1f..c0502795 100644 --- a/.env.example +++ b/.env.example @@ -8,7 +8,8 @@ LOG_CHANNEL=stack LOG_LEVEL=debug DB_CONNECTION=mysql -DB_HOST=127.0.0.1 +# DB_HOST=127.0.0.1 +DB_HOST=mysql DB_PORT=3306 DB_DATABASE=laravel DB_USERNAME=root @@ -16,17 +17,21 @@ DB_PASSWORD= BROADCAST_DRIVER=log CACHE_DRIVER=file -QUEUE_CONNECTION=sync +QUEUE_CONNECTION=database SESSION_DRIVER=file SESSION_LIFETIME=120 -REDIS_HOST=127.0.0.1 +# MEMCACHED_HOST=127.0.0.1 +MEMCACHED_HOST=memcached + +# REDIS_HOST=127.0.0.1 +REDIS_HOST=redis REDIS_PASSWORD=null REDIS_PORT=6379 MAIL_MAILER=smtp -MAIL_HOST=smtp.mailtrap.io -MAIL_PORT=2525 +MAIL_HOST=mailhog +MAIL_PORT=1025 MAIL_USERNAME=null MAIL_PASSWORD=null MAIL_ENCRYPTION=null From bcd87e80ac7fa6a5daf0e549059ad7cb0b41ce75 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 8 Dec 2020 09:38:54 -0600 Subject: [PATCH 16/27] add sail file --- docker-compose.yml | 74 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 docker-compose.yml diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 00000000..089e4856 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,74 @@ +# For more information: https://laravel.com/docs/sail +version: '3' +services: + laravel.test: + build: + context: ./vendor/laravel/sail/runtimes/8.0 + dockerfile: Dockerfile + args: + WWWGROUP: '${WWWGROUP}' + image: sail-8.0/app + ports: + - '${APP_PORT:-80}:80' + environment: + WWWUSER: '${WWWUSER}' + LARAVEL_SAIL: 1 + volumes: + - '.:/var/www/html' + networks: + - sail + depends_on: + - mysql + - redis + # - selenium + # selenium: + # image: 'selenium/standalone-chrome' + # volumes: + # - '/dev/shm:/dev/shm' + # networks: + # - sail + # depends_on: + # - laravel.test + mysql: + image: 'mysql:8.0' + ports: + - '${DB_PORT}:3306' + environment: + MYSQL_ROOT_PASSWORD: '${DB_PASSWORD}' + MYSQL_DATABASE: '${DB_DATABASE}' + MYSQL_USER: '${DB_USERNAME}' + MYSQL_PASSWORD: '${DB_PASSWORD}' + MYSQL_ALLOW_EMPTY_PASSWORD: 'yes' + volumes: + - 'sailmysql:/var/lib/mysql' + networks: + - sail + redis: + image: 'redis:alpine' + ports: + - '${REDIS_PORT}:6379' + volumes: + - 'sailredis:/data' + networks: + - sail + # memcached: + # image: 'memcached:alpine' + # ports: + # - '11211:11211' + # networks: + # - sail + mailhog: + image: 'mailhog/mailhog:latest' + ports: + - 1025:1025 + - 8025:8025 + networks: + - sail +networks: + sail: + driver: bridge +volumes: + sailmysql: + driver: local + sailredis: + driver: local From 34368a4fab61839c106efb1eea087cc270639619 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 8 Dec 2020 09:45:05 -0600 Subject: [PATCH 17/27] revert change --- .env.example | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.env.example b/.env.example index c0502795..68c9578c 100644 --- a/.env.example +++ b/.env.example @@ -17,7 +17,7 @@ DB_PASSWORD= BROADCAST_DRIVER=log CACHE_DRIVER=file -QUEUE_CONNECTION=database +QUEUE_CONNECTION=sync SESSION_DRIVER=file SESSION_LIFETIME=120 From 17668beabe4cb489ad07abb8af0a9da01860601e Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 8 Dec 2020 09:51:48 -0600 Subject: [PATCH 18/27] add sail --- composer.json | 1 + 1 file changed, 1 insertion(+) diff --git a/composer.json b/composer.json index 9d06962b..2bc6bbe7 100644 --- a/composer.json +++ b/composer.json @@ -18,6 +18,7 @@ "require-dev": { "facade/ignition": "^2.5", "fakerphp/faker": "^1.9.1", + "laravel/sail": "^0.0.5", "mockery/mockery": "^1.4.2", "nunomaduro/collision": "^5.0", "phpunit/phpunit": "^9.3.3" From d80ff4d576eb4f47369e1f8481d3da8a9479347b Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Wed, 9 Dec 2020 08:32:27 -0600 Subject: [PATCH 19/27] add sponsor --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 2f7ddcc6..e1dcd2e1 100644 --- a/README.md +++ b/README.md @@ -42,6 +42,7 @@ ### Premium Partners - **[Many](https://www.many.co.uk)** - **[Webdock, Fast VPS Hosting](https://www.webdock.io/en)** - **[DevSquad](https://devsquad.com)** +- **[Curotec](https://www.curotec.com/)** - **[OP.GG](https://op.gg)** ## Contributing From b7cde8b495e183f386da63ff7792e0dea9cfcf56 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Thu, 10 Dec 2020 07:14:14 -0600 Subject: [PATCH 20/27] comment trust hosts --- app/Http/Kernel.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Kernel.php b/app/Http/Kernel.php index 21a8754b..30020a50 100644 --- a/app/Http/Kernel.php +++ b/app/Http/Kernel.php @@ -14,7 +14,7 @@ class Kernel extends HttpKernel * @var array */ protected $middleware = [ - \App\Http\Middleware\TrustHosts::class, + // \App\Http\Middleware\TrustHosts::class, \App\Http\Middleware\TrustProxies::class, \Fruitcake\Cors\HandleCors::class, \App\Http\Middleware\PreventRequestsDuringMaintenance::class, From 03ecf00f7a4e14c049e41bb111430877313449b9 Mon Sep 17 00:00:00 2001 From: Attila Szeremi Date: Thu, 10 Dec 2020 14:32:49 +0100 Subject: [PATCH 21/27] Gitignore docker-compose.override.yml (#5487) Docker allows for you to override parts of `docker-compose.yml` locally with the help of a `docker-compose.override.yml` file: https://docs.docker.com/compose/extends/#understanding-multiple-compose-files I propose to have this file ignored by default for new projects, similarly to how `.env` is ignored to be able to override default configuration (locally). Example use case: Someone might want to use Laravel Sail, but would have multiple Laravel projects running in MySQL and would like to run a single MySQL server for each project and have a way to be able to override docker-compose to make that happen. Or maybe just in general they want to add a new service that they want to run only for themselves, and not for colleagues. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 0f7df0fb..0ae59f0b 100644 --- a/.gitignore +++ b/.gitignore @@ -6,6 +6,7 @@ .env .env.backup .phpunit.result.cache +docker-compose.override.yml Homestead.json Homestead.yaml npm-debug.log From ddb26fbc504cd64fb1b89511773aa8d03c758c6d Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Thu, 10 Dec 2020 09:26:21 -0600 Subject: [PATCH 22/27] update env vars --- docker-compose.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 089e4856..5ba8e628 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -32,7 +32,7 @@ services: mysql: image: 'mysql:8.0' ports: - - '${DB_PORT}:3306' + - '${FORWARD_DB_PORT:-3306}:3306' environment: MYSQL_ROOT_PASSWORD: '${DB_PASSWORD}' MYSQL_DATABASE: '${DB_DATABASE}' @@ -46,7 +46,7 @@ services: redis: image: 'redis:alpine' ports: - - '${REDIS_PORT}:6379' + - '${FORWARD_REDIS_PORT:-6379}:6379' volumes: - 'sailredis:/data' networks: From 3b2ed46e65c603ddc682753f1a9bb5472c4e12a8 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Sat, 12 Dec 2020 08:47:22 -0600 Subject: [PATCH 23/27] update variables --- .env.example | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.env.example b/.env.example index 68c9578c..c3ed2a91 100644 --- a/.env.example +++ b/.env.example @@ -8,8 +8,7 @@ LOG_CHANNEL=stack LOG_LEVEL=debug DB_CONNECTION=mysql -# DB_HOST=127.0.0.1 -DB_HOST=mysql +DB_HOST=127.0.0.1 DB_PORT=3306 DB_DATABASE=laravel DB_USERNAME=root @@ -21,11 +20,9 @@ QUEUE_CONNECTION=sync SESSION_DRIVER=file SESSION_LIFETIME=120 -# MEMCACHED_HOST=127.0.0.1 -MEMCACHED_HOST=memcached +MEMCACHED_HOST=127.0.0.1 -# REDIS_HOST=127.0.0.1 -REDIS_HOST=redis +REDIS_HOST=127.0.0.1 REDIS_PASSWORD=null REDIS_PORT=6379 From 0059fb91be7725c47ae2a6aa10d4f34ee5340c89 Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Tue, 15 Dec 2020 14:17:57 +0100 Subject: [PATCH 24/27] Update CHANGELOG.md --- CHANGELOG.md | 42 +++++++++++++++++++++++++++++++++++++++++- 1 file changed, 41 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 195610f2..58366dbf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,46 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v8.4.4...8.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v8.5.5...8.x) + + +## [v8.5.5 (2020-12-12)](https://github.com/laravel/laravel/compare/v8.5.4...v8.5.5) + +### Changed +- Revert changes to env file ([3b2ed46](https://github.com/laravel/laravel/commit/3b2ed46e65c603ddc682753f1a9bb5472c4e12a8)) + + +## [v8.5.4 (2020-12-10)](https://github.com/laravel/laravel/compare/v8.5.3...v8.5.4) + +### Changed +- Gitignore `docker-compose.override.yml` ([#5487](https://github.com/laravel/laravel/pull/5487) +- Update ENV vars to docker file ([ddb26fb](https://github.com/laravel/laravel/commit/ddb26fbc504cd64fb1b89511773aa8d03c758c6d)) + + +## [v8.5.3 (2020-12-10)](https://github.com/laravel/laravel/compare/v8.5.2...v8.5.3) + +### Changed +- Disable `TrustHosts` middleware ([b7cde8b](https://github.com/laravel/laravel/commit/b7cde8b495e183f386da63ff7792e0dea9cfcf56)) + + +## [v8.5.2 (2020-12-08)](https://github.com/laravel/laravel/compare/v8.5.1...v8.5.2) + +### Added +- Add Sail ([17668be](https://github.com/laravel/laravel/commit/17668beabe4cb489ad07abb8af0a9da01860601e)) + + +## [v8.5.1 (2020-12-08)](https://github.com/laravel/laravel/compare/v8.5.0...v8.5.1) + +### Changed +- Revert change to `QUEUE_CONNECTION` ([34368a4](https://github.com/laravel/laravel/commit/34368a4fab61839c106efb1eea087cc270639619)) + + +## [v8.5.0 (2020-12-08)](https://github.com/laravel/laravel/compare/v8.4.4...v8.5.0) + +### Added +- Add Sail file ([bcd87e8](https://github.com/laravel/laravel/commit/bcd87e80ac7fa6a5daf0e549059ad7cb0b41ce75)) + +### Changed +- Update env file for Sail ([a895748](https://github.com/laravel/laravel/commit/a895748980b3e055ffcb68b6bc1c2e5fad6ecb08)) ## [v8.4.4 (2020-12-01)](https://github.com/laravel/laravel/compare/v8.4.3...v8.4.4) From bc339f712389cf536ad7e340453f35d1dd865777 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Wed, 16 Dec 2020 08:44:41 -0600 Subject: [PATCH 25/27] 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 26/27] 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 27/27] 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)