You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+82Lines changed: 82 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,88 @@ All notable changes to this project will be documented in this file.
3
3
4
4
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
5
5
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
6
+
7
+
## [0.4.12] - 3 Apr 2019
8
+
### Updated
9
+
- string and array helpers to use the `Str` and `Arr` classes directly, in preparation for helper deprecations in Laravel 5.9. Thanks @mycarrysun
10
+
11
+
### Fixed
12
+
- disabling of model caching on relationship queries if model caching was disabled on the model. Thanks @mycarrysun
13
+
- error that occurred if `whereIn` was given an empty array. Thanks @Ben52
14
+
15
+
## [0.4.11] - 25 Mar 2019
16
+
### Changed
17
+
-`useCacheCooldown` to `cacheCooldownSeconds` in models.
18
+
19
+
## [0.4.10] - 24 Mar 2019
20
+
### Updated
21
+
- 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!
22
+
23
+
## [0.4.9] - 6 Mar 2019
24
+
### Changed
25
+
-`laravel-pivot` dependency back to that of the original owner, as Laravel 5.8 compatibility has been restored.
26
+
27
+
## [0.4.8] - 4 Mar 2019
28
+
### Changed
29
+
- to rely on temporarily published `mikebronner/laravel-pivot` package on packagist.
30
+
31
+
## [0.4.7] - 1 Mar 2019
32
+
### Fixed
33
+
- installation of patched laravel-pivot dependency.
34
+
35
+
## [0.4.6] - 28 Feb 2019
36
+
### Fixed
37
+
- dependency constraints from 5.8 to 5.8.*.
38
+
39
+
## [0.4.5] - 28 Feb 2019
40
+
### Fixed
41
+
- using `find()` to get multiple items via an array. Thanks @cluebattery !
42
+
43
+
## [0.4.4] - 28 Feb 2019
44
+
### Added
45
+
- functionality for caching of model relationships across different connections and databases. Thanks @PokeGuys for starting the conversation around this problem.
46
+
47
+
## [0.4.3] - 28 Feb 2019
48
+
### Fixed
49
+
- cache cooldown flush when cool-down seconds option was used.
50
+
51
+
## [0.4.2] - 28 Feb 2019
52
+
### Fixed
53
+
-`laravel-pivot` package compatibility temporarily with Laravel 5.8 patch of my own until they provide compatibility.
54
+
55
+
## [0.4.1] - 28 Feb 2019
56
+
### Fixed
57
+
- version requirements in composer.json.
58
+
59
+
## [0.4.0] - 28 Feb 2019
60
+
### Added
61
+
- Laravel 5.8 compatibility.
62
+
63
+
### Removed
64
+
- compatibility with previous versions of Laravel, as it was no longer sustainable with all the changes required.
65
+
66
+
## [0.3.7] - 6 Feb 2019
67
+
### Updated
68
+
- depency laravel-pivot to next major release version, from a dev-version.
69
+
70
+
### Changed
71
+
- reference to `request()` helper to `app("request")` for Lumen compatibility. Thanks @PokeGuys
72
+
73
+
## [0.3.6] - 8 Dec 2018
74
+
### Added
75
+
- functionality to invalidate cache after running `increment()` and `decrement()` queries.
76
+
77
+
## [0.3.5] - 30 Nov 2018
78
+
### Added
79
+
- tracking of model table in cache key for those using dynamic table names in models.
80
+
81
+
### Updated
82
+
- dependency of `laravel-pivot` package to use the new code branch which includes a fix for Laravel Telescope compatibility.
83
+
84
+
## [0.3.5] - 28 Nov 2018
85
+
### Fixed
86
+
- relationship queries breaking on new where clause type `InRaw`.
87
+
6
88
## [0.3.3] - 10 Nov 2018
7
89
### Fixed
8
90
- typo in method `checkCooldownAndFlushAfterPersiting()` to
0 commit comments