DOCS Add changes to 4.3.0 changelog

This commit is contained in:
Daniel Hensby 2018-07-16 11:43:27 +01:00
parent 3292a8b773
commit 89a2ce5d8f
No known key found for this signature in database
GPG Key ID: D8DEBC4C8E7BC8B9

View File

@ -0,0 +1,13 @@
# 4.2.0
## Overview {#overview}
- `DataList::column()` now returns all values and not just "distinct" values from a column as per the API docs
- `DataList`, `ArrayList` and `UnsavedRalationList` all have `columnUnique()` method for fetching distinct column values
## Upgrading {#upgrading}
### Fetching distinct column values on DataList
Prior to this release `DataList` would erroneously return a distinct list of values from a column on an object.
If this behaviour is still required, please use `columnUnique()` instead.