Filament v3.3.55 Released: CTRL/CMD+S Fix and CI Dependency Updates
Laravel Filament #filament #laravel #php #release #bug-fix #keyboard-shortcut

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

2 min read Mohamed Said Mohamed Said

Filament v3.3.55: What's New

The Filament PHP team tagged 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 in #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.

composer update filament/filament

After updating, verify the installed version:

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.

Source: Filament v3.3.55 release notes on GitHub

Found this useful?

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