diff --git a/UPGRADING.md b/UPGRADING.md index 11ab3eb4405..50eb68bb5e3 100644 --- a/UPGRADING.md +++ b/UPGRADING.md @@ -141,6 +141,14 @@ The format of this change log follows the advice given at [Keep a CHANGELOG](htt For more information see [MDL-66873](https://tracker.moodle.org/browse/MDL-66873) +### core_completion + +#### Added + +- The method `count_modules_completed` now delegate the logic to count the completed modules to the DBMS improving the performance of the method. + + For more information see [MDL-83917](https://tracker.moodle.org/browse/MDL-83917) + ### core_course #### Deprecated @@ -210,6 +218,9 @@ The format of this change log follows the advice given at [Keep a CHANGELOG](htt - Deprecated method `mod_quiz\question\bank\qbank_helper::get_version_options` in favour of `core_question\local\bank\version_options::get_version_options` so that the method is in core rather than a module, and can safely be used from anywhere as required. For more information see [MDL-77713](https://tracker.moodle.org/browse/MDL-77713) +- Behat steps `behat_qbank_comment::i_should_see_on_the_column` and `behat_qbank_comment::i_click_on_the_row_containing` have been deprecated in favour of the new component named selectors, `qbank_comment > Comment count link` and `qbank_comment > Comment count text` which can be used with the standard `should exist` and `I click on` steps to replace the custom steps. + + For more information see [MDL-79122](https://tracker.moodle.org/browse/MDL-79122) ### core_reportbuilder @@ -376,6 +387,12 @@ The format of this change log follows the advice given at [Keep a CHANGELOG](htt ### theme_boost +#### Changed + +- From now on, themes can customise the activity icon colours using simple CSS variables. The new variables are $activity-icon-administration-bg, $activity-icon-assessment-bg, $activity-icon-collaboration-bg, $activity-icon-communication-bg, $activity-icon-content-bg, $activity-icon-interactivecontent-bg. All previous `$activity-icon-*-filter` elements can be removed, as they are no longer in use. + + For more information see [MDL-83725](https://tracker.moodle.org/browse/MDL-83725) + #### Removed - Remove chat and survey styles. Important note: the styles have been moved to the plugins as CSS files (and not SCSS) so themes might now need to override the mod_chat and mod_survey styles specifically as css does not have any definition for primary, gray and other colors accessible in the original scss version. diff --git a/completion/UPGRADING.md b/completion/UPGRADING.md index 88eb2918442..4203d785916 100644 --- a/completion/UPGRADING.md +++ b/completion/UPGRADING.md @@ -1,5 +1,13 @@ # core_completion (subsystem) Upgrade notes +## 5.0dev + +### Added + +- The method `count_modules_completed` now delegate the logic to count the completed modules to the DBMS improving the performance of the method. + + For more information see [MDL-83917](https://tracker.moodle.org/browse/MDL-83917) + ## 4.5 ### Added diff --git a/question/UPGRADING.md b/question/UPGRADING.md index 2ad6de938e0..1640dbefe50 100644 --- a/question/UPGRADING.md +++ b/question/UPGRADING.md @@ -20,6 +20,9 @@ - Deprecated method `mod_quiz\question\bank\qbank_helper::get_version_options` in favour of `core_question\local\bank\version_options::get_version_options` so that the method is in core rather than a module, and can safely be used from anywhere as required. For more information see [MDL-77713](https://tracker.moodle.org/browse/MDL-77713) +- Behat steps `behat_qbank_comment::i_should_see_on_the_column` and `behat_qbank_comment::i_click_on_the_row_containing` have been deprecated in favour of the new component named selectors, `qbank_comment > Comment count link` and `qbank_comment > Comment count text` which can be used with the standard `should exist` and `I click on` steps to replace the custom steps. + + For more information see [MDL-79122](https://tracker.moodle.org/browse/MDL-79122) ## 4.5 diff --git a/theme/boost/UPGRADING.md b/theme/boost/UPGRADING.md index 5a860c156b3..eaab8140953 100644 --- a/theme/boost/UPGRADING.md +++ b/theme/boost/UPGRADING.md @@ -2,6 +2,12 @@ ## 5.0dev +### Changed + +- From now on, themes can customise the activity icon colours using simple CSS variables. The new variables are $activity-icon-administration-bg, $activity-icon-assessment-bg, $activity-icon-collaboration-bg, $activity-icon-communication-bg, $activity-icon-content-bg, $activity-icon-interactivecontent-bg. All previous `$activity-icon-*-filter` elements can be removed, as they are no longer in use. + + For more information see [MDL-83725](https://tracker.moodle.org/browse/MDL-83725) + ### Removed - Remove chat and survey styles. Important note: the styles have been moved to the plugins as CSS files (and not SCSS) so themes might now need to override the mod_chat and mod_survey styles specifically as css does not have any definition for primary, gray and other colors accessible in the original scss version.