mirror of
https://github.com/moodle/moodle.git
synced 2025-01-29 19:50:14 +01:00
NOBUG: Add upgrade notes
This commit is contained in:
parent
1ca3f89005
commit
144a9fa027
27
UPGRADING.md
27
UPGRADING.md
@ -6,6 +6,33 @@ More detailed information on key changes can be found in the [Developer update n
|
||||
|
||||
The format of this change log follows the advice given at [Keep a CHANGELOG](https://keepachangelog.com).
|
||||
|
||||
## 5.0dev
|
||||
|
||||
### core
|
||||
|
||||
#### Changed
|
||||
|
||||
- All uses of the following PHPUnit methods have been removed as these methods are
|
||||
deprecated upstream without direct replacement:
|
||||
|
||||
- `withConsecutive`
|
||||
- `willReturnConsecutive`
|
||||
- `onConsecutive`
|
||||
|
||||
Any plugin using these methods must update their uses.
|
||||
|
||||
For more information see [MDL-81308](https://tracker.moodle.org/browse/MDL-81308)
|
||||
|
||||
### core_enrol
|
||||
|
||||
#### Changed
|
||||
|
||||
- The `after_user_enrolled` hook now contains a `roleid` property to allow for listeners to determine which role was assigned during user enrolment (if any)
|
||||
|
||||
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)
|
||||
|
||||
## 4.5
|
||||
|
||||
### core
|
||||
|
12
enrol/UPGRADING.md
Normal file
12
enrol/UPGRADING.md
Normal file
@ -0,0 +1,12 @@
|
||||
# core_enrol (subsystem / plugintype) Upgrade notes
|
||||
|
||||
## 5.0dev
|
||||
|
||||
### Changed
|
||||
|
||||
- The `after_user_enrolled` hook now contains a `roleid` property to allow for listeners to determine which role was assigned during user enrolment (if any)
|
||||
|
||||
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)
|
||||
|
@ -1,5 +1,20 @@
|
||||
# core (subsystem) Upgrade notes
|
||||
|
||||
## 5.0dev
|
||||
|
||||
### Changed
|
||||
|
||||
- All uses of the following PHPUnit methods have been removed as these methods are
|
||||
deprecated upstream without direct replacement:
|
||||
|
||||
- `withConsecutive`
|
||||
- `willReturnConsecutive`
|
||||
- `onConsecutive`
|
||||
|
||||
Any plugin using these methods must update their uses.
|
||||
|
||||
For more information see [MDL-81308](https://tracker.moodle.org/browse/MDL-81308)
|
||||
|
||||
## 4.5
|
||||
|
||||
### Added
|
||||
|
Loading…
x
Reference in New Issue
Block a user