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

 [ ![Livewire v3 Internals: Morph Markers, JS Hooks, and Alpine Integration](https://cdn.msaied.com/587/2c14265af448474f2da7319e924e95c1.png) livewire laravel alpine 

### Livewire v3 Internals: Morph Markers, JS Hooks, and Alpine Integration

Go beyond the docs: understand how Livewire v3 morphs the DOM, where Alpine state lives during re-renders, and...

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

 24 Aug 2026     3 min read  

  Read    

 ](https://msaied.com/articles/livewire-v3-internals-morph-markers-js-hooks-and-alpine-integration-4) [ ![Pest Architecture Testing: Enforcing Domain Boundaries in a Laravel Codebase](https://cdn.msaied.com/586/d7ec30575e05c87e236fa8000b60175d.png) pest laravel testing 

### Pest Architecture Testing: Enforcing Domain Boundaries in a Laravel Codebase

Pest's architecture plugin lets you write executable rules that prevent domain leakage, enforce naming convent...

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

 24 Aug 2026     3 min read  

  Read    

 ](https://msaied.com/articles/pest-architecture-testing-enforcing-domain-boundaries-in-a-laravel-codebase) [ ![FrankenPHP, OPcache JIT, and Preloading: Squeezing Real Throughput from Laravel](https://cdn.msaied.com/585/7dc4b3832f33e2c630172d5b5dd24ac1.png) laravel frankenphp performance 

### FrankenPHP, OPcache JIT, and Preloading: Squeezing Real Throughput from Laravel

A practical guide to deploying Laravel under FrankenPHP with OPcache JIT and preloading enabled — covering wor...

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

 23 Aug 2026     1 min read  

  Read    

 ](https://msaied.com/articles/frankenphp-opcache-jit-and-preloading-squeezing-real-throughput-from-laravel-3) 

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