Filament v5.8.2: Bug Fixes &amp; Translation Updates | 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)    Filament v5.8.2 Released: Bug Fixes, UI Improvements, and Translation Updates        On this page       1. [  Filament v5.8.2 Is Out — Here's What Changed ](#filament-v582-is-out-heres-what-changed)
2. [  Bug Fixes ](#bug-fixes)
3. [  Translations ](#translations)
4. [  Refactors ](#refactors)
5. [  Documentation ](#documentation)
6. [  Dependency Updates ](#dependency-updates)
7. [  Key Takeaways ](#key-takeaways)

  ![Filament v5.8.2 Released: Bug Fixes, UI Improvements, and Translation Updates](https://cdn.msaied.com/676/9d57e7f850acde05fa371ac2724f478d.png)

 [  Laravel ](https://msaied.com/articles?category=laravel) [  Filament ](https://msaied.com/articles?category=filament)  #filament   #laravel   #php   #release   #bug-fix   #translations  

 Filament v5.8.2 Released: Bug Fixes, UI Improvements, and Translation Updates 
===============================================================================

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

       Table of contents

1. [  01   Filament v5.8.2 Is Out — Here's What Changed  ](#filament-v582-is-out-heres-what-changed)
2. [  02   Bug Fixes  ](#bug-fixes)
3. [  03   Translations  ](#translations)
4. [  04   Refactors  ](#refactors)
5. [  05   Documentation  ](#documentation)
6. [  06   Dependency Updates  ](#dependency-updates)
7. [  07   Key Takeaways  ](#key-takeaways)

 Filament v5.8.2 Is Out — Here's What Changed
--------------------------------------------

Released on 15 September 2026 by Dan Harrin, **Filament v5.8.2** is a focused patch release that addresses a handful of real-world pain points reported by the community. It includes UI fixes, translation additions, a couple of refactors, and updated documentation. Here is a detailed breakdown of everything that landed.

---

### Bug Fixes

#### Tables

- **Mobile-stacked tables now preserve desktop spacing.** A regression caused column spacing to collapse when tables switched to the stacked mobile layout. This is now corrected, keeping the visual rhythm consistent across breakpoints.
- **Session persistence disabled for tables inside a `TableSelect`.** Tables embedded in a `TableSelect` component were incorrectly persisting session state (filters, pagination, etc.), which could bleed state between unrelated uses. Session persistence is now disabled in that context.

#### Page Layout

- **Page header content no longer gets squeezed by actions.** When a page header contained both a title/description and a set of action buttons, the text area could be compressed on narrower viewports. The layout now allocates space correctly.

#### Rich Editor

- **Rich editor content area is now fully clickable.** Previously, clicking in certain whitespace regions of the editor did not focus the input. The content area now responds to clicks across its entire surface.
- **Preloaded rich editor mentions are now filtered client-side.** When mention suggestions are preloaded, filtering now happens in the browser rather than triggering additional server requests on every keystroke.

#### Repeatable Entries

- **Repeatable entry items are rebuilt after in-place collection mutation.** Mutating a collection directly (rather than reassigning it) could leave the rendered repeatable entry out of sync with the underlying data. Items are now correctly rebuilt in this scenario.

#### Tenant Ownership

- **`HasOneThrough` relationships are skipped during tenant association.** Filament was attempting to associate tenants through `HasOneThrough` relationships, which is not a valid operation. These relationships are now skipped gracefully.

#### Routing

- **Scheme is stripped when checking if a panel root route is taken.** The panel root route conflict check was comparing URLs including their scheme (`http://` / `https://`), which could produce false negatives. The scheme is now stripped before comparison.

---

### Translations

Several language packs received updates from community contributors:

- **German** — Fixed `filament-query-builder::query-builder.operators.is_filled.summary` translation key.
- **Brazilian Portuguese (pt\_BR)** — Added missing translations for select actions.
- **Czech** — General translation fixes.
- **Khmer (km)** — Updated translations.

---

### Refactors

- **`CheckboxList` search configuration is now defined directly on the component.** Search-related configuration was previously handled externally; it is now encapsulated within `CheckboxList` itself, making the API cleaner and more predictable.

---

### Documentation

- App authentication cache requirements are now documented.
- The shared Blueprint workflow and Astra comparison are now documented.

---

### Dependency Updates

- `@tiptap/core` bumped from `3.30.4` to `3.30.5`.
- `sharp` bumped from `0.35.0` to `0.35.4` in the docs-assets screenshots toolchain.

---

### Key Takeaways

- Fix for mobile-stacked table spacing regression.
- `TableSelect` no longer leaks session state between table instances.
- Rich editor is fully clickable and mention filtering moves client-side.
- Repeatable entries stay in sync after in-place collection mutations.
- `HasOneThrough` tenant association attempts are now safely skipped.
- Four language packs updated by community contributors.
- `CheckboxList` search config refactored onto the component directly.

---

Upgrade by running:

```bash
composer update filament/filament

```

Review the [full changelog on GitHub](https://github.com/filamentphp/filament/releases/tag/v5.8.2) for every merged pull request.

 Found this useful?

          [  ](https://twitter.com/intent/tweet?url=https%3A%2F%2Fmsaied.com%2Farticles%2Ffilament-v582-released-bug-fixes-ui-improvements-and-translation-updates&text=Filament+v5.8.2+Released%3A+Bug+Fixes%2C+UI+Improvements%2C+and+Translation+Updates) [  ](https://www.linkedin.com/sharing/share-offsite/?url=https%3A%2F%2Fmsaied.com%2Farticles%2Ffilament-v582-released-bug-fixes-ui-improvements-and-translation-updates) 

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

  3 questions  

     Q01  What does the TableSelect session persistence fix in v5.8.2 actually change?        Tables embedded inside a `TableSelect` component were previously persisting session state such as filters and pagination. This meant state could carry over between different uses of the component. In v5.8.2, session persistence is disabled for tables in that context, so each `TableSelect` instance starts clean. 

      Q02  Why was tenant association failing for HasOneThrough relationships before this release?        Filament was attempting to associate a tenant through `HasOneThrough` relationships during the ownership resolution process. Because `HasOneThrough` is a read-only, derived relationship, writing to it is not valid. The fix in v5.8.2 skips these relationships entirely during tenant association. 

      Q03  How do I upgrade to Filament v5.8.2?        Run `composer update filament/filament` in your project root. No additional migration or configuration changes are required for this patch release. 

  Continue reading

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

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

 [ ![Inertia DevTools Now Available for Firefox](https://cdn.msaied.com/674/445325ab535802b1b68d3adc3ada5cd0.png) Inertia.js DevTools Firefox 

### Inertia DevTools Now Available for Firefox

Inertia DevTools has landed on Firefox with full feature parity to the Chrome extension. Firefox users can now...

  ![Mohamed Said](https://cdn.msaied.com/01M22N44A70A5MC2S599JP0MPH.webp)  Mohamed Said 

 17 Sep 2026     3 min read  

  Read    

 ](https://msaied.com/articles/inertia-devtools-now-available-for-firefox) [ ![Laravel Scalpel: Filesystem Intrusion Evidence Scanner for Laravel Apps](https://cdn.msaied.com/675/406b0f123858892b97052502c0020eac.png) security laravel php 

### Laravel Scalpel: Filesystem Intrusion Evidence Scanner for Laravel Apps

Laravel Scalpel is a post-compromise scanner that checks your deployed application's filesystem for rogue PHP...

  ![Mohamed Said](https://cdn.msaied.com/01M22N44A70A5MC2S599JP0MPH.webp)  Mohamed Said 

 17 Sep 2026     4 min read  

  Read    

 ](https://msaied.com/articles/laravel-scalpel-filesystem-intrusion-evidence-scanner-for-laravel-apps) [ ![Mercure Broadcasting in Laravel 13.32](https://cdn.msaied.com/672/f3bf9ae116410789061208a12ebf2682.png) Laravel Broadcasting Mercure 

### Mercure Broadcasting in Laravel 13.32

Laravel 13.32 ships a native Mercure broadcast driver using SSE, new copyToDisk() and moveToDisk() filesystem...

  ![Mohamed Said](https://cdn.msaied.com/01M22N44A70A5MC2S599JP0MPH.webp)  Mohamed Said 

 16 Sep 2026     3 min read  

  Read    

 ](https://msaied.com/articles/mercure-broadcasting-in-laravel-1332) 

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