Laravel 6.5.2 Released
Published on by Paul Redmond
The Laravel team released v6.5.2 this week—this version is a patch version release, containing mostly changes and fixes.
Here’s a few things of note:
- If you’re using PostGIS types in Postgres, Laravel now supports a separation between geometry and geography types.
- The
BelongsToMany::cursor()
method, now hydrates pivot relations. - Model serialization on jobs allows typed properties.
You can see the full list of new features and updates below and the whole diff between 6.5.1 and 6.5.2 on GitHub. The full release notes for Laravel 6.0 are available in the GitHub v6 changelog:
v6.5.2
Added
- Allowed model serialization on jobs for typed properties (#30604, #30605, 920c364)
- Allowed fallback when facade root accessor has previously been resolved (#30616)
- Added support for separation between
geometry
andgeography
types forPostgres
(#30545) - Added
createWithContent()
method toIlluminate\Http\Testing\File
andIlluminate\Http\Testing\FileFactory
(2cc6fa3, 181db51)
Refactoring
- Improved
PostgresGrammar::formatPostGisType()
method readability (#30593)