Laravel August 2026 Updates: Framework, Cloud &amp; Forge | Mohamed Said        [  ![Mohamed Said](https://cdn.msaied.com/01KT78WE565VEMM3PSNQAAB0MH.png)   Mohamed Said Laravel Backend Engineer  ](https://www.msaied.com) [ Home ](https://www.msaied.com) [ Projects ](https://www.msaied.com/projects) [ Articles  ](https://www.msaied.com/articles) [ Certificates ](https://www.msaied.com/certificates) [ Contact ](https://www.msaied.com#contact-section) 

       [  ](https://github.com/EG-Mohamed)       

 [ Home ](https://www.msaied.com) [ Projects ](https://www.msaied.com/projects) [ Articles ](https://www.msaied.com/articles) [ Certificates ](https://www.msaied.com/certificates) [ Contact ](https://www.msaied.com#contact-section) 

  [ home ](https://www.msaied.com)    [ articles ](https://www.msaied.com/articles)    Laravel August 2026 Product Updates: Framework, Cloud, and Forge        On this page       1. [  Laravel August 2026 Product Updates ](#laravel-august-2026-product-updates)
2. [  Laravel Framework ](#laravel-framework)
3. [  Read-Through Filesystems ](#read-through-filesystems)
4. [  Turbopuffer and Semantic Search in Scout ](#turbopuffer-and-semantic-search-in-scout)
5. [  Cloud Facade for Managed Queues ](#cloud-facade-for-managed-queues)
6. [  MariaDB Vector Support ](#mariadb-vector-support)
7. [  Laravel Cloud ](#laravel-cloud)
8. [  Managed Queues, Rebuilt ](#managed-queues-rebuilt)
9. [  Pre-Deploy Package Checks ](#pre-deploy-package-checks)
10. [  Scoped API Tokens ](#scoped-api-tokens)
11. [  Private Cloud is HIPAA-Compliant ](#private-cloud-is-hipaa-compliant)
12. [  Laravel Forge ](#laravel-forge)
13. [  Multiple Source Control Connections ](#multiple-source-control-connections)
14. [  Ubuntu 26.04 LTS ](#ubuntu-2604-lts)
15. [  In-App Notifications and Brotli Compression ](#in-app-notifications-and-brotli-compression)
16. [  Key Takeaways ](#key-takeaways)

  ![Laravel August 2026 Product Updates: Framework, Cloud, and Forge](https://cdn.msaied.com/630/37bf960d82f877f3063ffe9d11fa3c7b.png)

 [  Laravel ](https://www.msaied.com/articles?category=laravel)  #Laravel   #Laravel Cloud   #Laravel Forge   #Scout   #Changelog   #PHP  

 Laravel August 2026 Product Updates: Framework, Cloud, and Forge 
==================================================================

     3 Sep 2026      3 min read    ![Mohamed Said](https://cdn.msaied.com/01KT78WE565VEMM3PSNQAAB0MJ.jpg)  Mohamed Said  

       Table of contents

  16 sections  

1. [  01   Laravel August 2026 Product Updates  ](#laravel-august-2026-product-updates)
2. [  02   Laravel Framework  ](#laravel-framework)
3. [  03   Read-Through Filesystems  ](#read-through-filesystems)
4. [  04   Turbopuffer and Semantic Search in Scout  ](#turbopuffer-and-semantic-search-in-scout)
5. [  05   Cloud Facade for Managed Queues  ](#cloud-facade-for-managed-queues)
6. [  06   MariaDB Vector Support  ](#mariadb-vector-support)
7. [  07   Laravel Cloud  ](#laravel-cloud)
8. [  08   Managed Queues, Rebuilt  ](#managed-queues-rebuilt)
9. [  09   Pre-Deploy Package Checks  ](#pre-deploy-package-checks)
10. [  10   Scoped API Tokens  ](#scoped-api-tokens)
11. [  11   Private Cloud is HIPAA-Compliant  ](#private-cloud-is-hipaa-compliant)
12. [  12   Laravel Forge  ](#laravel-forge)
13. [  13   Multiple Source Control Connections  ](#multiple-source-control-connections)
14. [  14   Ubuntu 26.04 LTS  ](#ubuntu-2604-lts)
15. [  15   In-App Notifications and Brotli Compression  ](#in-app-notifications-and-brotli-compression)
16. [  16   Key Takeaways  ](#key-takeaways)

       Laravel August 2026 Product Updates
-----------------------------------

A busy month followed LaraconUS. Here is a breakdown of everything that shipped across the Laravel Framework, Laravel Cloud, and Laravel Forge in August 2026.

---

Laravel Framework
-----------------

### Read-Through Filesystems

A new `read-through` filesystem driver makes it possible to migrate between storage disks with zero downtime. Laravel checks the primary disk first. If a file only exists on the fallback disk, it serves the file and copies it to the primary disk automatically, so old files promote themselves as they are accessed and new writes always land on the destination.

```php
// config/filesystems.php
'disks' => [
    'primary' => [
        'driver' => 'read-through',
        'primary' => 's3-new',
        'fallback' => 's3-old',
    ],
],

```

### Turbopuffer and Semantic Search in Scout

Laravel Scout gains a Turbopuffer engine with batched indexing and vector distance metadata. Semantic and hybrid search are also available for Scout's database and Meilisearch engines. Chain `->semantic()` or `->hybrid()` onto the familiar Scout builder to search by meaning rather than exact keywords.

```php
$results = Article::search('cloud infrastructure')
    ->semantic()
    ->get();

```

### Cloud Facade for Managed Queues

A new `Cloud` facade lets your application detect at runtime whether it is running on Laravel Cloud, check for a managed queue connection, and access that connection directly — useful for conditional logic in shared codebases.

### MariaDB Vector Support

Eloquent's `AsVector` cast and vector query methods such as `whereVectorSimilarTo` and `orderByVectorDistance` now support MariaDB alongside PostgreSQL.

---

Laravel Cloud
-------------

### Managed Queues, Rebuilt

Managed queues now offer two compute classes:

- **Flex** — scales to zero and wakes in under a second, ideal for bursty workloads.
- **Pro** — stays warm for steady, latency-sensitive throughput.

FIFO queues guarantee exactly-once delivery in strict order, making them suitable for payments, ledger updates, and any workload where ordering matters.

### Pre-Deploy Package Checks

Cloud reads your `composer.lock` on every push and flags missing or outdated packages — such as Octane, Inertia SSR, or Nightwatch — before deployment begins. The notice clears automatically once you push the fix.

### Scoped API Tokens

Organization API tokens can now be scoped to specific permissions and restricted to a single application or environment, giving automation scripts and agents the minimum access they need.

### Private Cloud is HIPAA-Compliant

Teams building healthcare software can now request a Business Associate Agreement and deploy on dedicated, audited infrastructure. This makes Laravel Private Cloud a viable option for regulated healthcare workloads.

---

Laravel Forge
-------------

### Multiple Source Control Connections

Forge now supports connecting more than one source control account per provider. Teams that manage separate personal and organization GitHub accounts no longer need to disconnect and reconnect when switching between them.

### Ubuntu 26.04 LTS

Ubuntu 26.04 LTS is available across every server provider. Ubuntu 22.04 is no longer offered for new servers.

### In-App Notifications and Brotli Compression

Notification preferences now include in-app notifications alongside email, with successful deployment and stale server alerts toggleable individually. Brotli compression modules are compiled and loaded on new servers, ready to enable in your Nginx configuration.

---

Key Takeaways
-------------

- **Read-through filesystems** enable zero-downtime storage migrations with automatic file promotion.
- **Scout** now supports semantic and hybrid search via Turbopuffer, Meilisearch, and the database engine.
- **Managed queues** on Cloud offer FIFO ordering and two compute classes (Flex and Pro).
- **Private Cloud** is now HIPAA-compliant with BAA support for healthcare teams.
- **Forge** supports Ubuntu 26.04 LTS and multiple source control accounts per provider.

---

Source: [Laravel August product updates](https://laravel.com/blog/laravel-august-product-updates)

 Found this useful?

          [  ](https://twitter.com/intent/tweet?url=https%3A%2F%2Fwww.msaied.com%2Farticles%2Flaravel-august-2026-product-updates-framework-cloud-and-forge&text=Laravel+August+2026+Product+Updates%3A+Framework%2C+Cloud%2C+and+Forge) [  ](https://www.linkedin.com/sharing/share-offsite/?url=https%3A%2F%2Fwww.msaied.com%2Farticles%2Flaravel-august-2026-product-updates-framework-cloud-and-forge) 

 Frequently Asked Questions 
----------------------------

  3 questions  

     Q01  What is the read-through filesystem driver in Laravel?        The read-through filesystem driver lets you migrate between two storage disks with no downtime. Laravel checks the primary disk first; if a file only exists on the fallback disk, it serves the file and copies it to the primary disk so future requests are served from the new location automatically. 

      Q02  What is the difference between Flex and Pro compute classes for Laravel Cloud managed queues?        Flex scales to zero and wakes in under a second, making it cost-effective for bursty or infrequent workloads. Pro stays warm at all times, providing consistent low-latency throughput for steady, latency-sensitive jobs such as payments or real-time processing. 

      Q03  How do I use semantic search with Laravel Scout?        Chain the -&gt;semantic() or -&gt;hybrid() method onto the Scout builder. Semantic search is supported on the Turbopuffer engine as well as Scout's database and Meilisearch engines, allowing you to search by meaning rather than exact keyword matches. 

  Continue reading

 More Articles 
---------------

 [ View all    ](https://www.msaied.com/articles) 

 [ ![Laravel queue:work Now Prints Why the Worker Stopped](https://cdn.msaied.com/629/bed93940d17b932032d64cee2e32d333.png) Laravel Queue Laravel 13.30 

### Laravel queue:work Now Prints Why the Worker Stopped

Laravel 13.30 adds a stop-reason line to queue:work output. Workers now print why they exited—memory limit, re...

  ![Mohamed Said](https://cdn.msaied.com/01KT78WE565VEMM3PSNQAAB0MJ.jpg)  Mohamed Said 

 3 Sep 2026     3 min read  

  Read    

 ](https://www.msaied.com/articles/laravel-queuework-now-prints-why-the-worker-stopped) [ ![The Laracon Archive: 626 Talks, 287 Speakers, and 14 Years of Laravel History](https://cdn.msaied.com/628/13d8d0cef5fb083813df134cc253bb1b.png) laracon laravel community 

### The Laracon Archive: 626 Talks, 287 Speakers, and 14 Years of Laravel History

The Laracon Archive is a community-built, searchable index of every recorded Laracon talk — 626 talks from 287...

  ![Mohamed Said](https://cdn.msaied.com/01KT78WE565VEMM3PSNQAAB0MJ.jpg)  Mohamed Said 

 3 Sep 2026     3 min read  

  Read    

 ](https://www.msaied.com/articles/the-laracon-archive-626-talks-287-speakers-and-14-years-of-laravel-history) [ ![Semantic Memory or Just Markdown? How Laravel Boost Manages AI Agent Project Rules](https://cdn.msaied.com/627/b162933f96fd615f3165bfe167816018.png) Laravel Boost AI Agents Context Engineering 

### Semantic Memory or Just Markdown? How Laravel Boost Manages AI Agent Project Rules

Laravel Boost tried semantic search with embeddings and a vector index to give AI coding agents project memory...

  ![Mohamed Said](https://cdn.msaied.com/01KT78WE565VEMM3PSNQAAB0MJ.jpg)  Mohamed Said 

 3 Sep 2026     4 min read  

  Read    

 ](https://www.msaied.com/articles/semantic-memory-or-just-markdown-how-laravel-boost-manages-ai-agent-project-rules) 

   [  ![Mohamed Said](https://cdn.msaied.com/01KT78WE565VEMM3PSNQAAB0MH.png)   Mohamed Said Laravel Backend Engineer  ](https://www.msaied.com)Senior Backend Engineer specializing in Laravel, scalable SaaS platforms, APIs, and cloud infrastructure. I build secure, high-performance web applications that help businesses grow.

Explore

- [Home](https://www.msaied.com)
- [Projects](https://www.msaied.com/projects)
- [Articles](https://www.msaied.com/articles)
- [Certificates](https://www.msaied.com/certificates)
- [Contact](https://www.msaied.com#contact-section)

Connect

- [   hello@msaied.com ](mailto:hello@msaied.com)
- [   +20 109 461 9204 ](tel:+201094619204)

© 2026 Mohamed Said. All rights reserved.

 [  ](https://github.com/EG-Mohamed) [  ](https://www.linkedin.com/in/msaiedm/) [  ](https://wa.me/201094619204) [  ](mailto:hello@msaied.com) [  ](https://drive.google.com/file/u/0/d/1MF20IPRJyzfy32mhEutjL5EpSls0w2Q8/view)
