Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: laravel/jetstream
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v5.1.1
Choose a base ref
...
head repository: laravel/jetstream
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v5.1.2
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on May 21, 2024

  1. Update CHANGELOG

    driesvints authored and github-actions[bot] committed May 21, 2024

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    9892b99 View commit details

Commits on May 30, 2024

  1. Fixed an issue causing install command to not add two_factor_confirme…

    …d_at column in users table if user decides to run migration from it. (#1496)
    ravibpatel authored May 30, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    cdcd6fa View commit details
Showing with 10 additions and 2 deletions.
  1. +5 −1 CHANGELOG.md
  2. +5 −1 src/Console/InstallCommand.php
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

6 changes: 5 additions & 1 deletion src/Console/InstallCommand.php
Original file line number Diff line number Diff line change
@@ -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);
});
}
}