mirror of
https://github.com/moodle/moodle.git
synced 2025-08-10 03:16:42 +02:00
NOBUG: Add upgrade notes
This commit is contained in:
parent
166408a13a
commit
3a6640c461
47 changed files with 834 additions and 738 deletions
|
@ -1,6 +1,6 @@
|
|||
# mod (plugin type) Upgrade notes
|
||||
|
||||
## 4.5rc1
|
||||
## 4.5rc2
|
||||
|
||||
### Added
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# mod_assign Upgrade notes
|
||||
|
||||
## 4.5rc1
|
||||
## 4.5rc2
|
||||
|
||||
### Added
|
||||
|
||||
|
@ -12,13 +12,13 @@
|
|||
- The value of this setting dictates which of the existing scales is the default option when creating new instances of the assignment.
|
||||
|
||||
For more information see [MDL-54105](https://tracker.moodle.org/browse/MDL-54105)
|
||||
- A new web service called `mod_assign_remove_submission` has been created to remove the submission for a specific user ID and assignment activity ID
|
||||
- A new web service called `mod_assign_remove_submission` has been created to remove the submission for a specific user ID and assignment activity ID.
|
||||
|
||||
For more information see [MDL-74050](https://tracker.moodle.org/browse/MDL-74050)
|
||||
- A new default value for `attemptreopenmethod` has been set to "Automatically until pass".
|
||||
|
||||
For more information see [MDL-80741](https://tracker.moodle.org/browse/MDL-80741)
|
||||
- A new method named `get_grading_batch_operation_details` has been added to the `assign_feedback_plugin` abstract class. Assignment feedback plugins can now override this method to define bulk action buttons that will appear in the sticky footer on the assignment grading page.
|
||||
- A new method, `\assign_feedback_plugin::get_grading_batch_operation_details()`, has been added to the `assign_feedback_plugin` abstract class. Assignment feedback plugins can now override this method to define bulk action buttons that will appear in the sticky footer on the assignment grading page.
|
||||
|
||||
For more information see [MDL-80750](https://tracker.moodle.org/browse/MDL-80750)
|
||||
|
||||
|
@ -27,30 +27,24 @@
|
|||
- The constant `ASSIGN_ATTEMPT_REOPEN_METHOD_NONE` has been deprecated, and a new default value for `attemptreopenmethod` has been set to "Automatically until pass".
|
||||
|
||||
For more information see [MDL-80741](https://tracker.moodle.org/browse/MDL-80741)
|
||||
- The `assign_feedback_plugin::get_grading_batch_operations` method is now deprecated. Use `assign_feedback_plugin::get_grading_batch_operation_details` instead.
|
||||
- The `\assign_feedback_plugin::get_grading_batch_operations()` method is now deprecated. Use `assign_feedback_plugin::get_grading_batch_operation_details` instead.
|
||||
|
||||
For more information see [MDL-80750](https://tracker.moodle.org/browse/MDL-80750)
|
||||
- The `assign_grading_table::plugingradingbatchoperations` property is removed. You can use `assign_feedback_plugin::get_grading_batch_operation_details` instead.
|
||||
- The `\assign_grading_table::plugingradingbatchoperations` property has been removed. You can use `\assign_feedback_plugin::get_grading_batch_operation_details()` instead.
|
||||
|
||||
For more information see [MDL-80750](https://tracker.moodle.org/browse/MDL-80750)
|
||||
- The `$submissionpluginenabled` and `$submissioncount` parameters from the constructor of the `mod_assign\output::grading_actionmenu` class have been deprecated.
|
||||
- The `$submissionpluginenabled` and `$submissioncount` parameters from the constructor of the `\mod_assign\output::grading_actionmenu` class have been deprecated.
|
||||
|
||||
For more information see [MDL-80752](https://tracker.moodle.org/browse/MDL-80752)
|
||||
- Method `assign_grading_table::col_picture` has been deprecated.
|
||||
|
||||
For more information see [MDL-82292](https://tracker.moodle.org/browse/MDL-82292)
|
||||
- Method `assign_grading_table::col_userid` has been deprecated.
|
||||
|
||||
For more information see [MDL-82295](https://tracker.moodle.org/browse/MDL-82295)
|
||||
- The method process_save_grading_options() has been deprecated as it is no longer used.
|
||||
- The method `\assign::process_save_grading_options()` has been deprecated as it is no longer used.
|
||||
|
||||
For more information see [MDL-82681](https://tracker.moodle.org/browse/MDL-82681)
|
||||
- The `mod_assign_grading_options_form` class has been deprecated since it is no longer used.
|
||||
|
||||
For more information see [MDL-82857](https://tracker.moodle.org/browse/MDL-82857)
|
||||
|
||||
### Removed
|
||||
|
||||
- The default option "Never" for `attemptreopenmethod` setting, which disallowed multiple attempts at the assignment, has been removed. This option was unnecessary because limiting attempts to 1 through the `maxattempts` setting achieves the same behavior.
|
||||
- The default option "Never" for the `attemptreopenmethod` setting, which disallowed multiple attempts at the assignment, has been removed. This option was unnecessary because limiting attempts to 1 through the `maxattempts` setting achieves the same behavior.
|
||||
|
||||
For more information see [MDL-80741](https://tracker.moodle.org/browse/MDL-80741)
|
||||
- The `\mod_assign_grading_options_form` class has been removed since it is no longer used.
|
||||
|
||||
For more information see [MDL-82857](https://tracker.moodle.org/browse/MDL-82857)
|
||||
|
|
|
@ -1,18 +1,18 @@
|
|||
# mod_bigbluebuttonbn Upgrade notes
|
||||
|
||||
## 4.5rc1
|
||||
## 4.5rc2
|
||||
|
||||
### Added
|
||||
|
||||
- Added new `meeting_info` value to show presentation file on BBB activity page
|
||||
|
||||
For more information see [MDL-82520](https://tracker.moodle.org/browse/MDL-82520)
|
||||
- The process_meeting_events in the broker class has been extended to process all the process_action functions implemented by the plugins.
|
||||
- The `broker::process_meeting_events()` method has been extended to call the `::process_action()` method implemented by plugins.
|
||||
|
||||
For more information see [MDL-82872](https://tracker.moodle.org/browse/MDL-82872)
|
||||
|
||||
### Removed
|
||||
|
||||
- Mobile support via plugin has been removed.
|
||||
- Mobile support via plugin has been removed as it is now natively available in the Moodle App.
|
||||
|
||||
For more information see [MDL-82447](https://tracker.moodle.org/browse/MDL-82447)
|
||||
|
|
|
@ -1,15 +1,15 @@
|
|||
# mod_data Upgrade notes
|
||||
|
||||
## 4.5rc1
|
||||
## 4.5rc2
|
||||
|
||||
### Added
|
||||
|
||||
- The `data_add_record` method accepts a new `$approved` parameter to set the corresponding state of the new record
|
||||
- The `\data_add_record()` method accepts a new `$approved` parameter to set the corresponding state of the new record.
|
||||
|
||||
For more information see [MDL-81274](https://tracker.moodle.org/browse/MDL-81274)
|
||||
|
||||
### Deprecated
|
||||
|
||||
- The `mod_data_renderer::render_fields_footer` method has been deprecated as it's no longer used
|
||||
- The `\mod_data_renderer::render_fields_footer()` method has been deprecated as it's no longer used.
|
||||
|
||||
For more information see [MDL-81321](https://tracker.moodle.org/browse/MDL-81321)
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
# mod_feedback Upgrade notes
|
||||
|
||||
## 4.5rc1
|
||||
## 4.5rc2
|
||||
|
||||
### Deprecated
|
||||
|
||||
- The `feedback_check_is_switchrole` method has been deprecated as it didn't work
|
||||
- The `\feedback_check_is_switchrole()` function has been deprecated as it didn't work.
|
||||
|
||||
For more information see [MDL-72424](https://tracker.moodle.org/browse/MDL-72424)
|
||||
- The method `mod_feedback\output\renderer::create_template_form()` has been deprecated. It is not used anymore.
|
||||
- The method `\mod_feedback\output\renderer::create_template_form()` has been deprecated. It is not used anymore.
|
||||
|
||||
For more information see [MDL-81742](https://tracker.moodle.org/browse/MDL-81742)
|
||||
|
|
12
mod/quiz/UPGRADING.md
Normal file
12
mod/quiz/UPGRADING.md
Normal file
|
@ -0,0 +1,12 @@
|
|||
# mod_quiz Upgrade notes
|
||||
|
||||
## 4.5rc2
|
||||
|
||||
### Added
|
||||
|
||||
- The following methods of the `quiz_overview_report` class now take a new optional `$slots` parameter used to only regrade some slots in each attempt (default all):
|
||||
- `\quiz_overview_report::regrade_attempts()`
|
||||
- `\quiz_overview_report::regrade_batch_of_attempts()`
|
||||
|
||||
For more information see [MDL-79546](https://tracker.moodle.org/browse/MDL-79546)
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue