From 9892b99bd290eebf0718cfec59f9781cf189680e Mon Sep 17 00:00:00 2001 From: driesvints Date: Tue, 21 May 2024 18:03:36 +0000 Subject: [PATCH 1/2] Update CHANGELOG --- CHANGELOG.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 From cdcd6fad35a369080f37420cbcc0124756af9710 Mon Sep 17 00:00:00 2001 From: Ravi Patel Date: Thu, 30 May 2024 19:53:31 +0530 Subject: [PATCH 2/2] Fixed an issue causing install command to not add two_factor_confirmed_at column in users table if user decides to run migration from it. (#1496) --- src/Console/InstallCommand.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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); + }); } }