NOBUG: Add upgrade notes

This commit is contained in:
Huong Nguyen
2025-10-24 11:00:15 +07:00
parent 5be6382221
commit 89cd360c83
3 changed files with 24 additions and 1 deletions
+12
View File
@@ -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
-1
View File
@@ -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)
+12
View File
@@ -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