From dc17e7802f7253e648ebf522650b14dbb334005d Mon Sep 17 00:00:00 2001 From: Huong Nguyen Date: Thu, 16 Jan 2025 23:46:34 +0700 Subject: [PATCH] NOBUG: Add upgrade notes --- UPGRADING.md | 8 ++++++++ lib/UPGRADING.md | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/UPGRADING.md b/UPGRADING.md index d4defb072db..9b272aec587 100644 --- a/UPGRADING.md +++ b/UPGRADING.md @@ -25,6 +25,14 @@ The format of this change log follows the advice given at [Keep a CHANGELOG](htt - The `core_renderer::tag_list` function now has a new parameter named `displaylink`. When `displaylink` is set to `true`, the tag name will be displayed as a clickable hyperlink. Otherwise, it will be rendered as plain text. For more information see [MDL-75075](https://tracker.moodle.org/browse/MDL-75075) +- The following test classes have been moved into autoloadable locations: + + | Old location | New classname | + | --- | --- | + | `\core\tests\route_testcase` | `\core\tests\router\route_testcase` | + | `\core\router\mocking_route_loader` | `\core\tests\router\mocking_route_loader` | + + For more information see [MDL-83968](https://tracker.moodle.org/browse/MDL-83968) ### core_completion diff --git a/lib/UPGRADING.md b/lib/UPGRADING.md index 384d9dea4f5..5999a0e75cf 100644 --- a/lib/UPGRADING.md +++ b/lib/UPGRADING.md @@ -17,6 +17,14 @@ - The `core_renderer::tag_list` function now has a new parameter named `displaylink`. When `displaylink` is set to `true`, the tag name will be displayed as a clickable hyperlink. Otherwise, it will be rendered as plain text. For more information see [MDL-75075](https://tracker.moodle.org/browse/MDL-75075) +- The following test classes have been moved into autoloadable locations: + + | Old location | New classname | + | --- | --- | + | `\core\tests\route_testcase` | `\core\tests\router\route_testcase` | + | `\core\router\mocking_route_loader` | `\core\tests\router\mocking_route_loader` | + + For more information see [MDL-83968](https://tracker.moodle.org/browse/MDL-83968) ## 4.5.1