NOBUG: Add upgrade notes

This commit is contained in:
Huong Nguyen
2024-11-01 14:28:56 +07:00
parent 930f2809ef
commit 6a1feb87bd
6 changed files with 120 additions and 1 deletions
+59
View File
@@ -23,6 +23,12 @@ The format of this change log follows the advice given at [Keep a CHANGELOG](htt
For more information see [MDL-81308](https://tracker.moodle.org/browse/MDL-81308)
#### Removed
- moodle_process_email() has been deprecated with the removal of the unused and non-functioning admin/process_email.php.
For more information see [MDL-61232](https://tracker.moodle.org/browse/MDL-61232)
### core_enrol
#### Changed
@@ -33,6 +39,59 @@ The format of this change log follows the advice given at [Keep a CHANGELOG](htt
For more information see [MDL-83432](https://tracker.moodle.org/browse/MDL-83432)
### core_reportbuilder
#### Added
- New `get_deprecated_tables` method in base entity, to be overridden when an entity no longer uses a table (due to column/filter re-factoring, etc) in order to avoid breaking third-party reports
For more information see [MDL-78118](https://tracker.moodle.org/browse/MDL-78118)
#### Changed
- The `get_active_conditions` method of the base report class has a new `$checkavailable` parameter to determine whether to check the returned conditions availability
For more information see [MDL-82809](https://tracker.moodle.org/browse/MDL-82809)
#### Removed
- The following deprecated report entity elements have been removed:
- `comment:context`
- `comment:contexturl`
- `enrolment:method` (plus enrolment formatter `enrolment_name` method)
- 'enrolment:role`
- `file:context`
- `file:contexturl`
- `instance:context` (tag)
- `instance:contexturl` (tag)
Use of the `context` table is also deprecated in the `file` and `instance` (tag) entities
For more information see [MDL-78118](https://tracker.moodle.org/browse/MDL-78118)
### mod_feedback
#### Deprecated
- The 'mode' parameter has been deprecated from 'edit_template_action_bar' and 'templates_table' contructors.
For more information see [MDL-81744](https://tracker.moodle.org/browse/MDL-81744)
#### Removed
- The 'use_template' template has been removed as it is not needed anymore.
For more information see [MDL-81744](https://tracker.moodle.org/browse/MDL-81744)
### mod_h5pactivity
#### Changed
- The external function get_user_attempts now returns the total number of attempts.
For more information see [MDL-82775](https://tracker.moodle.org/browse/MDL-82775)
## 4.5
### core
-1
View File
@@ -9,4 +9,3 @@
The base enrolment `enrol_plugin::send_course_welcome_message_to_user` method also now accepts a `$roleid` parameter in order to correctly populate the `courserole` placeholder
For more information see [MDL-83432](https://tracker.moodle.org/browse/MDL-83432)
+6
View File
@@ -15,6 +15,12 @@
For more information see [MDL-81308](https://tracker.moodle.org/browse/MDL-81308)
### Removed
- moodle_process_email() has been deprecated with the removal of the unused and non-functioning admin/process_email.php.
For more information see [MDL-61232](https://tracker.moodle.org/browse/MDL-61232)
## 4.5
### Added
+14
View File
@@ -1,5 +1,19 @@
# mod_feedback Upgrade notes
## 5.0dev
### Deprecated
- The 'mode' parameter has been deprecated from 'edit_template_action_bar' and 'templates_table' contructors.
For more information see [MDL-81744](https://tracker.moodle.org/browse/MDL-81744)
### Removed
- The 'use_template' template has been removed as it is not needed anymore.
For more information see [MDL-81744](https://tracker.moodle.org/browse/MDL-81744)
## 4.5
### Deprecated
+10
View File
@@ -0,0 +1,10 @@
# mod_h5pactivity Upgrade notes
## 5.0dev
### Changed
- The external function get_user_attempts now returns the total number of attempts.
For more information see [MDL-82775](https://tracker.moodle.org/browse/MDL-82775)
+31
View File
@@ -1,5 +1,36 @@
# core_reportbuilder (subsystem) Upgrade notes
## 5.0dev
### Added
- New `get_deprecated_tables` method in base entity, to be overridden when an entity no longer uses a table (due to column/filter re-factoring, etc) in order to avoid breaking third-party reports
For more information see [MDL-78118](https://tracker.moodle.org/browse/MDL-78118)
### Changed
- The `get_active_conditions` method of the base report class has a new `$checkavailable` parameter to determine whether to check the returned conditions availability
For more information see [MDL-82809](https://tracker.moodle.org/browse/MDL-82809)
### Removed
- The following deprecated report entity elements have been removed:
- `comment:context`
- `comment:contexturl`
- `enrolment:method` (plus enrolment formatter `enrolment_name` method)
- 'enrolment:role`
- `file:context`
- `file:contexturl`
- `instance:context` (tag)
- `instance:contexturl` (tag)
Use of the `context` table is also deprecated in the `file` and `instance` (tag) entities
For more information see [MDL-78118](https://tracker.moodle.org/browse/MDL-78118)
## 4.5
### Added