File tree 2 files changed +6
-1
lines changed
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
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
6
7
+ ## [ 0.10.3] - 2021-03-16
8
+ ### Changed
9
+ - The from part of the query ($query->from) instead of the table name of the model ($model->table)
10
+ is now used for determining the table part caching key fragment
11
+
7
12
## [ 0.10.2] - 2020-09-04
8
13
### Added
9
14
- functionality to inject custom builder class for handling conflicting packages.
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ protected function getLimitClause() : string
69
69
70
70
protected function getTableSlug () : string
71
71
{
72
- return (new Str )->slug ($ this ->model -> getTable () )
72
+ return (new Str )->slug ($ this ->query -> from )
73
73
. ": " ;
74
74
}
75
75
You can’t perform that action at this time.
0 commit comments