Skip to content

Commit

Permalink
NOBUG: Add upgrade notes
Browse files Browse the repository at this point in the history
  • Loading branch information
HuongNV13 committed Nov 1, 2024
1 parent 930f280 commit 6a1feb8
Show file tree
Hide file tree
Showing 6 changed files with 120 additions and 1 deletion.
59 changes: 59 additions & 0 deletions UPGRADING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
1 change: 0 additions & 1 deletion enrol/UPGRADING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 changes: 6 additions & 0 deletions lib/UPGRADING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
14 changes: 14 additions & 0 deletions mod/feedback/UPGRADING.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
10 changes: 10 additions & 0 deletions mod/h5pactivity/UPGRADING.md
Original file line number Diff line number Diff line change
@@ -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 changes: 31 additions & 0 deletions reportbuilder/UPGRADING.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 6a1feb8

Please sign in to comment.