Merge branch '8.x'
# Conflicts: # CHANGELOG.md # composer.json
This commit is contained in:
commit
4d0f40f98c
|
@ -1,6 +1,12 @@
|
|||
# Release Notes
|
||||
|
||||
## [Unreleased](https://github.com/laravel/laravel/compare/v8.5.23...master)
|
||||
## [Unreleased](https://github.com/laravel/laravel/compare/v8.5.24...master)
|
||||
|
||||
|
||||
## [v8.5.24 (2021-08-10)](https://github.com/laravel/laravel/compare/v8.5.23...v8.5.24)
|
||||
|
||||
### Changed
|
||||
- Use new `TrustProxies` middleware ([#5662](https://github.com/laravel/laravel/pull/5662))
|
||||
|
||||
|
||||
## [v8.5.23 (2021-08-03)](https://github.com/laravel/laravel/compare/v8.5.22...v8.5.23)
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
namespace App\Http\Middleware;
|
||||
|
||||
use Fideloper\Proxy\TrustProxies as Middleware;
|
||||
use Illuminate\Http\Middleware\TrustProxies as Middleware;
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class TrustProxies extends Middleware
|
||||
|
|
|
@ -6,7 +6,6 @@
|
|||
"license": "MIT",
|
||||
"require": {
|
||||
"php": "^8.0",
|
||||
"fideloper/proxy": "dev-master",
|
||||
"fruitcake/laravel-cors": "dev-develop",
|
||||
"guzzlehttp/guzzle": "^7.0.1",
|
||||
"laravel/framework": "^9.0",
|
||||
|
|
Loading…
Reference in New Issue