|
1 | 1 | # Release Notes for 9.x
|
2 | 2 |
|
3 |
| -## [Unreleased](https://github.com/laravel/framework/compare/v9.0.0...9.x) |
| 3 | +## [Unreleased](https://github.com/laravel/framework/compare/v9.1.0...9.x) |
| 4 | + |
| 5 | + |
| 6 | +## [v9.1.0 (2022-02-15)](https://github.com/laravel/framework/compare/v9.0.2...v9.1.0) |
| 7 | + |
| 8 | +### Added |
| 9 | +* Added the ability to use the uniqueFor method for Jobs by @andrey-helldar in https://github.com/laravel/framework/pull/40974 |
| 10 | +* Add filtering of route:list by domain by @Synchro in https://github.com/laravel/framework/pull/40970 |
| 11 | +* Added dropForeignIdFor method to match foreignIdFor method by @bretto36 in https://github.com/laravel/framework/pull/40950 |
| 12 | +* Adds `Str::excerpt` by @nunomaduro in https://github.com/laravel/framework/pull/41000 |
| 13 | +* Make:model --morph flag to generate MorphPivot model by @michael-rubel in https://github.com/laravel/framework/pull/41011 |
| 14 | +* Add doesntContain to higher order proxies by @edemots in https://github.com/laravel/framework/pull/41034 |
| 15 | + |
| 16 | +### Changed |
| 17 | +* Improve types on model factory methods by @axlon in https://github.com/laravel/framework/pull/40902 |
| 18 | +* Add support for passing array as the second parameter for the group method. by @hossein-zare in https://github.com/laravel/framework/pull/40945 |
| 19 | +* Makes `ExceptionHandler::renderForConsole` internal on contract by @nunomaduro in https://github.com/laravel/framework/pull/40956 |
| 20 | +* Put the error message at the bottom of the exceptions by @nshiro in https://github.com/laravel/framework/pull/40886 |
| 21 | +* Expose next and previous cursor of cursor paginator by @gdebrauwer in https://github.com/laravel/framework/pull/41001 |
| 22 | + |
| 23 | +### Fixed |
| 24 | +* Fix FTP root config by @driesvints in https://github.com/laravel/framework/pull/40939 |
| 25 | +* Allows tls encryption to be used with port different than 465 with starttls by @nicolalazzaro in https://github.com/laravel/framework/pull/40943 |
| 26 | +* Catch suppressed deprecation logs by @nunomaduro in https://github.com/laravel/framework/pull/40942 |
| 27 | +* Fix typo in method documentation by @shadman-ahmed in https://github.com/laravel/framework/pull/40951 |
| 28 | +* Patch regex rule parsing due to `Rule::forEach()` by @stevebauman in https://github.com/laravel/framework/pull/40941 |
| 29 | +* Fix replacing request options by @driesvints in https://github.com/laravel/framework/pull/40954 |
| 30 | +* Fix `MessageSent` event by @driesvints in https://github.com/laravel/framework/pull/40963 |
| 31 | +* Add firstOr() function to BelongsToMany relation by @r-kujawa in https://github.com/laravel/framework/pull/40828 |
| 32 | +* Fix `isRelation()` failing to check an `Attribute` by @rodrigopedra in https://github.com/laravel/framework/pull/40967 |
| 33 | +* Fix default pivot attributes by @iamgergo in https://github.com/laravel/framework/pull/40947 |
| 34 | +* Fix enum casts arrayable behaviour by @diegotibi in https://github.com/laravel/framework/pull/40885 |
| 35 | +* Solve exception error: Undefined array key "", in artisan route:list command by @manuglopez in https://github.com/laravel/framework/pull/41031 |
| 36 | +* Fix Duplicate Route Namespace by @moisish in https://github.com/laravel/framework/pull/41021 |
| 37 | +* Fix the error message when no routes are detected by @LukeTowers in https://github.com/laravel/framework/pull/41017 |
| 38 | +* Fix mails with tags and metadata are not queuable by @joostdebruijn in https://github.com/laravel/framework/pull/41028 |
| 39 | + |
| 40 | + |
| 41 | +## [v9.0.2 (2022-02-10)](https://github.com/laravel/framework/compare/v9.0.1...v9.0.2) |
| 42 | + |
| 43 | +### Added |
| 44 | +* Add disabled directive by @belzaaron in https://github.com/laravel/framework/pull/40900 |
| 45 | + |
| 46 | +### Changed |
| 47 | +* Widen the type of `Collection::unique` `$key` parameter by @NiclasvanEyk in https://github.com/laravel/framework/pull/40903 |
| 48 | +* Makes `ExceptionHandler::renderForConsole` internal by @nunomaduro in https://github.com/laravel/framework/pull/40936 |
| 49 | +* Removal of Google Font integration from default exception templates by @bashgeek in https://github.com/laravel/framework/pull/40926 |
| 50 | +* Allow base JsonResource class to be collected by @jwohlfert23 in https://github.com/laravel/framework/pull/40896 |
| 51 | + |
| 52 | +### Fixed |
| 53 | +* Fix Support\Collection reject method type definition by @joecampo in https://github.com/laravel/framework/pull/40899 |
| 54 | +* Fix SpoofCheckValidation namespace change by @eduardor2k in https://github.com/laravel/framework/pull/40923 |
| 55 | +* Fix notification email recipient by @driesvints in https://github.com/laravel/framework/pull/40921 |
| 56 | +* Fix publishing visibility by @driesvints in https://github.com/laravel/framework/pull/40918 |
| 57 | +* Fix Mailable->priority() by @giggsey in https://github.com/laravel/framework/pull/40917 |
| 58 | + |
| 59 | + |
| 60 | +## [v9.0.1 (2022-02-09)](https://github.com/laravel/framework/compare/v9.0.0...v9.0.1) |
| 61 | + |
| 62 | +### Changed |
| 63 | +* Improves `Support\Collection` each method type definition by @zingimmick in https://github.com/laravel/framework/pull/40879 |
| 64 | + |
| 65 | +### Fixed |
| 66 | +* Update Mailable.php by @rentalhost in https://github.com/laravel/framework/pull/40868 |
| 67 | +* Switch to null coalescing operator in Conditionable by @inxilpro in https://github.com/laravel/framework/pull/40888 |
| 68 | +* Bring back old return behaviour by @ankurk91 in https://github.com/laravel/framework/pull/40880 |
4 | 69 |
|
5 | 70 |
|
6 | 71 | ## [v9.0.0 (2022-02-08)](https://github.com/laravel/framework/compare/8.x...v9.0.0)
|
|
0 commit comments