NOBUG: Add upgrade notes

This commit is contained in:
Huong Nguyen
2025-12-05 08:08:13 +07:00
parent 5a367148f4
commit b27f4f68f3
4 changed files with 40 additions and 0 deletions
+20
View File
@@ -18,6 +18,9 @@ The format of this change log follows the advice given at [Keep a CHANGELOG](htt
- The namespace for the `\core_shutdown_manager` has been moved to `\core\shutdown_manager`. The legacy namespace will continue to work for the moment.
For more information see [MDL-87046](https://tracker.moodle.org/browse/MDL-87046)
- Added clean_string() that prevents double escaping in Mustache templates
For more information see [MDL-87066](https://tracker.moodle.org/browse/MDL-87066)
- The `upgrade_ensure_not_running()` function has been deprecated and replaced
with:
@@ -99,6 +102,15 @@ The format of this change log follows the advice given at [Keep a CHANGELOG](htt
### core_course
#### Added
- The external function `core_course_get_course_contents` now includes the `candisplay` property for each returned module. If this is false, the module should not be displayed on the course page (for example, for question banks).
For more information see [MDL-85405](https://tracker.moodle.org/browse/MDL-85405)
- Two optional new strings, `modulename_summary` and `modulename_tip`, have been added to modules and will be displayed in the activity chooser interface when defined.
For more information see [MDL-87117](https://tracker.moodle.org/browse/MDL-87117)
#### Deprecated
- The following methods have been deprecated and should no longer be used: - `course_delete_module` - `course_module_flag_for_async_deletion` Please consider using the equivalent methods, delete and delete_async, in `core_courseformat\local\cmactions` instead.
@@ -187,6 +199,14 @@ The format of this change log follows the advice given at [Keep a CHANGELOG](htt
For more information see [MDL-86607](https://tracker.moodle.org/browse/MDL-86607)
### mod_glossary
#### Added
- Function mod_glossary_rating_can_see_item_ratings is now implemented for checking permissions to view ratings.
For more information see [MDL-86960](https://tracker.moodle.org/browse/MDL-86960)
### qbank_columnsortorder
#### Removed
+9
View File
@@ -2,6 +2,15 @@
## 5.2dev
### Added
- The external function `core_course_get_course_contents` now includes the `candisplay` property for each returned module. If this is false, the module should not be displayed on the course page (for example, for question banks).
For more information see [MDL-85405](https://tracker.moodle.org/browse/MDL-85405)
- Two optional new strings, `modulename_summary` and `modulename_tip`, have been added to modules and will be displayed in the activity chooser interface when defined.
For more information see [MDL-87117](https://tracker.moodle.org/browse/MDL-87117)
### Deprecated
- The following methods have been deprecated and should no longer be used: - `course_delete_module` - `course_module_flag_for_async_deletion` Please consider using the equivalent methods, delete and delete_async, in `core_courseformat\local\cmactions` instead.
+3
View File
@@ -10,6 +10,9 @@
- The namespace for the `\core_shutdown_manager` has been moved to `\core\shutdown_manager`. The legacy namespace will continue to work for the moment.
For more information see [MDL-87046](https://tracker.moodle.org/browse/MDL-87046)
- Added clean_string() that prevents double escaping in Mustache templates
For more information see [MDL-87066](https://tracker.moodle.org/browse/MDL-87066)
- The `upgrade_ensure_not_running()` function has been deprecated and replaced
with:
+8
View File
@@ -1,5 +1,13 @@
# mod_glossary Upgrade notes
## 5.2dev
### Added
- Function mod_glossary_rating_can_see_item_ratings is now implemented for checking permissions to view ratings.
For more information see [MDL-86960](https://tracker.moodle.org/browse/MDL-86960)
## 5.1
### Added