NOBUG: Add upgrade notes

This commit is contained in:
Huong Nguyen
2025-12-05 08:08:56 +07:00
parent 0c04f1921f
commit 3cf30be0f1
4 changed files with 46 additions and 0 deletions
+22
View File
@@ -10,6 +10,12 @@ The format of this change log follows the advice given at [Keep a CHANGELOG](htt
### core
#### Added
- Added clean_string() that prevents double escaping in Mustache templates
For more information see [MDL-87066](https://tracker.moodle.org/browse/MDL-87066)
#### Changed
- The Hook Manager now uses localcache instead of caching via MUC.
@@ -37,6 +43,14 @@ The format of this change log follows the advice given at [Keep a CHANGELOG](htt
For more information see [MDL-86332](https://tracker.moodle.org/browse/MDL-86332)
### 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)
### core_group
#### Added
@@ -45,6 +59,14 @@ The format of this change log follows the advice given at [Keep a CHANGELOG](htt
For more information see [MDL-81514](https://tracker.moodle.org/browse/MDL-81514)
### 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)
## 5.0.3
### core
+8
View File
@@ -1,5 +1,13 @@
# core_course (subsystem) Upgrade notes
## 5.0.3+
### 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)
## 5.0
### Added
+6
View File
@@ -2,6 +2,12 @@
## 5.0.3+
### Added
- Added clean_string() that prevents double escaping in Mustache templates
For more information see [MDL-87066](https://tracker.moodle.org/browse/MDL-87066)
### Changed
- The Hook Manager now uses localcache instead of caching via MUC.
+10
View File
@@ -0,0 +1,10 @@
# mod_glossary Upgrade notes
## 5.0.3+
### 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)