Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"spatie/laravel-package-tools": "^1.16",
"illuminate/contracts": "^10.0||^11.0||^12.0",
"illuminate/support": "^10.0||^11.0||^12.0",
"filament/filament": "^3.0||^4.0"
"filament/filament": "^5.1.0"
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Dependency update unnecessarily drops Filament 4.x compatibility

Medium Severity

The dependency constraint change from ^3.0||^4.0 to ^5.1.0 removes support for Filament 4.x entirely, rather than adding Filament 5 support alongside existing versions. The codebase uses Filament\Schemas\Schema and Filament\Tables\Table classes which exist in both v4 and v5, so backward compatibility could be preserved. The constraint ^4.0||^5.0 (or similar) would permit the latest version while maintaining v4 compatibility for existing users.

Fix in Cursor Fix in Web

},
"require-dev": {
"laravel/pint": "^1.14",
Expand Down
Loading