v1.0.1.7
Changed:
- The layout for condition array has changed, privor to v1.0.1.7, it was defined like this:
'conditions' => [
'fieldName' => [
'operator' => 'LIKE',
'wildcard' => 'both',
],
]
Since v1.0.1.7, it is defined like this:
'conditions' => [
[
'field' => 'tableCol',
'operator' => 'LIKE',
'wildcard' => 'both',
],
]
Systems that run any version below v1.0.1.7 cannot use this update immediately, they have to reconstruct their condition arrays in order to work properly.