Version 1.5.0
·
211 commits
to master
since this release
CompoundIndex
has been updated to allow "row transformations" which are more arbitrary than the standardCompound
transformation, but ultimately, combine multiple columns into a single output string.- If you elect to use a custom row transformation and it returns a string, it will omit the typical
Compound
transform. To continue usingCompound
after-the-fact, return an array instead.
- If you elect to use a custom row transformation and it returns a string, it will omit the typical
- New interface:
RowTransformationInterface
which extends the standardTransformationInterface
- New Transformations added:
AlphaCharactersOnly
FirstCharacter
- To improve efficiency,
EncryptedRow
now allows you to just callgetBlindIndex($name)
to calculate the values for a single desired index. - The documentation has been improved to address repeat sources of end user confusion about the features and limitations of this library.