Filament v3.3.55: CTRL/CMD+S Save Fix | 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)    Filament v3.3.55 Released: CTRL/CMD+S Fix and CI Dependency Updates        On this page       1. [  Filament v3.3.55: What's New ](#filament-v3355-whats-new)
2. [  Bug Fix: CTRL/CMD+S on Create and Edit Pages ](#bug-fix-ctrlcmds-on-create-and-edit-pages)
3. [  CI and GitHub Actions Dependency Bumps ](#ci-and-github-actions-dependency-bumps)
4. [  New Contributor ](#new-contributor)
5. [  Key Takeaways ](#key-takeaways)

  ![Filament v3.3.55 Released: CTRL/CMD+S Fix and CI Dependency Updates](https://cdn.msaied.com/589/31730941b34d9de9327a9bfc0652186e.png)

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

 Filament v3.3.55 Released: CTRL/CMD+S Fix and CI Dependency Updates 
=====================================================================

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

       Table of contents

1. [  01   Filament v3.3.55: What's New  ](#filament-v3355-whats-new)
2. [  02   Bug Fix: CTRL/CMD+S on Create and Edit Pages  ](#bug-fix-ctrlcmds-on-create-and-edit-pages)
3. [  03   CI and GitHub Actions Dependency Bumps  ](#ci-and-github-actions-dependency-bumps)
4. [  04   New Contributor  ](#new-contributor)
5. [  05   Key Takeaways  ](#key-takeaways)

 Filament v3.3.55: What's New
----------------------------

The Filament PHP team tagged [v3.3.55](https://github.com/filamentphp/filament/releases/tag/v3.3.55) on 24 August 2026. While this is primarily a maintenance release, it contains one developer-facing bug fix that is worth paying attention to if your users rely on keyboard shortcuts to save records.

### Bug Fix: CTRL/CMD+S on Create and Edit Pages

The headline change in this release is a fix contributed by first-time contributor [@tominal](https://github.com/tominal) in [\#20333](https://github.com/filamentphp/filament/pull/20333).

Prior to this patch, pressing **CTRL+S** (Windows/Linux) or **CMD+S** (macOS) on a Filament v3 create or edit page did not reliably trigger the save action. This is a common power-user shortcut, and its inconsistent behaviour was a friction point for anyone building data-heavy admin panels.

The fix restores the expected behaviour so that the keyboard shortcut correctly submits the form on both page types.

> **Upgrade note:** No configuration changes are required. Simply update your `filament/filament` package to `^3.3.55` and the fix is applied automatically.

```bash
composer update filament/filament

```

After updating, verify the installed version:

```bash
composer show filament/filament | grep versions

```

### CI and GitHub Actions Dependency Bumps

The rest of the changelog consists of automated Dependabot pull requests keeping the repository's GitHub Actions workflow dependencies current. These changes have no impact on your application at runtime, but they keep the project's CI pipeline secure and up to date.

| Action / Tool | From | To | |---|---|---| | `actions/checkout` | 6.0.2 | 7.0.1 (multiple steps) | | `actions/cache` | 5.0.5 | 6.1.0 | | `actions/setup-node` | 6.4.0 | 7.0.0 | | `shivammathur/setup-php` | 2.37.1 | 2.37.2 | | `stefanzweifel/git-auto-commit-action` | 7.1.0 | 7.2.0 | | `zizmorcore/zizmor-action` | 0.5.6 | 0.6.2 (multiple steps) |

Keeping CI actions pinned to verified versions is a supply-chain security best practice, and these bumps reflect the project's commitment to that standard.

### New Contributor

Welcome to **@tominal**, who made their first contribution to Filament with the CTRL/CMD+S keyboard shortcut fix. Open-source projects thrive on exactly this kind of targeted, high-value contribution.

### Key Takeaways

- **Update to v3.3.55** to restore CTRL/CMD+S save behaviour on create and edit pages.
- The fix requires no code changes on your end — a `composer update` is sufficient.
- All other changes are internal CI dependency bumps with no runtime impact.
- The full diff from v3.3.54 is available on [GitHub](https://github.com/filamentphp/filament/compare/v3.3.54...v3.3.55).

---

Source: [Filament v3.3.55 release notes on GitHub](https://github.com/filamentphp/filament/releases/tag/v3.3.55)

 Found this useful?

          [  ](https://twitter.com/intent/tweet?url=https%3A%2F%2Fwww.msaied.com%2Farticles%2Ffilament-v3355-released-ctrlcmds-fix-and-ci-dependency-updates&text=Filament+v3.3.55+Released%3A+CTRL%2FCMD%2BS+Fix+and+CI+Dependency+Updates) [  ](https://www.linkedin.com/sharing/share-offsite/?url=https%3A%2F%2Fwww.msaied.com%2Farticles%2Ffilament-v3355-released-ctrlcmds-fix-and-ci-dependency-updates) 

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

  3 questions  

     Q01  What does the CTRL/CMD+S fix in Filament v3.3.55 actually change?        Before v3.3.55, pressing CTRL+S or CMD+S on a Filament v3 create or edit page did not reliably submit the form. The fix by @tominal in PR #20333 restores the expected behaviour so the keyboard shortcut correctly triggers the save action on both page types. 

      Q02  Do I need to change any configuration after upgrading to Filament v3.3.55?        No. Running `composer update filament/filament` is all that is required. The keyboard shortcut fix is applied automatically with no configuration changes needed. 

      Q03  Do the GitHub Actions dependency bumps in v3.3.55 affect my Filament application?        No. Those changes only update the CI workflow tooling used inside the Filament repository itself. They have no effect on your application's runtime behaviour. 

  Continue reading

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

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

 [ ![Laravel Queues at Scale: Backpressure, Dead-Letter Queues, and Graceful Degradation](https://cdn.msaied.com/602/fcffaaa5442f84486d6059eaa4106d26.png) laravel queues reliability 

### Laravel Queues at Scale: Backpressure, Dead-Letter Queues, and Graceful Degradation

Beyond basic queue workers: learn how to implement backpressure signals, dead-letter queues, and graceful degr...

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

 28 Aug 2026     3 min read  

  Read    

 ](https://www.msaied.com/articles/laravel-queues-at-scale-backpressure-dead-letter-queues-and-graceful-degradation) [ ![Mask Query Bindings in Laravel Exception Messages](https://cdn.msaied.com/603/3011313796d00cd5c4e1ead00e1e9ba1.png) Laravel Security QueryException 

### Mask Query Bindings in Laravel Exception Messages

Laravel 13.27 adds a per-connection option to prevent bound query values from appearing in QueryException mess...

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

 27 Aug 2026     3 min read  

  Read    

 ](https://www.msaied.com/articles/mask-query-bindings-in-laravel-exception-messages) [ ![whereBinary(): How to Run Case-Sensitive MySQL Queries in Laravel 13.27](https://cdn.msaied.com/600/0c7655400b43d3b85d1d1e9d0f4c8094.png) Laravel MySQL Query Builder 

### whereBinary(): How to Run Case-Sensitive MySQL Queries in Laravel 13.27

Laravel 13.27 adds whereBinary(), orWhereBinary(), whereNotBinary(), and orWhereNotBinary() — clean query-buil...

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

 26 Aug 2026     4 min read  

  Read    

 ](https://www.msaied.com/articles/wherebinary-how-to-run-case-sensitive-mysql-queries-in-laravel-1327) 

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