NOBUG: Add upgrade notes

This commit is contained in:
Huong Nguyen
2025-01-31 09:20:03 +07:00
parent 2043ca4638
commit fa201a1029
6 changed files with 54 additions and 2 deletions
+27
View File
@@ -247,8 +247,26 @@ The format of this change log follows the advice given at [Keep a CHANGELOG](htt
For more information see [MDL-83641](https://tracker.moodle.org/browse/MDL-83641)
### core_grades
#### Removed
- Final deprecation of
grade_structure::get_element_type_string(),
grade_structure::get_element_header(),
grade_structure::get_element_icon(),
grade_structure::get_activity_link()
For more information see [MDL-79907](https://tracker.moodle.org/browse/MDL-79907)
### core_question
#### Added
- The `get_bulk_actions()` method on the base `plugin_features_base` class has been changed to allow a qbank view object to be passed through. This is nullable and therefore optional for qbank plugins which don't need to do so.
For more information see [MDL-79281](https://tracker.moodle.org/browse/MDL-79281)
#### Changed
- The definition of the abstract `core_question\local\bank\condition` class has changed to make it clearer which methods are required in child classes.
@@ -467,6 +485,15 @@ The format of this change log follows the advice given at [Keep a CHANGELOG](htt
For more information see [MDL-83035](https://tracker.moodle.org/browse/MDL-83035)
### tool_behat
#### Added
- New Behat step `\behat_general::the_url_should_match()` has been added to allow checking the current URL. You can use it to check whether a user has been redirected to the expected location.
e.g. `And the url should match "/mod/forum/view\.php\?id=[0-9]+"`
For more information see [MDL-83617](https://tracker.moodle.org/browse/MDL-83617)
### tool_brickfield
#### Deprecated
-1
View File
@@ -7,4 +7,3 @@
- behat_admin_presets::following_in_the_should_download_between_and_bytes is deprecated. Use: the following element should download a file that:
For more information see [MDL-83035](https://tracker.moodle.org/browse/MDL-83035)
+9
View File
@@ -1,5 +1,14 @@
# tool_behat Upgrade notes
## 5.0dev
### Added
- New Behat step `\behat_general::the_url_should_match()` has been added to allow checking the current URL. You can use it to check whether a user has been redirected to the expected location.
e.g. `And the url should match "/mod/forum/view\.php\?id=[0-9]+"`
For more information see [MDL-83617](https://tracker.moodle.org/browse/MDL-83617)
## 4.5
### Added
-1
View File
@@ -7,4 +7,3 @@
- The ai_provider_management_table has been refactored to inherit from flexible_table instead of plugin_management_table. As a result the methods get_plugintype and get_action_url are now unused and have been deprecated in the class.
For more information see [MDL-82922](https://tracker.moodle.org/browse/MDL-82922)
+12
View File
@@ -1,5 +1,17 @@
# core_grades (subsystem) Upgrade notes
## 5.0dev
### Removed
- Final deprecation of
grade_structure::get_element_type_string(),
grade_structure::get_element_header(),
grade_structure::get_element_icon(),
grade_structure::get_activity_link()
For more information see [MDL-79907](https://tracker.moodle.org/browse/MDL-79907)
## 4.5
### Changed
+6
View File
@@ -2,6 +2,12 @@
## 5.0dev
### Added
- The `get_bulk_actions()` method on the base `plugin_features_base` class has been changed to allow a qbank view object to be passed through. This is nullable and therefore optional for qbank plugins which don't need to do so.
For more information see [MDL-79281](https://tracker.moodle.org/browse/MDL-79281)
### Changed
- The definition of the abstract `core_question\local\bank\condition` class has changed to make it clearer which methods are required in child classes.