Laravel 9.19 Released
July 1st, 2022
Via:
Laravel News
Mostly fixes this week with one main feature bumping us to Laravel 9.19. New allowMaxRedirects() to PendingRequest functions, support to detect dirty encrypted model attributes and more:
- Add allowMaxRedirects() to PendingRequest in #42902
- Add support to detect dirty encrypted model attributes in #42888
- Handle cursor pagination when no items are found in #42963
- First-party support for Vite in #42785
- You may review the full branch diff on GitHub for a complete list of changes.
Release Notes
You can see the complete list of new features and updates below and the diff between 9.18.0 and 9.19.0 on GitHub. The following release notes are directly from the changelog
Added
- Add new allowMaxRedirects method to PendingRequest (#42902)
- Add support to detect dirty encrypted model attributes (#42888)
- Added Vite (#42785)
Fixed
- Fixed bug on forceCreate on a MorphMay relationship not including morph type (#42929)
- Fix default parameter bug in routes (#42942)
- Handle cursor paginator when no items are found (#42963)
- Fixed Str::Mask() for repeating chars (#42956)
- Fix undefined constant error when use slot name as key of object (#42943)
- Fix BC break for Log feature tests (#42987)
Changed
- Allow instance of Enum pass Enum Rule (#42906)