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/filamentpackage to^3.3.55and 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 updateis sufficient. - All other changes are internal CI dependency bumps with no runtime impact.
- The full diff from v3.3.54 is available on GitHub.