- Laravel August product updates
- Laravel Framework v13.24.0
- Laravel Framework v13.25.0
- Laravel Framework v13.26.0
- Laravel Framework v13.27.0
- Laravel Framework v13.29.0
- Laravel Framework changelog
- Laravel Cloud changelog
- Laravel Forge changelog
Laravel Framework
read-through filesystem driver
A newread-through filesystem driver was added that lets you migrate storage disks with zero downtime. It checks the primary disk first, and when a file only exists on the fallback disk, it serves the file from there while copying it over for next time. New writes go to the destination disk, and old files are promoted as they are accessed. See the Filesystem page for details.
artisan dev now runs through @laravel/multiplex
As of v13.26.0, php artisan dev now runs internally through @laravel/multiplex. This strengthens the mechanism that runs the development server, Vite, queue workers, and more simultaneously in a single tabbed UI, and fixes an issue where projects that don’t use Vite were unnecessarily prompted to start Vite or install multiplex.
Scout’s Turbopuffer and semantic search
Scout gained a Turbopuffer engine with batch indexing and vector distance metadata. Alongside it, semantic and hybrid search are now available in Scout’s database and Meilisearch engines — just chain->semantic() or ->hybrid() onto an existing Scout builder to search by meaning instead of keywords. See the unified search guide and the Scout page for details.
Cloud facade
v13.27.0 added theIlluminate\Support\Facades\Cloud facade. Your app can detect at runtime whether it is hosted on Laravel Cloud, and check for and directly access managed queue connections.
Queue::forward()
v13.27.0 added Queue::forward(), which lets you forward jobs from one queue connection to another.
Eloquent’s refreshForUpdate()
v13.29.0 added the refreshForUpdate() method, which reloads a model within a transaction while acquiring a FOR UPDATE lock. See the Eloquent page for details.
MariaDB support for vector search
Eloquent’sAsVector cast and the vector similarity search methods such as whereVectorSimilarTo and orderByVectorDistance are now available on MariaDB 11.7 and later, in addition to PostgreSQL (pgvector).
Other changes
- Image processing gained expanded support for the HEIC and AVIF formats.
- The query builder gained
whereBinary(), and the Eloquent builder gainedorWhereKey()/orWhereKeyNot(). - Bindings registered with the
#[BindWhen]attribute are now re-evaluated when the condition was not met. - The queue test fake gained
totalXSize-style methods for retrieving the total size of jobs.
Laravel Cloud
Pre-deploy package checks
Cloud now reads yourcomposer.lock on every push and warns you before deploying about missing or outdated packages such as Octane, Inertia SSR, and Nightwatch. Notifications clear automatically once you push a fix.
Managed Queues revamp
Managed Queues gained two compute classes: “Flex”, which scales to zero and starts in under a second, and “Pro”, which stays always-on for latency-sensitive, steady throughput. FIFO queues also guarantee that jobs are delivered exactly once and in the order they were sent, for workloads where ordering matters such as payments and ledger updates.Scoped API tokens
Organization API tokens can now be scoped to specific permissions and restricted to a single application and environment. You can grant automations and agents only the minimum access they need.HIPAA support for Private Cloud
Teams building healthcare software can now request a Business Associate Agreement (BAA) and deploy to dedicated, audited infrastructure.Laravel Forge
Multiple source control connections
You can now connect multiple source control accounts per provider. This is handy for teams that were connecting and disconnecting every time they switched between personal and organization accounts.Ubuntu 26.04
Ubuntu 26.04 LTS is now available across all server providers. Ubuntu 22.04 is no longer offered for new servers.Other changes
- In-app notification preferences were added, letting you toggle notifications such as successful deploys and stalled servers individually, separately from email.
- The Brotli compression module is now compiled and loaded by default on new servers and can be enabled in your Nginx configuration.
Summary
August stood out for changes that raise the reliability of existing systems and the search experience, such as theread-through driver for safe storage migrations and Scout’s semantic and hybrid search. On the Laravel Cloud side, production-minded improvements continued with the Managed Queues revamp and scoped API tokens. MariaDB support for vector search is good news for projects using databases other than PostgreSQL.