From 326b1bcf7ddf1ba5c99510a312fee8835477b780 Mon Sep 17 00:00:00 2001 From: taylorotwell <463230+taylorotwell@users.noreply.github.com> Date: Tue, 13 May 2025 14:47:38 +0000 Subject: [PATCH 1/2] Update CHANGELOG --- CHANGELOG.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b0a75f46..19d7f6398 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # Release Notes -## [Unreleased](https://github.com/laravel/valet/compare/v4.8.5...master) +## [Unreleased](https://github.com/laravel/valet/compare/v4.8.6...master) + +## [v4.8.6](https://github.com/laravel/valet/compare/v4.8.5...v4.8.6) - 2025-05-06 + +* fix(php-fpm): correct socket creation by [@saibotk](https://github.com/saibotk) in https://github.com/laravel/valet/pull/1515 +* Update CraftValetDriver for compatbility with craftcms/security-patches by [@adrum](https://github.com/adrum) in https://github.com/laravel/valet/pull/1516 ## [v4.8.5](https://github.com/laravel/valet/compare/v4.8.4...v4.8.5) - 2025-04-22 From c90feb38a6d3cbf7c318854e0f71a4753d9ad51f Mon Sep 17 00:00:00 2001 From: Matt Stauffer Date: Wed, 14 May 2025 11:23:36 -0400 Subject: [PATCH 2/2] Bump to 4.8.7 for release --- cli/app.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/app.php b/cli/app.php index ebd88972a..f0430ba85 100644 --- a/cli/app.php +++ b/cli/app.php @@ -33,7 +33,7 @@ */ Container::setInstance(new Container); -$version = '4.8.5'; +$version = '4.8.7'; $app = new Application('Laravel Valet', $version);