From 3cf30be0f185e1b197c4f481b7643ec11f170efe Mon Sep 17 00:00:00 2001 From: Huong Nguyen Date: Fri, 5 Dec 2025 08:08:56 +0700 Subject: [PATCH] NOBUG: Add upgrade notes --- UPGRADING.md | 22 ++++++++++++++++++++++ course/UPGRADING.md | 8 ++++++++ lib/UPGRADING.md | 6 ++++++ mod/glossary/UPGRADING.md | 10 ++++++++++ 4 files changed, 46 insertions(+) create mode 100644 mod/glossary/UPGRADING.md diff --git a/UPGRADING.md b/UPGRADING.md index c027f9660f6..28e10101515 100644 --- a/UPGRADING.md +++ b/UPGRADING.md @@ -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 diff --git a/course/UPGRADING.md b/course/UPGRADING.md index 274d3f65752..70456a4a65d 100644 --- a/course/UPGRADING.md +++ b/course/UPGRADING.md @@ -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 diff --git a/lib/UPGRADING.md b/lib/UPGRADING.md index 56fe560f2e1..6602e5e8138 100644 --- a/lib/UPGRADING.md +++ b/lib/UPGRADING.md @@ -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. diff --git a/mod/glossary/UPGRADING.md b/mod/glossary/UPGRADING.md new file mode 100644 index 00000000000..b0c633e9cfe --- /dev/null +++ b/mod/glossary/UPGRADING.md @@ -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) +