From d24d41ccf23c1878aed7a52d4d2e948df2d356f3 Mon Sep 17 00:00:00 2001 From: driesvints Date: Wed, 29 Nov 2023 15:59:41 +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 6f9f7ed32..0856f6e88 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 From cdf9bf4ae3d51d9a08a2217becc6c7f3516cff6d Mon Sep 17 00:00:00 2001 From: Tim MacDonald Date: Wed, 20 Dec 2023 01:43:51 +1100 Subject: [PATCH 2/2] [4.x] Vite 5 (#1418) * Use default refresh paths * Update version requirement * Remove import --- src/Console/InstallCommand.php | 2 +- stubs/livewire/vite.config.js | 7 ++----- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/src/Console/InstallCommand.php b/src/Console/InstallCommand.php index 6f2b96fa6..e5166ae09 100644 --- a/src/Console/InstallCommand.php +++ b/src/Console/InstallCommand.php @@ -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', diff --git a/stubs/livewire/vite.config.js b/stubs/livewire/vite.config.js index f190771ba..89f26f5db 100644 --- a/stubs/livewire/vite.config.js +++ b/stubs/livewire/vite.config.js @@ -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, }), ], });