diff --git a/CHANGELOG.md b/CHANGELOG.md index bdfad1d7..516a2a02 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ # Release Notes -## [Unreleased](https://github.com/laravel/boost/compare/v1.0.21...main) +## [Unreleased](https://github.com/laravel/boost/compare/v1.1.0...main) + +## [v1.1.0](https://github.com/laravel/boost/compare/v1.0.21...v1.1.0) - 2025-09-04 + +### What's Changed + +* Always-on process isolation: eliminate conditional complexity by [@andreilungeanu](https://github.com/andreilungeanu) in https://github.com/laravel/boost/pull/184 + +**Full Changelog**: https://github.com/laravel/boost/compare/v1.0.21...v1.1.0 ## [v1.0.21](https://github.com/laravel/boost/compare/v1.0.20...v1.0.21) - 2025-09-03 diff --git a/composer.json b/composer.json index d77918b1..495b4174 100644 --- a/composer.json +++ b/composer.json @@ -21,7 +21,7 @@ "illuminate/support": "^10.0|^11.0|^12.0", "laravel/mcp": "^0.1.1", "laravel/prompts": "^0.1.9|^0.3", - "laravel/roster": "^0.2.4" + "laravel/roster": "^0.2.5" }, "require-dev": { "laravel/pint": "^1.14", diff --git a/src/Install/Assists/Inertia.php b/src/Install/Assists/Inertia.php index 62db0e65..9fbcd161 100644 --- a/src/Install/Assists/Inertia.php +++ b/src/Install/Assists/Inertia.php @@ -1,5 +1,7 @@