NOBUG: Add upgrade notes

This commit is contained in:
Huong Nguyen 2024-10-04 21:03:11 +07:00
parent 166408a13a
commit 3a6640c461
No known key found for this signature in database
GPG key ID: 40D88AB693A3E72A
47 changed files with 834 additions and 738 deletions

View file

@ -1,6 +1,6 @@
# core_role (subsystem) Upgrade notes
## 4.5rc1
## 4.5rc2
### Added
@ -12,11 +12,11 @@
`SessionHandlerInterface`, and override methods as required.
The following methods in `\core\session\manager` have been deprecated:
| Old method name | New method name |
| --- | --- |
| `kill_all_sessions` | `destroy_all` |
| `kill_session` | `destroy` |
| `kill_sessions_for_auth_plugin` | `destroy_by_auth_plugin` |
| `kill_user_sessions` | `destroy_user_sessions` |
| Old method name | New method name |
| --- | --- |
| `kill_all_sessions` | `destroy_all` |
| `kill_session` | `destroy` |
| `kill_sessions_for_auth_plugin` | `destroy_by_auth_plugin` |
| `kill_user_sessions` | `destroy_user_sessions` |
For more information see [MDL-66151](https://tracker.moodle.org/browse/MDL-66151)

View file

@ -1,6 +1,6 @@
# tool (plugin type) Upgrade notes
## 4.5rc1
## 4.5rc2
### Removed

View file

@ -1,6 +1,6 @@
# tool_behat Upgrade notes
## 4.5rc1
## 4.5rc2
### Added

View file

@ -1,9 +1,12 @@
# factor_sms Upgrade notes
## 4.5rc1
## 4.5rc2
### Removed
- The following classes are removed as the SMS feature now takes advantage of core_sms API: - sms_sent (admin/tool/mfa/factor/sms/classes/event/sms_sent.php) - aws_sns (admin/tool/mfa/factor/sms/classes/local/smsgateway/aws_sns.php) - gateway_interface (admin/tool/mfa/factor/sms/classes/local/smsgateway/gateway_interface.php)
- The following classes are removed as the SMS feature now takes advantage of `core_sms` API:
- `\factor_sms\event\sms_sent`
- `\factor_sms\local\smsgateway\aws_sns`
- `\factor_sms\local\smsgateway\gateway_interface`
For more information see [MDL-80962](https://tracker.moodle.org/browse/MDL-80962)

View file

@ -1,9 +1,9 @@
# tool_oauth2 Upgrade notes
## 4.5rc1
## 4.5rc2
### Added
- The `get_additional_login_parameters()` method now supports adding the language code to the authentication request so that the OAuth2 login page matches the language in Moodle.
- The `\core\oautuh2\client::get_additional_login_parameters()` method now supports adding the language code to the authentication request so that the OAuth2 login page matches the language in Moodle.
For more information see [MDL-67554](https://tracker.moodle.org/browse/MDL-67554)