The Wire · Showcase
LARAVEL 13 LOCKS DOWN DEPENDENCIES, 12.65.0 FIXES FACTORY EDGE CASES
By RepoJournal · Filed · About Laravel
Laravel's next major version is raising minimum dependency versions to eliminate 37 security vulnerabilities that could slip past composer update --prefer-lowest.
The 13.x branch just merged aggressive dependency bumping [1] that closes a critical audit gap: while normal composer update passes security checks, the prefer-lowest resolution strategy was still installing vulnerable packages. Lucas Michot's fix raises minimums across several packages to their first patched versions, turning a silent pass into actionable findings. Meanwhile, v12.65.0 shipped four targeted fixes [2] including a critical Factory::insert() correction for zero counts and schedule list timezone handling. The same PR cycle also landed test suite cleanups [3] [4] converting outdated expectException patterns to the cleaner expectExceptionObject approach, shedding boilerplate ahead of PHPUnit 13.2's coming deprecations. A weekly composer audit workflow now runs across the full PHP/stability matrix, catching newly published advisories before they hit your builds [1].
One email a day. Unsubscribe in one click.
Keep up with Laravel in about 3 minutes a day: what actually shipped — the commits, pull requests, releases, and security advisories that matter.
One email a day. Unsubscribe in one click. Read a past issue →
Action items
- → If on 12.x: upgrade to v12.65.0 immediately for Factory and schedule fixes laravel/framework [immediate]
- → For 13.x development: pull the minimum version bumps to stay ahead of supply chain risk laravel/framework [plan]
- → Monitor 13.x test refactors if you maintain custom test suites using deprecated expectException patterns laravel/framework [monitor]
References
- [1] [13.x] Bump minimum versions (#61033) laravel/framework
- [2] v12.65.0 ↗ laravel/framework
- [3] Simplify remaining exception expectations ↗ laravel/framework
- [4] [13.x] Simplify most of the exceptions expectations ↗ laravel/framework