Skip to content

Commit ca00e35

Browse files
committed
Update to latest upstream
1 parent 5a99831 commit ca00e35

15 files changed

+496
-286
lines changed

Diff for: .env.example

+9-4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ LOG_CHANNEL=stack
88
LOG_LEVEL=debug
99

1010
DB_CONNECTION=mysql
11-
DB_HOST=127.0.0.1
11+
# DB_HOST=127.0.0.1
12+
DB_HOST=mysql
1213
DB_PORT=3306
1314
DB_DATABASE=laravel
1415
DB_USERNAME=root
@@ -20,13 +21,17 @@ QUEUE_CONNECTION=sync
2021
SESSION_DRIVER=file
2122
SESSION_LIFETIME=120
2223

23-
REDIS_HOST=127.0.0.1
24+
# MEMCACHED_HOST=127.0.0.1
25+
MEMCACHED_HOST=memcached
26+
27+
# REDIS_HOST=127.0.0.1
28+
REDIS_HOST=redis
2429
REDIS_PASSWORD=null
2530
REDIS_PORT=6379
2631

2732
MAIL_MAILER=smtp
28-
MAIL_HOST=smtp.mailtrap.io
29-
MAIL_PORT=2525
33+
MAIL_HOST=mailhog
34+
MAIL_PORT=1025
3035
MAIL_USERNAME=null
3136
MAIL_PASSWORD=null
3237
MAIL_ENCRYPTION=null

Diff for: .gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
.env
77
.env.backup
88
.phpunit.result.cache
9+
docker-compose.override.yml
910
Homestead.json
1011
Homestead.yaml
1112
npm-debug.log

Diff for: .gitignore.orig

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/node_modules
2+
/public/hot
3+
/public/storage
4+
/storage/*.key
5+
/vendor
6+
.env
7+
.env.backup
8+
.phpunit.result.cache
9+
docker-compose.override.yml
10+
Homestead.json
11+
Homestead.yaml
12+
npm-debug.log
13+
yarn-error.log

Diff for: CHANGELOG.md

+38-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,42 @@
11
# Release Notes
22

3-
## [Unreleased](https://github.com/laravel/laravel/compare/v8.4.0...master)
3+
## [Unreleased](https://github.com/laravel/laravel/compare/v8.4.4...8.x)
4+
5+
6+
## [v8.4.4 (2020-12-01)](https://github.com/laravel/laravel/compare/v8.4.3...v8.4.4)
7+
8+
### Changed
9+
- Comment out `Redis` facade by default ([612d166](https://github.com/laravel/laravel/commit/612d16600419265566d01a19c852ddb13b5e9f4b))
10+
- Uncomment `TrustHosts` middleware to enable it by default ([#5477](https://github.com/laravel/laravel/pull/5477))
11+
12+
### Removed
13+
- Remove cloud option ([82213fb](https://github.com/laravel/laravel/commit/82213fbf40fc4ec687781d0b93ff60a7de536913))
14+
15+
16+
## [v8.4.3 (2020-11-24)](https://github.com/laravel/laravel/compare/v8.4.2...v8.4.3)
17+
18+
### Added
19+
- Add ably entry ([5182e9c](https://github.com/laravel/laravel/commit/5182e9c6de805e025fb4cfad63c210c3197002ab))
20+
21+
### Fixed
22+
- Add missing null cache driver in `config/cache.php` ([#5472](https://github.com/laravel/laravel/pull/5472))
23+
24+
25+
## [v8.4.2 (2020-11-17)](https://github.com/laravel/laravel/compare/v8.4.1...v8.4.2)
26+
27+
### Changed
28+
- Add sanctum cookie endpoint to default cors paths ([aa6d3660](https://github.com/laravel/laravel/commit/aa6d3660114c93e537a52e0ba3c03071a7f3e67f))
29+
- Modify the `cache.php` docblocks ([#5468](https://github.com/laravel/laravel/pull/5468))
30+
- Add stub handler ([4931af1](https://github.com/laravel/laravel/commit/4931af14006610bf8fd1f860cea1117c68133e94))
31+
32+
### Fixed
33+
- Closed @auth correctly ([#5471](https://github.com/laravel/laravel/pull/5471))
34+
35+
36+
## [v8.4.1 (2020-11-10)](https://github.com/laravel/laravel/compare/v8.4.0...v8.4.1)
37+
38+
### Changed
39+
- Add auth line ([b54ef29](https://github.com/laravel/laravel/commit/b54ef297b3c723c8438596c6e6afef93a7458b98))
440

541

642
## [v8.4.0 (2020-10-30)](https://github.com/laravel/laravel/compare/v8.3.0...v8.4.0)
@@ -66,6 +102,6 @@
66102
- Re-add property to route service provider ([9cbc381](https://github.com/laravel/laravel/commit/9cbc3819f7b1c268447996d347a1733aa68e16d7))
67103

68104

69-
## [v8.0.0 (2020-09-08)](https://github.com/laravel/laravel/compare/v7.30.0...v8.0.0)
105+
## [v8.0.0 (2020-09-08)](https://github.com/laravel/laravel/compare/v7.30.1...v8.0.0)
70106

71107
Laravel 8 comes with a lot of changes to the base skeleton. Please consult the diff to see what's changed.

Diff for: app/Exceptions/Handler.php

+4-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
namespace App\Exceptions;
44

55
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
6+
use Throwable;
67

78
class Handler extends ExceptionHandler
89
{
@@ -32,6 +33,8 @@ class Handler extends ExceptionHandler
3233
*/
3334
public function register()
3435
{
35-
//
36+
$this->reportable(function (Throwable $e) {
37+
//
38+
});
3639
}
3740
}

Diff for: composer.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,12 @@
1414
"guzzlehttp/guzzle": "^7.0.1",
1515
"laravel/framework": "^8.12",
1616
"laravel/tinker": "^2.5",
17-
"platformsh/laravel-bridge": "^2.1"
17+
"platformsh/laravel-bridge": "^2.2"
1818
},
1919
"require-dev": {
2020
"facade/ignition": "^2.5",
2121
"fakerphp/faker": "^1.9.1",
22+
"laravel/sail": "^0.0.5",
2223
"mockery/mockery": "^1.4.2",
2324
"nunomaduro/collision": "^5.0",
2425
"phpunit/phpunit": "^9.3.3"

0 commit comments

Comments
 (0)