Skip to content

Releases: mikebronner/laravel-model-caching

0.4.4

01 Mar 01:34
Compare
Choose a tag to compare
0.4.4 Pre-release
Pre-release

Added

  • functionality for caching of model relationships across different connections and databases. Thanks @PokeGuys for starting the conversation around this problem.

0.4.3: Merge pull request #211 from imunew/fix/never_forget_cooldown_seconds

28 Feb 23:55
29a90d3
Compare
Choose a tag to compare

Fixed

  • cache cooldown flush when cool-down seconds option was used.

0.4.2

28 Feb 21:14
Compare
Choose a tag to compare
0.4.2 Pre-release
Pre-release

Fixed

  • laravel-pivot package compatibility temporarily with Laravel 5.8 patch of my own until they provide compatibility.

0.4.1

28 Feb 20:57
Compare
Choose a tag to compare
0.4.1 Pre-release
Pre-release

Fixed

  • version requirements in composer.json.

0.4.0: Update compatibility requirements

28 Feb 20:55
Compare
Choose a tag to compare

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

06 Feb 23:33
Compare
Choose a tag to compare

Updated

  • depency laravel-pivot to next major release version, from a dev-version.

Changed

  • reference to request() helper to app("request") for Lumen compatibility. Thanks @PokeGuys

0.3.6

08 Dec 22:48
Compare
Choose a tag to compare
0.3.6 Pre-release
Pre-release

Added

  • functionality to invalidate cache after running increment() and decrement() queries.

0.3.5

30 Nov 15:10
Compare
Choose a tag to compare
0.3.5 Pre-release
Pre-release

Added

  • tracking of model table in cache key for those using dynamic table names in models.

Updated

  • dependency of laravel-pivot package to use the new code branch which includes a fix for Laravel Telescope compatibility.

0.3.4: Fix new `InRaw` where type

28 Nov 18:06
Compare
Choose a tag to compare
Pre-release

Fixed

  • relationship queries breaking on new where clause type InRaw.

0.3.3

10 Nov 22:13
Compare
Choose a tag to compare
0.3.3 Pre-release
Pre-release

Fixed

  • typo in method checkCooldownAndFlushAfterPersiting() to
    checkCooldownAndFlushAfterPersisting(); thanks @jacobzlogar!