Skip to content

Tags: laravel/laravel

Tags

v12.11.0

Toggle v12.11.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Ignore Laravel compiled views for Vite (#6714)

* Ignore Laravel compiled views for Vite

Before testing, run php artisan cache:clear to clear old compiled views.

This issue only happens during local development when running npm run dev.
Laravel continuously recompiles Blade into PHP inside storage/framework/views (especially after Livewire re-renders), and these files are changed by Laravel itself, not by us.

Because of that, Vite thinks we modified a file and triggers a full reload—even though the change is purely internal framework logic. This makes the reload behavior unacceptable and noisy during development.

Since these compiled views belong to Laravel’s backend logic and not frontend assets, Vite does not need to watch them.

Ignoring storage/framework/views keeps Vite stable and prevents reloads caused by Laravel doing its own internal work.

* Vite ignore rule now in one clean line

v12.10.1

Toggle v12.10.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Update schema URL in package.json (#6701)

v12.10.0

Toggle v12.10.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Add background driver (#6699)

* Add background driver

Adds settings for PR laravel/framework#57648

* Update queue.php

---------

Co-authored-by: Taylor Otwell <[email protected]>

v12.9.1

Toggle v12.9.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Comment out CLI workers for fresh applications (#6693)

v12.9.0

Toggle v12.9.0's commit message
add failover cache config

v12.8.0

Toggle v12.8.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Makes test suite using broadcast's `null` driver (#6691)

v12.7.1

Toggle v12.7.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Update queue.php (#6688)

v12.7.0

Toggle v12.7.0's commit message
add failover driver

v12.6.0

Toggle v12.6.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fix setup script (#6682)

v12.5.0

Toggle v12.5.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Add pre-package-uninstall script to composer.json (#6681)

* Add pre-package-uninstall script to composer.json

* Fix JSON formatting in composer.json