From 3995828c13ddca61dec45b8f9511a669cc90a15c Mon Sep 17 00:00:00 2001 From: Diego Date: Fri, 26 Apr 2019 09:26:45 -0300 Subject: [PATCH 1/7] [5.9] Minor grammar fix in readme.md (#5010) * Fix grammar ('Boost *your* skills') * Update readme.md --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 7065972f..8b5717ed 100644 --- a/readme.md +++ b/readme.md @@ -25,7 +25,7 @@ Laravel is accessible, powerful, and provides tools required for large, robust a Laravel has the most extensive and thorough [documentation](https://laravel.com/docs) and video tutorial library of all modern web application frameworks, making it a breeze to get started with the framework. -If you don't feel like reading, [Laracasts](https://laracasts.com) can help. Laracasts contains over 1400 video tutorials on a range of topics including Laravel, modern PHP, unit testing, and JavaScript. Boost you and your team's skills by digging into our comprehensive video library. +If you don't feel like reading, [Laracasts](https://laracasts.com) can help. Laracasts contains over 1400 video tutorials on a range of topics including Laravel, modern PHP, unit testing, and JavaScript. Boost your skills by digging into our comprehensive video library. ## Laravel Sponsors From a6bf24134d99be79e77b8969186b9f46ffee075a Mon Sep 17 00:00:00 2001 From: Roberto Aguilar Date: Mon, 29 Apr 2019 16:21:59 -0500 Subject: [PATCH 2/7] Exclude StyleCI config from exported files (#5012) I noticed that this file was being included when i ran the `laravel new` command and even though some developers will run StyleCI, the purpose of this file seems more like it ensures the repository quality rather than providing an starting point for this service. --- .gitattributes | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitattributes b/.gitattributes index 967315dd..0f772996 100644 --- a/.gitattributes +++ b/.gitattributes @@ -2,4 +2,5 @@ *.css linguist-vendored *.scss linguist-vendored *.js linguist-vendored +.styleci.yml export-ignore CHANGELOG.md export-ignore From ccea56b6f910649d8a6ee25f61896d2b96e90496 Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Tue, 30 Apr 2019 14:02:09 +0200 Subject: [PATCH 3/7] Revert "Exclude StyleCI config from exported files (#5012)" This reverts commit a6bf24134d99be79e77b8969186b9f46ffee075a. --- .gitattributes | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitattributes b/.gitattributes index 0f772996..967315dd 100644 --- a/.gitattributes +++ b/.gitattributes @@ -2,5 +2,4 @@ *.css linguist-vendored *.scss linguist-vendored *.js linguist-vendored -.styleci.yml export-ignore CHANGELOG.md export-ignore From 65f8271032c113883fb3f1e8e7b3279821148ad1 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Mon, 6 May 2019 08:30:33 -0500 Subject: [PATCH 4/7] update version --- package.json | 2 +- resources/sass/app.scss | 5 ----- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/package.json b/package.json index 76bd3983..52311d25 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,7 @@ }, "devDependencies": { "axios": "^0.18", - "bootstrap": "^4.0.0", + "bootstrap": "^4.1.0", "cross-env": "^5.1", "jquery": "^3.2", "laravel-mix": "^4.0.7", diff --git a/resources/sass/app.scss b/resources/sass/app.scss index f42e7986..51a8b11c 100644 --- a/resources/sass/app.scss +++ b/resources/sass/app.scss @@ -7,8 +7,3 @@ // Bootstrap @import '~bootstrap/scss/bootstrap'; - -.navbar-laravel { - background-color: #fff; - box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04); -} From 1086e26b32fb828ee74c8848246788a26bad72d7 Mon Sep 17 00:00:00 2001 From: Mathieu TUDISCO Date: Tue, 7 May 2019 13:49:22 +0200 Subject: [PATCH 5/7] Update database config relating to Url addition. --- config/database.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/config/database.php b/config/database.php index 9b30dc1f..e81af256 100644 --- a/config/database.php +++ b/config/database.php @@ -36,6 +36,7 @@ return [ 'connections' => [ 'sqlite' => [ + 'url' => env('DATABASE_URL'), 'driver' => 'sqlite', 'database' => env('DB_DATABASE', database_path('database.sqlite')), 'prefix' => '', @@ -43,6 +44,7 @@ return [ ], 'mysql' => [ + 'url' => env('DATABASE_URL'), 'driver' => 'mysql', 'host' => env('DB_HOST', '127.0.0.1'), 'port' => env('DB_PORT', '3306'), @@ -62,6 +64,7 @@ return [ ], 'pgsql' => [ + 'url' => env('DATABASE_URL'), 'driver' => 'pgsql', 'host' => env('DB_HOST', '127.0.0.1'), 'port' => env('DB_PORT', '5432'), @@ -76,6 +79,7 @@ return [ ], 'sqlsrv' => [ + 'url' => env('DATABASE_URL'), 'driver' => 'sqlsrv', 'host' => env('DB_HOST', 'localhost'), 'port' => env('DB_PORT', '1433'), From b0e0bdc060ce068b73371919b904f3c7f0c1cfa6 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 7 May 2019 07:38:15 -0500 Subject: [PATCH 6/7] formatting --- config/database.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config/database.php b/config/database.php index e81af256..0cf54458 100644 --- a/config/database.php +++ b/config/database.php @@ -36,16 +36,16 @@ return [ 'connections' => [ 'sqlite' => [ - 'url' => env('DATABASE_URL'), 'driver' => 'sqlite', + 'url' => env('DATABASE_URL'), 'database' => env('DB_DATABASE', database_path('database.sqlite')), 'prefix' => '', 'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true), ], 'mysql' => [ - 'url' => env('DATABASE_URL'), 'driver' => 'mysql', + 'url' => env('DATABASE_URL'), 'host' => env('DB_HOST', '127.0.0.1'), 'port' => env('DB_PORT', '3306'), 'database' => env('DB_DATABASE', 'forge'), @@ -64,8 +64,8 @@ return [ ], 'pgsql' => [ - 'url' => env('DATABASE_URL'), 'driver' => 'pgsql', + 'url' => env('DATABASE_URL'), 'host' => env('DB_HOST', '127.0.0.1'), 'port' => env('DB_PORT', '5432'), 'database' => env('DB_DATABASE', 'forge'), @@ -79,8 +79,8 @@ return [ ], 'sqlsrv' => [ - 'url' => env('DATABASE_URL'), 'driver' => 'sqlsrv', + 'url' => env('DATABASE_URL'), 'host' => env('DB_HOST', 'localhost'), 'port' => env('DB_PORT', '1433'), 'database' => env('DB_DATABASE', 'forge'), From fbd3ad7bbb5e98c607f19f7c697552863363bde4 Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Tue, 7 May 2019 17:19:27 +0200 Subject: [PATCH 7/7] Update changelog --- CHANGELOG.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index aa0c0ce7..8c33a856 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,20 @@ ## [Unreleased](https://github.com/laravel/laravel/compare/v5.8.3...master) + +## [v5.8.16 (2019-05-07)](https://github.com/laravel/laravel/compare/v5.8.3...master) + +### Added +- Add IDE type-hint to UserFactory ([#4990](https://github.com/laravel/laravel/pull/4990)) +- Update database config relating to Url addition ([#5018](https://github.com/laravel/laravel/pull/5018), [b0e0bdc](https://github.com/laravel/laravel/commit/b0e0bdc060ce068b73371919b904f3c7f0c1cfa6)) + ### Changed - Upgrade the collision dependency from v2 to v3 ([#4963](https://github.com/laravel/laravel/pull/4963)) +- Ignore SQLite journals ([#4971](https://github.com/laravel/laravel/pull/4971)) +- Prefix redis database connection by default ([#4982](https://github.com/laravel/laravel/pull/4982), [#4986](https://github.com/laravel/laravel/pull/4986), [#4987](https://github.com/laravel/laravel/pull/4987)) + +### Removed +- Remove `.navbar-laravel` CSS class ([65f8271](https://github.com/laravel/laravel/commit/65f8271032c113883fb3f1e8e7b3279821148ad1)) ## [v5.8.3 (2019-03-05)](https://github.com/laravel/laravel/compare/v5.8.0...v5.8.3)