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://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)    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://www.msaied.com/articles?category=laravel) [  Livewire ](https://www.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%2Fwww.msaied.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%2Fwww.msaied.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://www.msaied.com/articles) 

 [ ![Laravel AI SDK v0.10: 4 New Features Explained](https://cdn.msaied.com/540/e74363f048913d3782bc16a7292215db.png) Laravel AI SDK AI Agents Filesystem Tools 

### Laravel AI SDK v0.10: 4 New Features Explained

Laravel AI SDK v0.10 ships with filesystem tools for agents, human tool approval, and more. This walkthrough c...

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

 12 Aug 2026     3 min read  

  Read    

 ](https://www.msaied.com/articles/laravel-ai-sdk-v010-4-new-features-explained) [ ![NightOwl: Laravel Monitoring With Flat Pricing and Your Own PostgreSQL Storage](https://cdn.msaied.com/538/60582948c0339b19e872f4f3c03171f2.png) Laravel Monitoring PostgreSQL 

### NightOwl: Laravel Monitoring With Flat Pricing and Your Own PostgreSQL Storage

NightOwl redirects Laravel Nightwatch telemetry into a PostgreSQL database you own, replacing per-event billin...

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

 11 Aug 2026     3 min read  

  Read    

 ](https://www.msaied.com/articles/nightowl-laravel-monitoring-with-flat-pricing-and-your-own-postgresql-storage) [ ![Mock PHP Classes in Tests With the Double Library](https://cdn.msaied.com/537/be45e68dffd72aa9bd833c2f409fcb07.png) testing mocking phpunit 

### Mock PHP Classes in Tests With the Double Library

Double is a PHP 8.3 test double library by Jason McCreary that replaces mocks, spies, and partials with a sing...

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

 11 Aug 2026     4 min read  

  Read    

 ](https://www.msaied.com/articles/mock-php-classes-in-tests-with-the-double-library) 

   [  ![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)
