Livewire v4.4.3: What's New &amp; Fixed | 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 v4.4.3 Released: Bug Fixes, Performance Improvements &amp; Alpine 3.17.1        On this page       1. [  Livewire v4.4.3 Is Out — Here's Everything That Changed ](#livewire-v443-is-out-heres-everything-that-changed)
2. [  Key Fixes ](#key-fixes)
3. [  wire:loading Now Restores Attributes and Classes ](#wireloading-now-restores-attributes-and-classes)
4. [  Uninitialized Form Properties Reset Correctly ](#uninitialized-form-properties-reset-correctly)
5. [  URL Properties Preserve Structured Strings ](#url-properties-preserve-structured-strings)
6. [  Islands Survive Nested Blade Directives ](#islands-survive-nested-blade-directives)
7. [  Script Module Suspension ](#script-module-suspension)
8. [  Model Reuse Across Properties ](#model-reuse-across-properties)
9. [  wire:dirty Stays Subscribed ](#wiredirty-stays-subscribed)
10. [  Other Notable Changes ](#other-notable-changes)
11. [  Quick Takeaways ](#quick-takeaways)

  ![Livewire v4.4.3 Released: Bug Fixes, Performance Improvements & Alpine 3.17.1](https://cdn.msaied.com/616/ce49bf9badea064015ade0ed0c208d1a.png)

 [  Livewire ](https://msaied.com/articles?category=livewire)  #Livewire   #Laravel   #PHP   #Alpine.js   #Release Notes  

 Livewire v4.4.3 Released: Bug Fixes, Performance Improvements &amp; Alpine 3.17.1 
===================================================================================

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

       Table of contents

  11 sections  

1. [  01   Livewire v4.4.3 Is Out — Here's Everything That Changed  ](#livewire-v443-is-out-heres-everything-that-changed)
2. [  02   Key Fixes  ](#key-fixes)
3. [  03   wire:loading Now Restores Attributes and Classes  ](#wireloading-now-restores-attributes-and-classes)
4. [  04   Uninitialized Form Properties Reset Correctly  ](#uninitialized-form-properties-reset-correctly)
5. [  05   URL Properties Preserve Structured Strings  ](#url-properties-preserve-structured-strings)
6. [  06   Islands Survive Nested Blade Directives  ](#islands-survive-nested-blade-directives)
7. [  07   Script Module Suspension  ](#script-module-suspension)
8. [  08   Model Reuse Across Properties  ](#model-reuse-across-properties)
9. [  09   wire:dirty Stays Subscribed  ](#wiredirty-stays-subscribed)
10. [  10   Other Notable Changes  ](#other-notable-changes)
11. [  11   Quick Takeaways  ](#quick-takeaways)

       Livewire v4.4.3 Is Out — Here's Everything That Changed
-------------------------------------------------------

Released on 31 August 2026, **Livewire v4.4.3** is a focused patch release packed with 24 pull requests. It addresses a broad range of bugs, tightens up edge-case behaviour, and ships a bundled upgrade to Alpine.js 3.17.1. If you are running Livewire 4.x in production, this update is worth applying promptly.

---

Key Fixes
---------

### wire:loading Now Restores Attributes and Classes

A long-standing annoyance is resolved: after a `wire:loading` state ends, Livewire now correctly restores any pre-existing HTML attributes and CSS classes that were present on the element before loading began. Previously those values could be lost after the loading cycle completed.

### Uninitialized Form Properties Reset Correctly

Calling `reset()` on a form object that contained uninitialized properties no longer throws errors or produces unexpected state. The fix ensures the reset path handles properties that were never explicitly set during `mount()`.

### URL Properties Preserve Structured Strings

When a component property is bound to the URL via `#[Url]`, structured string values (such as JSON-encoded data or comma-separated lists) are now preserved faithfully instead of being mangled during hydration.

### Islands Survive Nested Blade Directives

Livewire islands are now preserved correctly when they appear inside nested Blade directives. Previously, certain directive nesting patterns caused islands to be dropped from the rendered output.

### Script Module Suspension

Two related PRs introduce smarter handling of JavaScript ES module scripts:

- Component trees are now **suspended** until their required script modules have fully loaded, preventing components from initialising against an incomplete JS environment.
- Script modules are **prefetched** before the page actually needs them, reducing the perceived latency of first interaction.

### Model Reuse Across Properties

When multiple Livewire properties resolve to the same Eloquent model, Livewire now reuses the already-resolved model instance instead of querying the database again. This can meaningfully reduce query counts in components with several model-typed properties.

### wire:dirty Stays Subscribed

`wire:dirty` bindings now remain subscribed to every target element they track, fixing cases where dirty indicators stopped responding after a partial DOM update.

---

Other Notable Changes
---------------------

- **`$attributes` in lazy placeholder views** — `$attributes` passed to a lazy component are now available inside its `placeholder()` view.
- **`wire:poll` minute durations** — You can now specify poll intervals in minutes (e.g. `wire:poll.1m`) rather than only seconds or milliseconds.
- **`wire:intersect` continuous visibility timing** — A new continuous visibility timing option has been added, giving finer control over intersection-triggered behaviour.
- **`wire:sort:item` late-added attributes** — Attributes added to sortable items after initial render are now picked up correctly.
- **`SupportPageComponents` listener cleanup** — The render listener is now properly removed when a component skips rendering or throws an exception, preventing memory leaks in long-running processes.
- **`wire:transition` after Flux toast dismissal** — A bug where `wire:transition` was skipped after a Flux toast auto-dismissed has been resolved.
- **Redirect responses excluded from returns effect** — Redirect responses are no longer incorrectly included in the component's returns effect payload.
- **Array-shaped synthesizer guard** — Property updates now validate array-shaped synthesizers before processing, preventing type errors on malformed payloads.
- **Unnecessary validation data unwrapping removed** — An internal optimisation avoids redundant unwrapping of validation data structures.
- **`TypeErrors` surfaced in tests** — `TypeErrors` thrown during Livewire test runs are now propagated correctly across all supported Laravel versions.
- **Alpine.js bumped to 3.17.1** — The bundled Alpine version has been updated.
- **`FrontendAssets` return types** — Public methods on `FrontendAssets` now carry explicit PHP return type declarations.
- **Component instance shared with island views** — The parent component instance is now shared with views rendered during an island render pass.

---

Quick Takeaways
---------------

- `wire:loading` no longer strips existing attributes/classes from elements.
- URL-bound properties now handle structured strings without corruption.
- Script modules are prefetched and components suspend until modules are ready.
- Eloquent model resolution is deduplicated across properties in the same component.
- `wire:poll` now accepts minute-based intervals.
- Alpine.js 3.17.1 is bundled.
- `TypeErrors` in tests are reliably surfaced across Laravel versions.

---

Update via Composer:

```bash
composer update livewire/livewire

```

Review the full diff at the [official v4.4.3 release page](https://github.com/livewire/livewire/releases/tag/v4.4.3).

 Found this useful?

          [  ](https://twitter.com/intent/tweet?url=https%3A%2F%2Fmsaied.com%2Farticles%2Flivewire-v443-released-bug-fixes-performance-improvements-alpine-3171&text=Livewire+v4.4.3+Released%3A+Bug+Fixes%2C+Performance+Improvements+%26+Alpine+3.17.1) [  ](https://www.linkedin.com/sharing/share-offsite/?url=https%3A%2F%2Fmsaied.com%2Farticles%2Flivewire-v443-released-bug-fixes-performance-improvements-alpine-3171) 

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

  3 questions  

     Q01  What does the wire:loading attribute restoration fix in Livewire v4.4.3 mean for my components?        Before v4.4.3, any HTML attributes or CSS classes already present on an element could be lost after a wire:loading cycle completed. The fix ensures those original attributes and classes are fully restored once the loading state ends, so your UI no longer loses styling or behaviour after a Livewire request. 

      Q02  How does script module suspension work in Livewire v4.4.3?        Livewire now holds a component tree in a suspended state until all required JavaScript ES modules have finished loading. It also begins fetching those modules earlier in the page lifecycle. Together, these changes prevent components from initialising before their JS dependencies are ready and reduce the delay before a component becomes interactive. 

      Q03  Can I now use minute-based intervals with wire:poll in Livewire 4.x?        Yes. Livewire v4.4.3 adds support for minute durations in wire:poll, so you can write wire:poll.1m or similar instead of converting to milliseconds manually. 

  Continue reading

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

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

 [ ![Extracting AI Rules from an Existing Laravel Codebase with Laravel Boost](https://cdn.msaied.com/615/60aa9079953ed56554726c93cca8ebd6.png) Laravel Boost AI Agents Artisan 

### Extracting AI Rules from an Existing Laravel Codebase with Laravel Boost

Laravel Boost's infer-conventions skill scans your existing codebase, gathers evidence across 49 convention di...

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

 31 Aug 2026     4 min read  

  Read    

 ](https://msaied.com/articles/extracting-ai-rules-from-an-existing-laravel-codebase-with-laravel-boost) [ ![Laravel 12: New Features, Helpers, and Practical Upgrade Notes](https://cdn.msaied.com/613/3ae9f2d6a41ea381d43aeed4c462ae97.png) laravel laravel-12 upgrade 

### Laravel 12: New Features, Helpers, and Practical Upgrade Notes

Laravel 12 ships with streamlined application scaffolding, first-class support for typed route model binding i...

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

 31 Aug 2026     3 min read  

  Read    

 ](https://msaied.com/articles/laravel-12-new-features-helpers-and-practical-upgrade-notes-2) [ ![Laravel Octane + FrankenPHP: Persistent Services, Shared State, and Safe Singletons](https://cdn.msaied.com/612/2bd17daafd0c48a0aa824a6d744fb403.png) laravel octane frankenphp 

### Laravel Octane + FrankenPHP: Persistent Services, Shared State, and Safe Singletons

Running Laravel under FrankenPHP workers means your service container lives across requests. Learn which singl...

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

 31 Aug 2026     4 min read  

  Read    

 ](https://msaied.com/articles/laravel-octane-frankenphp-persistent-services-shared-state-and-safe-singletons) 

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