diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index e953030b6..b15b28669 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: true matrix: - php: [8.1, 8.2] + php: [8.1, 8.2, 8.3] laravel: [10] name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} diff --git a/CHANGELOG.md b/CHANGELOG.md index e2f089bcb..c8bb2ad7d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Release Notes -## [Unreleased](https://github.com/laravel/jetstream/compare/v4.0.1...4.x) +## [Unreleased](https://github.com/laravel/jetstream/compare/v4.0.2...4.x) + +## [v4.0.2](https://github.com/laravel/jetstream/compare/v4.0.1...v4.0.2) - 2023-09-19 + +- Prevent calling Inertia before it's installed by [@jrd-lewis](https://github.com/jrd-lewis) in https://github.com/laravel/jetstream/pull/1376 ## [v4.0.1](https://github.com/laravel/jetstream/compare/v4.0.0...v4.0.1) - 2023-08-27 diff --git a/src/Console/InstallCommand.php b/src/Console/InstallCommand.php index ddb8a8116..6f2b96fa6 100644 --- a/src/Console/InstallCommand.php +++ b/src/Console/InstallCommand.php @@ -134,12 +134,10 @@ public function handle() */ protected function configureSession() { - if (! class_exists('CreateSessionsTable')) { - try { - $this->call('session:table'); - } catch (Exception $e) { - // - } + try { + $this->call('session:table'); + } catch (Exception $e) { + // } $this->replaceInFile("'SESSION_DRIVER', 'file'", "'SESSION_DRIVER', 'database'", config_path('session.php'));