Releases: mikebronner/laravel-model-caching
Releases · mikebronner/laravel-model-caching
0.4.4
0.4.3: Merge pull request #211 from imunew/fix/never_forget_cooldown_seconds
Pre-release
Fixed
- cache cooldown flush when cool-down seconds option was used.
0.4.2
Fixed
laravel-pivot
package compatibility temporarily with Laravel 5.8 patch of my own until they provide compatibility.
0.4.1
Fixed
- version requirements in
composer.json
.
0.4.0: Update compatibility requirements
Added
- Laravel 5.8 compatibility.
Removed
- compatibility with previous versions of Laravel, as it was no longer sustainable with all the changes required.
0.3.7: Update laravel-pivot dependency to a non-dev version
Updated
- depency
laravel-pivot
to next major release version, from a dev-version.
Changed
- reference to
request()
helper toapp("request")
for Lumen compatibility. Thanks @PokeGuys
0.3.6
Added
- functionality to invalidate cache after running
increment()
anddecrement()
queries.
0.3.5
Added
- tracking of model table in cache key for those using dynamic table names in models.
Updated
- dependency of
laravel-pivot
package to use thenew
code branch which includes a fix for Laravel Telescope compatibility.
0.3.4: Fix new `InRaw` where type
Fixed
- relationship queries breaking on new where clause type
InRaw
.
0.3.3
Fixed
- typo in method
checkCooldownAndFlushAfterPersiting()
to
checkCooldownAndFlushAfterPersisting()
; thanks @jacobzlogar!