diff --git a/UPGRADING.md b/UPGRADING.md index d3a5f2e4afe..3f4e2e7a9c9 100644 --- a/UPGRADING.md +++ b/UPGRADING.md @@ -8,6 +8,18 @@ The format of this change log follows the advice given at [Keep a CHANGELOG](htt ## 5.0.3+ +### core + +#### Fixed + +- `restore_qtype_plugin::unset_excluded_fields` now returns the modified questiondata structure, + in order to support structures that contain arrays. + If your qtype plugin overrides `restore_qtype_plugin::remove_excluded_question_data` without + calling the parent method, you may need to modify your overridden method to use the returned + value. + + For more information see [MDL-85975](https://tracker.moodle.org/browse/MDL-85975) + ### core_group #### Added diff --git a/group/UPGRADING.md b/group/UPGRADING.md index e74ae63bd0e..1a46c040453 100644 --- a/group/UPGRADING.md +++ b/group/UPGRADING.md @@ -7,4 +7,3 @@ - `groups_print_activity_menu()` and `groups_get_activity_group()` now include an additional `$participationonly` parameter, which is true by default. This can be set false when we want the user to be able to select a non-participation group within an activity, for example if a teacher wants to filter assignment submissions by non-participation groups. It should never be used when the menu is displayed to students, as this may allow them to participate using non-participation groups. Non-participation groups are labeled as such. For more information see [MDL-81514](https://tracker.moodle.org/browse/MDL-81514) - diff --git a/lib/UPGRADING.md b/lib/UPGRADING.md index 3e5957065d1..cdc44e8f2c0 100644 --- a/lib/UPGRADING.md +++ b/lib/UPGRADING.md @@ -1,5 +1,17 @@ # core (subsystem) Upgrade notes +## 5.0.3+ + +### Fixed + +- `restore_qtype_plugin::unset_excluded_fields` now returns the modified questiondata structure, + in order to support structures that contain arrays. + If your qtype plugin overrides `restore_qtype_plugin::remove_excluded_question_data` without + calling the parent method, you may need to modify your overridden method to use the returned + value. + + For more information see [MDL-85975](https://tracker.moodle.org/browse/MDL-85975) + ## 5.0.3 ### Added