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.1.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.2.0
Choose a head ref
  • 2 commits
  • 3 files changed
  • 2 contributors

Commits on Nov 29, 2023

  1. Update CHANGELOG

    driesvints authored and github-actions[bot] committed Nov 29, 2023

    Verified

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

Commits on Dec 19, 2023

  1. [4.x] Vite 5 (#1418)

    * Use default refresh paths
    
    * Update version requirement
    
    * Remove import
    timacdonald authored Dec 19, 2023
    Copy the full SHA
    cdf9bf4 View commit details
Showing with 8 additions and 7 deletions.
  1. +5 −1 CHANGELOG.md
  2. +1 −1 src/Console/InstallCommand.php
  3. +2 −5 stubs/livewire/vite.config.js
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.1.1...4.x)
## [Unreleased](https://github.com/laravel/jetstream/compare/v4.1.2...4.x)

## [v4.1.2](https://github.com/laravel/jetstream/compare/v4.1.1...v4.1.2) - 2023-11-29

* Fix Browser Sessions not showing platform and browser by [@olumby](https://github.com/olumby) in https://github.com/laravel/jetstream/pull/1412

## [v4.1.1](https://github.com/laravel/jetstream/compare/v4.1.0...v4.1.1) - 2023-11-27

2 changes: 1 addition & 1 deletion src/Console/InstallCommand.php
Original file line number Diff line number Diff line change
@@ -354,7 +354,7 @@ protected function installInertiaStack()
'@inertiajs/vue3' => '^1.0.0',
'@tailwindcss/forms' => '^0.5.2',
'@tailwindcss/typography' => '^0.5.2',
'@vitejs/plugin-vue' => '^4.0.0',
'@vitejs/plugin-vue' => '^4.5.0',
'autoprefixer' => '^10.4.7',
'postcss' => '^8.4.14',
'tailwindcss' => '^3.1.0',
7 changes: 2 additions & 5 deletions stubs/livewire/vite.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { defineConfig } from 'vite';
import laravel, { refreshPaths } from 'laravel-vite-plugin';
import laravel from 'laravel-vite-plugin';

export default defineConfig({
plugins: [
@@ -8,10 +8,7 @@ export default defineConfig({
'resources/css/app.css',
'resources/js/app.js',
],
refresh: [
...refreshPaths,
'app/Livewire/**',
],
refresh: true,
}),
],
});