Releases: mikebronner/laravel-model-caching
Releases · mikebronner/laravel-model-caching
0.4.14
Fixed
- where
first()
didn't pass an array parameter.
0.4.13
Added
- helper function to run closure with model-caching disabled. Thanks for the suggestion, @mycarrysun
0.4.12
Updated
- string and array helpers to use the
Str
andArr
classes directly, in preparation for helper deprecations in Laravel 5.9. Thanks @mycarrysun
Fixed
- disabling of model caching on relationship queries if model caching was disabled on the model. Thanks @mycarrysun
- error that occurred if
whereIn
was given an empty array. Thanks @Ben52
0.4.11
Changed
useCacheCooldown
tocacheCooldownSeconds
in models.
0.4.10
Updated
- cache cool down functionality to not trigger if it is not set on the model. This should hopefully improve performance. Thanks @mycarrysun for implementing the PR, and thanks @yemenifree for alerting me to the issue!
0.4.9
Changed
laravel-pivot
dependency back to that of the original owner, as Laravel 5.8 compatibility has been restored.
0.4.8
Changed
- to rely on temporarily published
mikebronner/laravel-pivot
package on packagist.
0.4.7
Fixed
- installation of patched
laravel-pivot
dependency.
0.4.6: Update composer to allow for patch versions of Laravel 5.8
Fixed
- dependency constraints from
5.8
to5.8.*
.
0.4.5
Fixed
- using
find()
to get multiple items via an array. Thanks @cluebattery !