Skip to content

v1.0.1.7

Choose a tag to compare

@marcel-maqsood marcel-maqsood released this 17 Jul 09:45
· 15 commits to main since this release

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.