diff --git a/CHANGELOG.md b/CHANGELOG.md index 7554b29dc..bb174ed66 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Release Notes -## [Unreleased](https://github.com/laravel/jetstream/compare/v5.1.0...5.x) +## [Unreleased](https://github.com/laravel/jetstream/compare/v5.1.1...5.x) + +## [v5.1.1](https://github.com/laravel/jetstream/compare/v5.1.0...v5.1.1) - 2024-05-13 + +* fix: replace hard-coded team invitation model table in unique validation rule by [@Tailzip](https://github.com/Tailzip) in https://github.com/laravel/jetstream/pull/1490 ## [v5.1.0](https://github.com/laravel/jetstream/compare/v5.0.5...v5.1.0) - 2024-05-06 diff --git a/src/Console/InstallCommand.php b/src/Console/InstallCommand.php index d1db88a90..41c4cb6dc 100644 --- a/src/Console/InstallCommand.php +++ b/src/Console/InstallCommand.php @@ -755,7 +755,11 @@ protected static function updateNodePackages(callable $callback, $dev = true) protected function runDatabaseMigrations() { if (confirm('New database migrations were added. Would you like to re-run your migrations?', true)) { - $this->call('migrate:fresh', ['--force' => true]); + (new Process([$this->phpBinary(), 'artisan', 'migrate:fresh', '--force'], base_path())) + ->setTimeout(null) + ->run(function ($type, $output) { + $this->output->write($output); + }); } }