Releases: mikebronner/laravel-model-caching
Releases · mikebronner/laravel-model-caching
0.3.2: Add handling of `whereJsonContains` and `orWhereJsonContains`
Added
- handling of
whereJsonContains()
andorWhereJsonContains()
.
Fixed
- price field value generation in BookFactory to not exceed database field limits.
0.3.1
Changed
- use of
cache()
helper method toapp("cache")
to allow for better Lumen compatibility. Thanks @nope7777!
Updated
- test script for Laravel 5.7 to use non-dev version of test dependency.
Removed
codedungeon/phpunit-result-printer
unit test output printer.
Fixed
- use of custom pagination name.
- edge-case where tag creation failed.
- usage of
forceDelete()
in the Builder.
0.3.0
Added
- Laravel 5.7 compatibility.
0.2.64
0.2.63
Fixed
- where clause binding resolution issue.
0.2.62
Fixed
- function name typo.
Removed
dump()
used for debugging.
0.2.61: Fix advanced pagination querystring
Fixed
- caching of paginated queries with page identifiers as arrays (
?page[size]=1
).
0.2.60
Added
- unit tests for multiple versions of Laravel simultaneously.
- backwards-compatibility to Laravel 5.4.
0.2.59
Fixed
- caching of queries with
whereNotIn
clauses.
Updated
- readme to specify that lazy-loaded relationships are currently not cached.
0.2.58: Fix caching of whereIn clauses
Fixed
- caching of queries with
whereIn
clauses.