Livewire v3.8.4: Octane Leak Fix &amp; Redirect Handling | Mohamed Said        [  ![Mohamed Said](https://cdn.msaied.com/01KT78WE565VEMM3PSNQAAB0MH.png)   Mohamed Said Laravel Backend Engineer  ](https://msaied.com) [ Home ](https://msaied.com) [ Projects ](https://msaied.com/projects) [ Articles  ](https://msaied.com/articles) [ Certificates ](https://msaied.com/certificates) [ Contact ](https://msaied.com#contact-section) 

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

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

  [ home ](https://msaied.com)    [ articles ](https://msaied.com/articles)    Livewire v3.8.4 Released: Octane Memory Leak Fix and Fetch Redirect Handling        On this page       1. [  Livewire v3.8.4: What's New ](#livewire-v384-whats-new)
2. [  1. Octane Computed Property Listener Memory Leak Fix ](#1-octane-computed-property-listener-memory-leak-fix)
3. [  2. Fetch Redirect Handling ](#2-fetch-redirect-handling)
4. [  3. Releases Now Prepared as Drafts ](#3-releases-now-prepared-as-drafts)
5. [  How to Upgrade ](#how-to-upgrade)
6. [  Key Takeaways ](#key-takeaways)

  ![Livewire v3.8.4 Released: Octane Memory Leak Fix and Fetch Redirect Handling](https://cdn.msaied.com/534/fdb2d91db2cb26fba0788d205b663031.png)

 [  Laravel ](https://msaied.com/articles?category=laravel) [  Livewire ](https://msaied.com/articles?category=livewire)  #livewire   #laravel   #octane   #bug-fix   #php  

 Livewire v3.8.4 Released: Octane Memory Leak Fix and Fetch Redirect Handling 
==============================================================================

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

       Table of contents

1. [  01   Livewire v3.8.4: What's New  ](#livewire-v384-whats-new)
2. [  02   1. Octane Computed Property Listener Memory Leak Fix  ](#1-octane-computed-property-listener-memory-leak-fix)
3. [  03   2. Fetch Redirect Handling  ](#2-fetch-redirect-handling)
4. [  04   3. Releases Now Prepared as Drafts  ](#3-releases-now-prepared-as-drafts)
5. [  05   How to Upgrade  ](#how-to-upgrade)
6. [  06   Key Takeaways  ](#key-takeaways)

 Livewire v3.8.4: What's New
---------------------------

Released on 10 August 2026, Livewire v3.8.4 is a focused patch release on the 3.x branch. It backports two bug fixes from the main development line and introduces a small workflow improvement for the release process itself. Let's walk through each change.

---

### 1. Octane Computed Property Listener Memory Leak Fix

If you run your Laravel application under **Laravel Octane**, you may have encountered a subtle but serious issue: computed property listeners were not being cleaned up between requests. Because Octane keeps the PHP process alive across many requests, any listener that is registered but never removed accumulates over time, leading to a **memory leak** that grows with traffic.

PR [\#10455](https://github.com/livewire/livewire/pull/10455), authored by [@joshhanley](https://github.com/joshhanley), backports the fix to the 3.x branch. After upgrading to v3.8.4, computed property listeners are properly torn down at the end of each request lifecycle, keeping your Octane worker memory stable.

**Who is affected?** Any Livewire 3.x application running under Laravel Octane that uses computed properties. If you have noticed steadily increasing memory usage on long-running Octane workers, this patch is worth applying immediately.

### 2. Fetch Redirect Handling

The second backport (PR [\#10508](https://github.com/livewire/livewire/pull/10508), also by [@joshhanley](https://github.com/joshhanley)) improves how Livewire handles HTTP redirects that occur during a `fetch` request.

Previously, certain redirect responses triggered by Livewire's internal fetch calls could be handled inconsistently, potentially causing the browser to end up on an unexpected page or silently fail. The fix ensures that redirect responses are detected and processed correctly, so your users are sent to the right destination every time.

This is particularly relevant if your Livewire components trigger server-side redirects — for example, after a form submission or an authentication check inside a component action.

### 3. Releases Now Prepared as Drafts

PR [\#10521](https://github.com/livewire/livewire/pull/10521) by [@calebporzio](https://github.com/calebporzio) changes the internal release workflow so that GitHub releases are prepared as **drafts** before being published. This is a housekeeping improvement that gives the maintainers a review window before a release goes public — no user-facing behaviour changes here.

---

How to Upgrade
--------------

Updating is straightforward via Composer:

```bash
composer require livewire/livewire:^3.8.4

```

No breaking changes are introduced in this patch release. Review your `composer.lock` after the update to confirm the new version is resolved.

---

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

- **Octane users should upgrade promptly** — the computed property listener leak can cause real memory pressure in production.
- **Fetch redirect handling is now more reliable**, reducing the risk of users landing on unexpected pages after component actions.
- The release workflow now uses draft releases, improving the maintainers' quality-control process.
- This is a **patch release** (3.8.3 → 3.8.4); no migration steps are required.

---

Source: [Livewire v3.8.4 on GitHub](https://github.com/livewire/livewire/releases/tag/v3.8.4)

 Found this useful?

          [  ](https://twitter.com/intent/tweet?url=https%3A%2F%2Fmsaied.com%2Farticles%2Flivewire-v384-released-octane-memory-leak-fix-and-fetch-redirect-handling&text=Livewire+v3.8.4+Released%3A+Octane+Memory+Leak+Fix+and+Fetch+Redirect+Handling) [  ](https://www.linkedin.com/sharing/share-offsite/?url=https%3A%2F%2Fmsaied.com%2Farticles%2Flivewire-v384-released-octane-memory-leak-fix-and-fetch-redirect-handling) 

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

  3 questions  

     Q01  Does the Octane memory leak fix in Livewire v3.8.4 require any code changes in my application?        No. The fix is entirely internal to Livewire. Simply upgrading to v3.8.4 via Composer is sufficient — no changes to your component code are needed. 

      Q02  What kind of redirects does the fetch redirect handling fix address?        It addresses HTTP redirects that occur during Livewire's internal fetch requests, such as those triggered by server-side redirects inside component actions (e.g., after form submissions or auth checks). The fix ensures the browser is sent to the correct destination instead of handling the redirect inconsistently. 

      Q03  Is Livewire v3.8.4 a breaking change?        No. v3.8.4 is a patch release containing only bug fixes and an internal workflow improvement. There are no breaking changes, and no migration steps are required when upgrading from v3.8.3. 

  Continue reading

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

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

 [ ![Cursor Pagination and Lazy Collections at Scale in Laravel](https://cdn.msaied.com/536/3aab48ef4a4eaa26a3267637dc2ec8c7.png) laravel eloquent performance 

### Cursor Pagination and Lazy Collections at Scale in Laravel

Offset pagination breaks under large datasets. Learn how Laravel's cursor pagination and lazy collections let...

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

 11 Aug 2026     3 min read  

  Read    

 ](https://msaied.com/articles/cursor-pagination-and-lazy-collections-at-scale-in-laravel) [ ![Laravel artisan dev: Run Server, Queue, Logs, and Vite in One Command](https://cdn.msaied.com/533/88ab98460b08aed42d6688eaa02a9620.png) Laravel Artisan Laravel 13 

### Laravel artisan dev: Run Server, Queue, Logs, and Vite in One Command

Laravel 13.16 introduced a first-party `php artisan dev` command that replaces the old Composer script, runnin...

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

 10 Aug 2026     3 min read  

  Read    

 ](https://msaied.com/articles/laravel-artisan-dev-run-server-queue-logs-and-vite-in-one-command) [ ![PostgreSQL JSONB in Laravel: Indexing, Querying, and Casting Without the Pain](https://cdn.msaied.com/532/0c1c122849d3f997950ffca44076f86c.png) laravel postgresql eloquent 

### PostgreSQL JSONB in Laravel: Indexing, Querying, and Casting Without the Pain

JSONB columns unlock flexible schemas in PostgreSQL, but raw queries get ugly fast. Learn how to index, query,...

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

 10 Aug 2026     4 min read  

  Read    

 ](https://msaied.com/articles/postgresql-jsonb-in-laravel-indexing-querying-and-casting-without-the-pain-1) 

   [  ![Mohamed Said](https://cdn.msaied.com/01KT78WE565VEMM3PSNQAAB0MH.png)   Mohamed Said Laravel Backend Engineer  ](https://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://msaied.com)
- [Projects](https://msaied.com/projects)
- [Articles](https://msaied.com/articles)
- [Certificates](https://msaied.com/certificates)
- [Contact](https://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)
