Commit Graph

7222 Commits

Author SHA1 Message Date
Taylor Otwell
d7c6fe5695 update readme 2026-02-01 15:18:16 +05:30
Taylor Otwell
37390355e4 formatting 2026-02-01 14:59:26 +05:30
Perry van der Meer
8a119d7f44 Update phpunit version to ^11.5.50 (#6746) 2026-01-29 07:32:16 +04:00
taylorotwell
81ee06ed2b Update CHANGELOG 2026-01-20 17:30:53 +00:00
Pádraic Slattery
51cd697532 chore: Update outdated GitHub Actions version (#6743) 2026-01-19 11:57:25 -06:00
KentarouTakeda
31607246bd [12.x] Add APP_URL fallback in filesystems config (#6742) 2026-01-19 09:16:42 -06:00
Jack Bayliss
e713de24b8 Revert "add index to failed jobs" (#6739)
This reverts commit 36281b285a.
2026-01-15 06:49:36 -08:00
Jack Bayliss
be7c4b76ec [12.x] Update jobs/cache migrations (#6736)
* Update 0001_01_01_000001_create_cache_table.php

* Update 0001_01_01_000002_create_jobs_table.php

* Update 0001_01_01_000002_create_jobs_table.php

---------

Co-authored-by: Taylor Otwell <taylor@laravel.com>
2026-01-13 08:45:09 -06:00
Taylor Otwell
36281b285a add index to failed jobs 2026-01-12 08:42:42 -06:00
Jack Bayliss
cf85ab1ace Update composer.json (#6735) 2026-01-08 10:07:10 -06:00
taylorotwell
45f8f070c0 Update CHANGELOG 2026-01-06 16:33:15 +00:00
Mohammed Samgan Khan
591d3e8903 fix: ensure APP_URL does not have trailing slash in filesystem public URL (#6728) 2025-12-23 09:13:07 -06:00
Robson Tenório
f3613e9fb5 Use environment variable for DB_SSLMODE for Postgres (#6727)
```php
'pgsql' => [
   ...
    'sslmode' => env('DB_SSLMODE', 'prefer'),
]
```
2025-12-21 18:01:58 -06:00
taylorotwell
ad4ca3e9a0 Update CHANGELOG 2025-12-09 16:03:23 +00:00
MUHAMMAD QISTI AMALUDDIN BIN MOHD ROZAINI
7663a8ce4c 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
2025-11-25 16:16:01 -06:00
Ryan Schaefer
8500bcc5bd Fix 8.5 PDO Deprecation (#6710)
Fixes the 8.5 PDO deprecation using the same implementation in laravel/framework (4e40cfd963/config/database.php (L64))
2025-11-24 08:21:50 -06:00
Joost de Bruijn
f6b2e79bdb fix: cookies are not available for subdomains by default (#6705) 2025-11-18 13:23:48 -06:00
taylorotwell
9401db1c86 Update CHANGELOG 2025-11-12 17:01:46 +00:00
Robin
1812490003 Update schema URL in package.json (#6701) 2025-11-06 11:42:06 -06:00
taylorotwell
10b782f153 Update CHANGELOG 2025-11-04 15:49:18 +00:00
Barry vd. Heuvel
76396a056d Add background driver (#6699)
* Add background driver

Adds settings for PR https://github.com/laravel/framework/pull/57648

* Update queue.php

---------

Co-authored-by: Taylor Otwell <taylor@laravel.com>
2025-11-04 09:00:21 -06:00
Taylor Otwell
6576dc16cf update language 2025-10-30 12:37:53 -05:00
taylorotwell
5480b2a186 Update CHANGELOG 2025-10-28 15:32:51 +00:00
Tim MacDonald
6fc2c6dca3 Comment out CLI workers for fresh applications (#6693) 2025-10-23 08:49:17 -05:00
Ahmed Alaa
9b737df489 [12.x] Replace Bootcamp with Laravel Learn (#6692)
* Replace Bootcamp with Laravel Learn

* Revise text for Laravel Learn section

Updated wording for Laravel Learn link in README.

* Update Laravel learning resources in README

Removed redundancy in Laravel learning resources and added a link to Laravel Learn for guided application building.

---------

Co-authored-by: Taylor Otwell <taylor@laravel.com>
2025-10-22 14:21:46 -05:00
taylorotwell
56c833e61f Update CHANGELOG 2025-10-21 15:28:22 +00:00
Taylor Otwell
8e93cae119 add failover cache config 2025-10-21 11:27:10 -04:00
taylorotwell
9eb5825101 Update CHANGELOG 2025-10-21 15:25:04 +00:00
nuno maduro
473734f596 Makes test suite using broadcast's null driver (#6691) 2025-10-20 17:30:18 -04:00
Taylor Otwell
b8344c35ba add deferred queue 2025-10-17 07:10:07 -05:00
Taylor Otwell
7db142b5c6 deferred queue config 2025-10-17 05:14:52 -05:00
taylorotwell
5dfbed80c0 Update CHANGELOG 2025-10-15 12:57:54 +00:00
Sajjad Hossain Shohag
ce337914f3 Update queue.php (#6688) 2025-10-15 07:56:37 -05:00
Taylor Otwell
976c622ae9 update failover 2025-10-15 07:54:45 -05:00
taylorotwell
741aa393f0 Update CHANGELOG 2025-10-14 14:11:55 +00:00
Taylor Otwell
e072464072 add failover driver 2025-10-13 20:17:40 -05:00
Taylor Otwell
b45fe690bd disable model events by default when seeding 2025-10-07 14:49:30 -05:00
taylorotwell
4cb927ab30 Update CHANGELOG 2025-10-07 14:49:25 +00:00
Giuseppe Montuoro
e297ded077 Fix setup script (#6682) 2025-10-02 08:30:14 +01:00
Taylor Otwell
bd4a7dd9d8 reorder composer scripts 2025-10-01 16:12:15 +01:00
Taylor Otwell
da94152d73 remove seed from setup 2025-10-01 12:53:31 +01:00
Taylor Otwell
782803367b ship setup script for cloning down new projects 2025-10-01 10:16:06 +01:00
taylorotwell
65712bd72d Update CHANGELOG 2025-09-30 10:36:48 +00:00
Luke Kuzmish
ed88ce021d Add pre-package-uninstall script to composer.json (#6681)
* Add pre-package-uninstall script to composer.json

* Fix JSON formatting in composer.json
2025-09-30 11:36:06 +01:00
Mohammed Z. SAEID
64e59a864a update README.md (#6680) 2025-09-25 14:56:53 -05:00
Fredika Putra
af512c59e8 Update .editorconfig to target compose.yaml instead of docker-compose.yml (#6679) 2025-09-25 10:53:28 -05:00
Taylor Otwell
4d04f68ef9 fix database 2025-09-10 14:30:39 -05:00
Faissal Wahabali
eebb39cfbe Bump vite to ^7.0.7 (#6672) 2025-09-09 19:07:32 -05:00
Ahmed Alaa
a696e5fd51 Fix type casting for environment variables in config files (#6670) 2025-09-07 17:58:17 -05:00
Taylor Otwell
39072d072c move some items into pragmas 2025-09-07 17:40:40 -05:00