Skip to content

Releases: mikebronner/laravel-model-caching

0.3.2: Add handling of `whereJsonContains` and `orWhereJsonContains`

03 Nov 18:12
Compare
Choose a tag to compare

Added

  • handling of whereJsonContains() and orWhereJsonContains().

Fixed

  • price field value generation in BookFactory to not exceed database field limits.

0.3.1

07 Oct 20:15
Compare
Choose a tag to compare
0.3.1 Pre-release
Pre-release

Changed

  • use of cache() helper method to app("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

10 Sep 23:40
Compare
Choose a tag to compare
0.3.0 Pre-release
Pre-release

Added

  • Laravel 5.7 compatibility.

0.2.64

26 Jul 02:47
Compare
Choose a tag to compare
0.2.64 Pre-release
Pre-release

Fixed

  • caching of subqueries of ->whereNotIn() and ->whereIn(). #149
  • nested where bindings. Thanks @ikerasLT #147

0.2.63

09 Jun 17:56
Compare
Choose a tag to compare
0.2.63 Pre-release
Pre-release

Fixed

  • where clause binding resolution issue.

0.2.62

01 Jun 13:21
Compare
Choose a tag to compare
0.2.62 Pre-release
Pre-release

Fixed

  • function name typo.

Removed

  • dump() used for debugging.

0.2.61: Fix advanced pagination querystring

01 Jun 02:08
Compare
Choose a tag to compare

Fixed

  • caching of paginated queries with page identifiers as arrays (?page[size]=1).

0.2.60

28 May 03:39
Compare
Choose a tag to compare
0.2.60 Pre-release
Pre-release

Added

  • unit tests for multiple versions of Laravel simultaneously.
  • backwards-compatibility to Laravel 5.4.

0.2.59

27 May 23:15
Compare
Choose a tag to compare
0.2.59 Pre-release
Pre-release

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

25 May 03:52
Compare
Choose a tag to compare
Pre-release

Fixed

  • caching of queries with whereIn clauses.