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: v4.0.2
Choose a base ref
...
head repository: laravel/jetstream
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v4.0.3
Choose a head ref
  • 3 commits
  • 3 files changed
  • 3 contributors

Commits on Sep 19, 2023

  1. Update CHANGELOG

    driesvints authored and github-actions[bot] committed Sep 19, 2023

    Verified

    This commit was signed with the committer’s verified signature.
    renovate-bot Mend Renovate
    Copy the full SHA
    2f170da View commit details

Commits on Sep 21, 2023

  1. PHP 8.3 (#1381)

    driesvints authored Sep 21, 2023
    Copy the full SHA
    e74e1e1 View commit details

Commits on Oct 2, 2023

  1. Copy the full SHA
    722f641 View commit details
Showing with 10 additions and 8 deletions.
  1. +1 −1 .github/workflows/tests.yml
  2. +5 −1 CHANGELOG.md
  3. +4 −6 src/Console/InstallCommand.php
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -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 }}
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/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

10 changes: 4 additions & 6 deletions src/Console/InstallCommand.php
Original file line number Diff line number Diff line change
@@ -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'));