From a29dd2edb8245363c451113bfaf97ce83a736a15 Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Tue, 3 Mar 2020 15:02:05 +0100 Subject: [PATCH 001/751] Update composer.json --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 4e81d21aeeb..f0ad7241173 100644 --- a/composer.json +++ b/composer.json @@ -12,7 +12,7 @@ "fideloper/proxy": "^4.2", "fruitcake/laravel-cors": "^1.0", "guzzlehttp/guzzle": "^6.3", - "laravel/framework": "^7.0", + "laravel/framework": "^8.0", "laravel/tinker": "^2.0" }, "require-dev": { From 5c4f9980ecdef0beea23b4cbdb40b0694f042c10 Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Tue, 3 Mar 2020 20:43:10 +0100 Subject: [PATCH 002/751] Update CHANGELOG.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bbb3c138017..a9a5430b21c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v7.0.0...master) +## [Unreleased](https://github.com/laravel/laravel/compare/v7.0.0...develop) ## [v7.0.0 (2020-03-03)](https://github.com/laravel/laravel/compare/v6.18.0...v7.0.0) From b7b6e35bf88f346832bdd32b71ca7ed4f0ceddd5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jacob=20Honor=C3=A9?= <643471+JacobHonore@users.noreply.github.com> Date: Tue, 24 Mar 2020 14:11:36 +0100 Subject: [PATCH 003/751] Fix s3 endpoint url reference (#5267) --- config/filesystems.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/filesystems.php b/config/filesystems.php index ec6a7cec3ae..a0ec1290202 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -61,7 +61,7 @@ 'secret' => env('AWS_SECRET_ACCESS_KEY'), 'region' => env('AWS_DEFAULT_REGION'), 'bucket' => env('AWS_BUCKET'), - 'url' => env('AWS_URL'), + 'endpoint' => env('AWS_URL'), ], ], From d067d7d889e69d28e609534e3c5cdf5773462df9 Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Tue, 24 Mar 2020 18:26:16 +0100 Subject: [PATCH 004/751] Update CHANGELOG.md --- CHANGELOG.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d7cdb4e59b..e92713c849e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v6.18.0...6.x) +## [Unreleased](https://github.com/laravel/laravel/compare/v6.18.3...6.x) + + +## [v6.18.3 (2020-03-24)](https://github.com/laravel/laravel/compare/v6.18.0...v6.18.3) + +### Fixed +- Ensure that `app.debug` is a bool ([5ddbfb8](https://github.com/laravel/laravel/commit/5ddbfb845439fcd5a46c23530b8774421a931760)) +- Fix S3 endpoint url reference ([#5267](https://github.com/laravel/laravel/pull/5267)) ## [v6.18.0 (2020-02-24)](https://github.com/laravel/laravel/compare/v6.12.0...v6.18.0) From b26aaff2100e3f01aee0dc96ad7657ddd2d5a07c Mon Sep 17 00:00:00 2001 From: ice <490554416@qq.com> Date: Sat, 28 Mar 2020 09:53:47 +0800 Subject: [PATCH 005/751] consistent filename --- database/seeds/DatabaseSeeder.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/seeds/DatabaseSeeder.php b/database/seeds/DatabaseSeeder.php index 91cb6d1c2de..237dfc5d0d8 100644 --- a/database/seeds/DatabaseSeeder.php +++ b/database/seeds/DatabaseSeeder.php @@ -11,6 +11,6 @@ class DatabaseSeeder extends Seeder */ public function run() { - // $this->call(UsersTableSeeder::class); + // $this->call(UserSeeder::class); } } From 2a2522d8824c0852e30a7e3e07d46a543eb4b33d Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Sun, 29 Mar 2020 10:38:29 -0500 Subject: [PATCH 006/751] fix wording --- config/session.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/session.php b/config/session.php index d0ccd5a8750..da692f3b8f7 100644 --- a/config/session.php +++ b/config/session.php @@ -188,7 +188,7 @@ | | This option determines how your cookies behave when cross-site requests | take place, and can be used to mitigate CSRF attacks. By default, we - | do not enable this as other CSRF protection services are in place. + | will set this value to "lax" since this is a secure default value. | | Supported: "lax", "strict", "none", null | From bf2d370ec4d41ef3fb5732eca9eca0e3315cad2f Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 7 Apr 2020 14:38:49 -0500 Subject: [PATCH 007/751] new welcome page --- resources/views/welcome.blade.php | 147 ++++++++++++++++-------------- 1 file changed, 78 insertions(+), 69 deletions(-) diff --git a/resources/views/welcome.blade.php b/resources/views/welcome.blade.php index 3fb48cc02c9..37aa18e89a7 100644 --- a/resources/views/welcome.blade.php +++ b/resources/views/welcome.blade.php @@ -7,92 +7,101 @@ Codestin Search App - + - - -
+ +
@if (Route::has('login')) -