NOBUG: Add upgrade notes

This commit is contained in:
Huong Nguyen
2024-12-06 13:13:03 +07:00
parent 15d05e6d76
commit 3a71764572
14 changed files with 7 additions and 101 deletions
@@ -1,19 +0,0 @@
issueNumber: MDL-75610
notes:
core:
- message: >
`\core\output\activity_header` now uses the `is_title_allowed()` method
when setting the title in the constructor.
This method has been improved to give priority to the 'notitle' option
in the theme config for the current page layout, over the top-level
option in the theme.
For example, the Boost theme sets
`$THEME->activityheaderconfig['notitle'] = true;` by default, but in its
`secure` pagelayout, it has `'notitle' = false`.
This prevents display of the title in all layouts except `secure`.
type: improved
@@ -1,19 +0,0 @@
issueNumber: MDL-81308
notes:
core:
- message: >
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.
type: changed
@@ -1,19 +0,0 @@
issueNumber: MDL-81521
notes:
mod_quiz:
- message: >
The `\mod_quiz\attempt_walkthrough_from_csv_test` unit test has been
marked as final and should not be extended by other tests.
All shared functionality has been moved to a new autoloadable test-case:
`\mod_quiz\tests\attempt_walkthrough_testcase`.
To support this testcase the existing `$files` instance property should be replaced with a
new static method, `::get_test_files`.
Both the existing instance property and the new static method can co-exist.
type: changed
@@ -1,8 +0,0 @@
issueNumber: MDL-82809
notes:
core_reportbuilder:
- message: >-
The `get_active_conditions` method of the base report class has a new
`$checkavailable` parameter to determine whether to check the returned
conditions availability
type: changed
@@ -1,8 +0,0 @@
issueNumber: MDL-83185
notes:
core_courseformat:
- message: >-
Add core_courseformat\base::invalidate_all_session_caches to reset course editor cache for all users when course is changed.
This method can be used as an alternative to core_courseformat\base::session_cache_reset for resetting the cache for the current user
in case the change in the course should be reflected for all users.
type: improved
@@ -1,13 +0,0 @@
issueNumber: MDL-83432
notes:
core_enrol:
- message: >-
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
type: changed
@@ -1,8 +0,0 @@
issueNumber: MDL-83641
notes:
core_form:
- message: >-
The `cohort` form element now accepts new `includes` option, which is
passed to the corresponding external service to determine which cohorts
to return (self, parents, all)
type: changed
+1 -1
View File
@@ -6,7 +6,7 @@ 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).
## 4.5+
## 4.5.1
### core
+1 -1
View File
@@ -1,6 +1,6 @@
# core_courseformat (subsystem / plugintype) Upgrade notes
## 4.5+
## 4.5.1
### Added
+1 -1
View File
@@ -1,6 +1,6 @@
# core_enrol (subsystem / plugintype) Upgrade notes
## 4.5+
## 4.5.1
### Changed
+1 -1
View File
@@ -1,6 +1,6 @@
# core (subsystem) Upgrade notes
## 4.5+
## 4.5.1
### Added
+1 -1
View File
@@ -1,6 +1,6 @@
# core_form (subsystem) Upgrade notes
## 4.5+
## 4.5.1
### Changed
+1 -1
View File
@@ -1,6 +1,6 @@
# mod_quiz Upgrade notes
## 4.5+
## 4.5.1
### Changed
+1 -1
View File
@@ -1,6 +1,6 @@
# core_reportbuilder (subsystem) Upgrade notes
## 4.5+
## 4.5.1
### Changed