mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
14 lines
531 B
Markdown
14 lines
531 B
Markdown
|
# 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.
|