diff --git a/UPGRADING.md b/UPGRADING.md index 15065c72aed..d6e6d11fc8e 100644 --- a/UPGRADING.md +++ b/UPGRADING.md @@ -18,6 +18,15 @@ The format of this change log follows the advice given at [Keep a CHANGELOG](htt - OPEN_BADGES_V1 is deprecated and should not be used anymore. For more information see [MDL-70983](https://tracker.moodle.org/browse/MDL-70983) +- The course_badges systemreport has been deprecated and merged with the badges systemreport. Please, use the badges systemreport instead. + + For more information see [MDL-82503](https://tracker.moodle.org/browse/MDL-82503) +- The $showmanage parameter in the core_badges\output\standard_action_bar constructor has been deprecated and should not be used anymore. + + For more information see [MDL-82503](https://tracker.moodle.org/browse/MDL-82503) +- The badges/view.php page has been deprecated and merged with badges/index.php. Please, use badges/index.php instead. + + For more information see [MDL-82503](https://tracker.moodle.org/browse/MDL-82503) #### Removed @@ -289,6 +298,9 @@ The format of this change log follows the advice given at [Keep a CHANGELOG](htt - Add optional icon and title to notification. Two parameters have been added to the `core\output\notification` so when creating a notification you can pass an icon and a title. For more information see [MDL-82297](https://tracker.moodle.org/browse/MDL-82297) +- Add set_disabled_option method to url_select to enable or disable an option from its url (the key for the option). + + For more information see [MDL-82490](https://tracker.moodle.org/browse/MDL-82490) - The Moodle autoloader should now be registered using `\core\component::register_autoloader` rather than manually doing so in any exceptional location which requires it. It is not normally necessary to include the autoloader manually, as it is registered automatically when the Moodle environment is bootstrapped. For more information see [MDL-82747](https://tracker.moodle.org/browse/MDL-82747) @@ -556,6 +568,12 @@ The format of this change log follows the advice given at [Keep a CHANGELOG](htt - Webservices `core_course_get_courses_by_field` now accepts a new parameter `sectionid` to be able to retrieve the course that has the indicated section For more information see [MDL-81699](https://tracker.moodle.org/browse/MDL-81699) +- Added new 'activitychooserbutton' output class to display the activitychooser button. New action_links can be added to the button via hooks converting it into a dropdown. + + For more information see [MDL-81767](https://tracker.moodle.org/browse/MDL-81767) +- New `core_course\hook\before_activitychooserbutton_exported` hook added to allow third-party plugins to extend activity chooser button options + + For more information see [MDL-81767](https://tracker.moodle.org/browse/MDL-81767) - i_open_section_edit_menu(), i_show_section(), i_hide_section(), i_wait_until_section_is_available(), show_section_link_exists(), hide_section_link_exists() and section_exists() functions have been improved to accept not only section number but also section name. For more information see [MDL-82259](https://tracker.moodle.org/browse/MDL-82259) @@ -806,6 +824,9 @@ The format of this change log follows the advice given at [Keep a CHANGELOG](htt If `istrackeduser` is pre-computed for the course module's course, it can be provided here to avoid an additional function call. For more information see [MDL-81610](https://tracker.moodle.org/browse/MDL-81610) +- Added new 'create_module' webservice to create new module (with quickcreate feature) instances in the course. + + For more information see [MDL-81767](https://tracker.moodle.org/browse/MDL-81767) - New $disabled parameter has been added to select, select_optgroup and select_option html_writers to create disabled option elements. For more information see [MDL-82146](https://tracker.moodle.org/browse/MDL-82146) @@ -824,6 +845,14 @@ The format of this change log follows the advice given at [Keep a CHANGELOG](htt For more information see [MDL-81749](https://tracker.moodle.org/browse/MDL-81749) +### mod + +#### Added + +- Added new FEATURE_QUICKCREATE for modules that can be quickly created in the course wihout filling a previous form. + + For more information see [MDL-81767](https://tracker.moodle.org/browse/MDL-81767) + ### core_report #### Added @@ -923,6 +952,14 @@ The format of this change log follows the advice given at [Keep a CHANGELOG](htt For more information see [MDL-82212](https://tracker.moodle.org/browse/MDL-82212) +### core_availability + +#### Removed + +- The previously deprecated renderer `render_core_availability_multiple_messages` method has been removed + + For more information see [MDL-82223](https://tracker.moodle.org/browse/MDL-82223) + ### core_filters #### Added @@ -945,6 +982,12 @@ The format of this change log follows the advice given at [Keep a CHANGELOG](htt For more information see [MDL-82447](https://tracker.moodle.org/browse/MDL-82447) +#### 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) + ### customfield_select #### Changed diff --git a/admin/roles/UPGRADING.md b/admin/roles/UPGRADING.md index 1b9fd378dfa..b2ef0cb7ff5 100644 --- a/admin/roles/UPGRADING.md +++ b/admin/roles/UPGRADING.md @@ -16,4 +16,3 @@ * kill_user_sessions use destroy_user_sessions instead For more information see [MDL-66151](https://tracker.moodle.org/browse/MDL-66151) - diff --git a/availability/UPGRADING.md b/availability/UPGRADING.md new file mode 100644 index 00000000000..1748b212095 --- /dev/null +++ b/availability/UPGRADING.md @@ -0,0 +1,10 @@ +# core_availability (subsystem) Upgrade notes + +## 4.5dev+ + +### Removed + +- The previously deprecated renderer `render_core_availability_multiple_messages` method has been removed + + For more information see [MDL-82223](https://tracker.moodle.org/browse/MDL-82223) + diff --git a/badges/UPGRADING.md b/badges/UPGRADING.md index 245ef9fb639..bbfe5dfbeae 100644 --- a/badges/UPGRADING.md +++ b/badges/UPGRADING.md @@ -10,6 +10,15 @@ - OPEN_BADGES_V1 is deprecated and should not be used anymore. For more information see [MDL-70983](https://tracker.moodle.org/browse/MDL-70983) +- The course_badges systemreport has been deprecated and merged with the badges systemreport. Please, use the badges systemreport instead. + + For more information see [MDL-82503](https://tracker.moodle.org/browse/MDL-82503) +- The $showmanage parameter in the core_badges\output\standard_action_bar constructor has been deprecated and should not be used anymore. + + For more information see [MDL-82503](https://tracker.moodle.org/browse/MDL-82503) +- The badges/view.php page has been deprecated and merged with badges/index.php. Please, use badges/index.php instead. + + For more information see [MDL-82503](https://tracker.moodle.org/browse/MDL-82503) ### Removed diff --git a/course/UPGRADING.md b/course/UPGRADING.md index 4f19c4b71f0..71188330980 100644 --- a/course/UPGRADING.md +++ b/course/UPGRADING.md @@ -19,6 +19,12 @@ - Webservices `core_course_get_courses_by_field` now accepts a new parameter `sectionid` to be able to retrieve the course that has the indicated section For more information see [MDL-81699](https://tracker.moodle.org/browse/MDL-81699) +- Added new 'activitychooserbutton' output class to display the activitychooser button. New action_links can be added to the button via hooks converting it into a dropdown. + + For more information see [MDL-81767](https://tracker.moodle.org/browse/MDL-81767) +- New `core_course\hook\before_activitychooserbutton_exported` hook added to allow third-party plugins to extend activity chooser button options + + For more information see [MDL-81767](https://tracker.moodle.org/browse/MDL-81767) - i_open_section_edit_menu(), i_show_section(), i_hide_section(), i_wait_until_section_is_available(), show_section_link_exists(), hide_section_link_exists() and section_exists() functions have been improved to accept not only section number but also section name. For more information see [MDL-82259](https://tracker.moodle.org/browse/MDL-82259) diff --git a/course/format/UPGRADING.md b/course/format/UPGRADING.md index c7b60428581..de82cbec1cd 100644 --- a/course/format/UPGRADING.md +++ b/course/format/UPGRADING.md @@ -8,6 +8,9 @@ If `istrackeduser` is pre-computed for the course module's course, it can be provided here to avoid an additional function call. For more information see [MDL-81610](https://tracker.moodle.org/browse/MDL-81610) +- Added new 'create_module' webservice to create new module (with quickcreate feature) instances in the course. + + For more information see [MDL-81767](https://tracker.moodle.org/browse/MDL-81767) - New $disabled parameter has been added to select, select_optgroup and select_option html_writers to create disabled option elements. For more information see [MDL-82146](https://tracker.moodle.org/browse/MDL-82146) diff --git a/files/UPGRADING.md b/files/UPGRADING.md index e850905b530..6f64d603a71 100644 --- a/files/UPGRADING.md +++ b/files/UPGRADING.md @@ -14,4 +14,3 @@ If true, it will trigger the after_file_created hook to re-create the image. For more information see [MDL-75850](https://tracker.moodle.org/browse/MDL-75850) - diff --git a/lib/UPGRADING.md b/lib/UPGRADING.md index 537e2120461..b53f5cd8370 100644 --- a/lib/UPGRADING.md +++ b/lib/UPGRADING.md @@ -252,6 +252,9 @@ - Add optional icon and title to notification. Two parameters have been added to the `core\output\notification` so when creating a notification you can pass an icon and a title. For more information see [MDL-82297](https://tracker.moodle.org/browse/MDL-82297) +- Add set_disabled_option method to url_select to enable or disable an option from its url (the key for the option). + + For more information see [MDL-82490](https://tracker.moodle.org/browse/MDL-82490) - The Moodle autoloader should now be registered using `\core\component::register_autoloader` rather than manually doing so in any exceptional location which requires it. It is not normally necessary to include the autoloader manually, as it is registered automatically when the Moodle environment is bootstrapped. For more information see [MDL-82747](https://tracker.moodle.org/browse/MDL-82747) diff --git a/mod/UPGRADING.md b/mod/UPGRADING.md new file mode 100644 index 00000000000..7718a5b9d14 --- /dev/null +++ b/mod/UPGRADING.md @@ -0,0 +1,10 @@ +# mod (plugin type) Upgrade notes + +## 4.5dev+ + +### Added + +- Added new FEATURE_QUICKCREATE for modules that can be quickly created in the course wihout filling a previous form. + + For more information see [MDL-81767](https://tracker.moodle.org/browse/MDL-81767) + diff --git a/mod/bigbluebuttonbn/UPGRADING.md b/mod/bigbluebuttonbn/UPGRADING.md index 671380f68c7..09ca5300bcf 100644 --- a/mod/bigbluebuttonbn/UPGRADING.md +++ b/mod/bigbluebuttonbn/UPGRADING.md @@ -7,3 +7,9 @@ - Mobile support via plugin has been removed. For more information see [MDL-82447](https://tracker.moodle.org/browse/MDL-82447) + +### 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)