diff --git a/CHANGELOG.md b/CHANGELOG.md index 92a448ee..fa2d4e00 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/app/Http/Middleware/TrustProxies.php b/app/Http/Middleware/TrustProxies.php index a3b6aef9..d11dd5f0 100644 --- a/app/Http/Middleware/TrustProxies.php +++ b/app/Http/Middleware/TrustProxies.php @@ -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 diff --git a/composer.json b/composer.json index ed79da64..dc6c015b 100644 --- a/composer.json +++ b/composer.json @@ -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",