NOBUG: Add upgrade notes

This commit is contained in:
Huong Nguyen
2026-02-27 09:38:36 +07:00
parent 82296e9420
commit c688be33a3
2 changed files with 18 additions and 0 deletions
+10
View File
@@ -6,6 +6,16 @@ More detailed information on key changes can be found in the [Developer update n
The format of this change log follows the advice given at [Keep a CHANGELOG](https://keepachangelog.com).
## 5.1.3+
### core_question
#### Added
- During restore of a question_set_reference, mapping of IDs in the filtercondition is now delegated to qbank plugins. If your qbank plugin defines a filter condition that uses database IDs, add an override of `restore_filtercondition()` to the `condition` class, which checks the condition's data and replaces the IDs with mapped values if required. See `qbank_managecategories\category_condition` for an example.
For more information see [MDL-86524](https://tracker.moodle.org/browse/MDL-86524)
## 5.1.2
### core
+8
View File
@@ -1,5 +1,13 @@
# core_question (subsystem) Upgrade notes
## 5.1.3+
### Added
- During restore of a question_set_reference, mapping of IDs in the filtercondition is now delegated to qbank plugins. If your qbank plugin defines a filter condition that uses database IDs, add an override of `restore_filtercondition()` to the `condition` class, which checks the condition's data and replaces the IDs with mapped values if required. See `qbank_managecategories\category_condition` for an example.
For more information see [MDL-86524](https://tracker.moodle.org/browse/MDL-86524)
## 5.1.2
### Fixed