diff --git a/docs/en/04_Changelogs/4.0.0.md b/docs/en/04_Changelogs/4.0.0.md index 0de71377d..22108c5b9 100644 --- a/docs/en/04_Changelogs/4.0.0.md +++ b/docs/en/04_Changelogs/4.0.0.md @@ -1246,20 +1246,6 @@ If upgrading from an existing installation, make sure to invoke `?flush=all` at See our ["File Security" guide](/developer_guides/files/file_security) for more information. -### `ListboxField` is now multiple-only - -Previously, this field would operate as either a single select (default) or multi-select by setting -`setMultiple` to either true or false. - -Now this field should only be used for multi-selection. Single-selection should be done using -a regular `DropdownField`. - -### `GroupedDropdownField::setDisabled` now only accepts a list of values. - -Where previously you could specify a list of grouped values in the same way as `setSource`, this -method now only accepts either a non-associative array of values (not titles) or an `SS_List` -of items to disable. - ### TinyMCE v4 Please see the [tinymce upgrading guide](http://archive.tinymce.com/wiki.php/Tutorial:Migration_guide_from_3.x) @@ -2193,6 +2179,13 @@ appropriate mime types. The following file manipulations classes and methods hav submission, in contrast to `FormField::setValue($value, $data)` which is intended to load its value from the ORM. The second argument to `setValue()` has been added. * `FormField::create_tag()` moved to `SilverStripe\View\HTML->createTag()`. +* Changed `ListboxField` to multiple only. Previously, this field would operate as either a + single select (default) or multi-select through `setMultiple()`. + Now this field should only be used for multi-selection. Single-selection should be done using + a regular `DropdownField`. +* `GroupedDropdownField::setDisabled()` now only accepts a list of values + instead of a list of grouped values. The method now expectes + a non-associative array of values (not titles) or an `SS_List`. The following methods and properties on `Requirements_Backend` have been renamed: