Skip to content

Releases: mikebronner/laravel-model-caching

0.4.14

22 Apr 00:06
Compare
Choose a tag to compare
0.4.14 Pre-release
Pre-release

Fixed

  • where first() didn't pass an array parameter.

0.4.13

04 Apr 18:24
Compare
Choose a tag to compare
0.4.13 Pre-release
Pre-release

Added

  • helper function to run closure with model-caching disabled. Thanks for the suggestion, @mycarrysun

0.4.12

03 Apr 17:58
Compare
Choose a tag to compare
0.4.12 Pre-release
Pre-release

Updated

  • string and array helpers to use the Str and Arr 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

25 Mar 21:30
Compare
Choose a tag to compare
0.4.11 Pre-release
Pre-release

Changed

  • useCacheCooldown to cacheCooldownSeconds in models.

0.4.10

25 Mar 01:23
Compare
Choose a tag to compare
0.4.10 Pre-release
Pre-release

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

06 Mar 18:12
Compare
Choose a tag to compare
0.4.9 Pre-release
Pre-release

Changed

  • laravel-pivot dependency back to that of the original owner, as Laravel 5.8 compatibility has been restored.

0.4.8

04 Mar 19:24
Compare
Choose a tag to compare
0.4.8 Pre-release
Pre-release

Changed

  • to rely on temporarily published mikebronner/laravel-pivot package on packagist.

0.4.7

01 Mar 15:05
Compare
Choose a tag to compare
0.4.7 Pre-release
Pre-release

Fixed

  • installation of patched laravel-pivot dependency.

0.4.6: Update composer to allow for patch versions of Laravel 5.8

01 Mar 01:59
Compare
Choose a tag to compare

Fixed

  • dependency constraints from 5.8 to 5.8.*.

0.4.5

01 Mar 01:52
Compare
Choose a tag to compare
0.4.5 Pre-release
Pre-release

Fixed

  • using find() to get multiple items via an array. Thanks @cluebattery !