diff --git a/UPGRADING.md b/UPGRADING.md index 9bbb2ff06be..d8240ea37da 100644 --- a/UPGRADING.md +++ b/UPGRADING.md @@ -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). -## 5.0beta +## 5.0rc1 ### core @@ -23,6 +23,17 @@ The format of this change log follows the advice given at [Keep a CHANGELOG](htt This prevents display of the title in all layouts except `secure`. For more information see [MDL-75610](https://tracker.moodle.org/browse/MDL-75610) +- Behat now supports email content verification using Mailpit. + You can check the contents of an email using the step `Then the email to "user@example.com" with subject containing "subject" should contain "content".` + To use this feature: + 1. Ensure that Mailpit is running + 2. Define the following constants in your `config.php`: + - `TEST_EMAILCATCHER_MAIL_SERVER` - The Mailpit server address (e.g. `0.0.0.0:1025`) + - `TEST_EMAILCATCHER_API_SERVER` - The Mailpit API server (qe.g. `http://localhost:8025`) + + 3. Ensure that the email catcher is set up using the step `Given an email catcher server is configured`. + + For more information see [MDL-75971](https://tracker.moodle.org/browse/MDL-75971) - A new core\ip_utils::normalize_internet_address() method is created to sanitize an IP address, a range of IP addresses, a domain name or a wildcard domain matching pattern. Moodle previously allowed entries such as 192.168. or .moodle.org for certain variables (eg: $CFG->proxybypass). Since MDL-74289, these formats are no longer allowed. This method converts this informations into an authorized format. For example, 192.168. becomes 192.168.0.0/16 and .moodle.org becomes *.moodle.org. @@ -61,6 +72,9 @@ The format of this change log follows the advice given at [Keep a CHANGELOG](htt - The new PHP enum core\output\local\properties\iconsize can be used to limit the amount of icons sizes an output component can use. The enum has the same values available in the theme_boost scss. For more information see [MDL-84555](https://tracker.moodle.org/browse/MDL-84555) +- A new method, `core_text::trim_ctrl_chars()`, has been introduced to clean control characters from text. This ensures cleaner input handling and prevents issues caused by invisible or non-printable characters + + For more information see [MDL-84907](https://tracker.moodle.org/browse/MDL-84907) #### Changed @@ -522,6 +536,9 @@ The format of this change log follows the advice given at [Keep a CHANGELOG](htt #### Added +- A new function `file_clear_draft_area()` has been added to delete the files in a draft area. + + For more information see [MDL-72050](https://tracker.moodle.org/browse/MDL-72050) - Adds a new ad-hoc task `core_files\task\asynchronous_mimetype_upgrade_task` to upgrade the mimetype of files asynchronously during core upgrades. The upgradelib also comes with a new utility function `upgrade_create_async_mimetype_upgrade_task` for creating said ad-hoc task. diff --git a/admin/presets/UPGRADING.md b/admin/presets/UPGRADING.md index 3472bd11cd0..e7178b96bb9 100644 --- a/admin/presets/UPGRADING.md +++ b/admin/presets/UPGRADING.md @@ -1,6 +1,6 @@ # core_adminpresets (subsystem) Upgrade notes -## 5.0beta +## 5.0rc1 ### Removed diff --git a/admin/tool/admin_presets/UPGRADING.md b/admin/tool/admin_presets/UPGRADING.md index 15ea1d31f75..8d41d8becf2 100644 --- a/admin/tool/admin_presets/UPGRADING.md +++ b/admin/tool/admin_presets/UPGRADING.md @@ -1,6 +1,6 @@ # tool_admin_presets Upgrade notes -## 5.0beta +## 5.0rc1 ### Deprecated diff --git a/admin/tool/behat/UPGRADING.md b/admin/tool/behat/UPGRADING.md index 1925ea831b4..9fa7a2a48a0 100644 --- a/admin/tool/behat/UPGRADING.md +++ b/admin/tool/behat/UPGRADING.md @@ -1,6 +1,6 @@ # tool_behat Upgrade notes -## 5.0beta +## 5.0rc1 ### Added diff --git a/admin/tool/brickfield/UPGRADING.md b/admin/tool/brickfield/UPGRADING.md index e8249339aeb..0346e8af192 100644 --- a/admin/tool/brickfield/UPGRADING.md +++ b/admin/tool/brickfield/UPGRADING.md @@ -1,6 +1,6 @@ # tool_brickfield Upgrade notes -## 5.0beta +## 5.0rc1 ### Deprecated diff --git a/admin/tool/lp/UPGRADING.md b/admin/tool/lp/UPGRADING.md index 82bdf528084..37b2e679ccd 100644 --- a/admin/tool/lp/UPGRADING.md +++ b/admin/tool/lp/UPGRADING.md @@ -1,6 +1,6 @@ # tool_lp Upgrade notes -## 5.0beta +## 5.0rc1 ### Deprecated diff --git a/admin/tool/mfa/UPGRADING.md b/admin/tool/mfa/UPGRADING.md index 9f76453d2db..12f4e84d6c4 100644 --- a/admin/tool/mfa/UPGRADING.md +++ b/admin/tool/mfa/UPGRADING.md @@ -1,6 +1,6 @@ # tool_mfa Upgrade notes -## 5.0beta +## 5.0rc1 ### Added diff --git a/admin/tool/mobile/UPGRADING.md b/admin/tool/mobile/UPGRADING.md index bd7d3338767..7434b6c2a9d 100644 --- a/admin/tool/mobile/UPGRADING.md +++ b/admin/tool/mobile/UPGRADING.md @@ -1,6 +1,6 @@ # tool_mobile Upgrade notes -## 5.0beta +## 5.0rc1 ### Removed diff --git a/ai/UPGRADING.md b/ai/UPGRADING.md index 7983e432578..7423a94d32c 100644 --- a/ai/UPGRADING.md +++ b/ai/UPGRADING.md @@ -1,6 +1,6 @@ # core_ai (subsystem) Upgrade notes -## 5.0beta +## 5.0rc1 ### Added diff --git a/ai/placement/courseassist/UPGRADING.md b/ai/placement/courseassist/UPGRADING.md index e18b1592384..7ae3812d821 100644 --- a/ai/placement/courseassist/UPGRADING.md +++ b/ai/placement/courseassist/UPGRADING.md @@ -1,6 +1,6 @@ # aiplacement_courseassist Upgrade notes -## 5.0beta +## 5.0rc1 ### Added diff --git a/analytics/UPGRADING.md b/analytics/UPGRADING.md index 34f0e5a9897..707eb9f8e39 100644 --- a/analytics/UPGRADING.md +++ b/analytics/UPGRADING.md @@ -1,6 +1,6 @@ # core_analytics (subsystem) Upgrade notes -## 5.0beta +## 5.0rc1 ### Removed diff --git a/auth/UPGRADING.md b/auth/UPGRADING.md index a82768bbae6..01610b5d501 100644 --- a/auth/UPGRADING.md +++ b/auth/UPGRADING.md @@ -1,6 +1,6 @@ # core_auth (subsystem / plugintype) Upgrade notes -## 5.0beta +## 5.0rc1 ### Removed diff --git a/backup/util/ui/UPGRADING.md b/backup/util/ui/UPGRADING.md index 1ad020639ca..538a3b63644 100644 --- a/backup/util/ui/UPGRADING.md +++ b/backup/util/ui/UPGRADING.md @@ -1,6 +1,6 @@ # core_backup (subsystem) Upgrade notes -## 5.0beta +## 5.0rc1 ### Added diff --git a/badges/UPGRADING.md b/badges/UPGRADING.md index caa29809044..1995a808261 100644 --- a/badges/UPGRADING.md +++ b/badges/UPGRADING.md @@ -1,6 +1,6 @@ # core_badges (subsystem) Upgrade notes -## 5.0beta +## 5.0rc1 ### Added diff --git a/blocks/UPGRADING.md b/blocks/UPGRADING.md index 85b29210aef..b68ff95eb1d 100644 --- a/blocks/UPGRADING.md +++ b/blocks/UPGRADING.md @@ -1,6 +1,6 @@ # core_block (subsystem / plugintype) Upgrade notes -## 5.0beta +## 5.0rc1 ### Removed diff --git a/blocks/site_main_menu/UPGRADING.md b/blocks/site_main_menu/UPGRADING.md index 2c2d6d6b70a..150b09d7f93 100644 --- a/blocks/site_main_menu/UPGRADING.md +++ b/blocks/site_main_menu/UPGRADING.md @@ -1,6 +1,6 @@ # block_site_main_menu Upgrade notes -## 5.0beta +## 5.0rc1 ### Removed diff --git a/blocks/social_activities/UPGRADING.md b/blocks/social_activities/UPGRADING.md index 147a3bfb878..fbbf7c5bb6d 100644 --- a/blocks/social_activities/UPGRADING.md +++ b/blocks/social_activities/UPGRADING.md @@ -1,6 +1,6 @@ # block_social_activities Upgrade notes -## 5.0beta +## 5.0rc1 ### Removed diff --git a/calendar/UPGRADING.md b/calendar/UPGRADING.md index 3c6a80819e8..03ef39febd8 100644 --- a/calendar/UPGRADING.md +++ b/calendar/UPGRADING.md @@ -1,6 +1,6 @@ # core_calendar (subsystem) Upgrade notes -## 5.0beta +## 5.0rc1 ### Deprecated diff --git a/completion/UPGRADING.md b/completion/UPGRADING.md index 69bfcef2ba6..43c0f022a3f 100644 --- a/completion/UPGRADING.md +++ b/completion/UPGRADING.md @@ -1,6 +1,6 @@ # core_completion (subsystem) Upgrade notes -## 5.0beta +## 5.0rc1 ### Added diff --git a/course/UPGRADING.md b/course/UPGRADING.md index 47ac615a8ce..3ba0726fa42 100644 --- a/course/UPGRADING.md +++ b/course/UPGRADING.md @@ -1,6 +1,6 @@ # core_course (subsystem) Upgrade notes -## 5.0beta +## 5.0rc1 ### Added diff --git a/course/format/UPGRADING.md b/course/format/UPGRADING.md index 529557237ed..16d4ca7994d 100644 --- a/course/format/UPGRADING.md +++ b/course/format/UPGRADING.md @@ -1,6 +1,6 @@ # core_courseformat (subsystem / plugintype) Upgrade notes -## 5.0beta +## 5.0rc1 ### Added diff --git a/course/format/topics/UPGRADING.md b/course/format/topics/UPGRADING.md index 12841c555c1..caf185b2b76 100644 --- a/course/format/topics/UPGRADING.md +++ b/course/format/topics/UPGRADING.md @@ -1,6 +1,6 @@ # format_topics Upgrade notes -## 5.0beta +## 5.0rc1 ### Deprecated diff --git a/customfield/UPGRADING.md b/customfield/UPGRADING.md index 76d217846c9..812478d2268 100644 --- a/customfield/UPGRADING.md +++ b/customfield/UPGRADING.md @@ -1,6 +1,6 @@ # core_customfield (subsystem) Upgrade notes -## 5.0beta +## 5.0rc1 ### Added diff --git a/enrol/UPGRADING.md b/enrol/UPGRADING.md index 90e3d933144..c69c58f4dda 100644 --- a/enrol/UPGRADING.md +++ b/enrol/UPGRADING.md @@ -1,6 +1,6 @@ # core_enrol (subsystem / plugintype) Upgrade notes -## 5.0beta +## 5.0rc1 ### Added diff --git a/enrol/guest/UPGRADING.md b/enrol/guest/UPGRADING.md index 3743610623d..24ab682c07d 100644 --- a/enrol/guest/UPGRADING.md +++ b/enrol/guest/UPGRADING.md @@ -1,6 +1,6 @@ # enrol_guest Upgrade notes -## 5.0beta +## 5.0rc1 ### Deprecated diff --git a/enrol/self/UPGRADING.md b/enrol/self/UPGRADING.md index 937972f50ee..c484b28f5ed 100644 --- a/enrol/self/UPGRADING.md +++ b/enrol/self/UPGRADING.md @@ -1,6 +1,6 @@ # enrol_self Upgrade notes -## 5.0beta +## 5.0rc1 ### Deprecated diff --git a/files/UPGRADING.md b/files/UPGRADING.md index fe95ba6c31e..64229e77ae5 100644 --- a/files/UPGRADING.md +++ b/files/UPGRADING.md @@ -1,9 +1,12 @@ # core_files (subsystem) Upgrade notes -## 5.0beta +## 5.0rc1 ### Added +- A new function `file_clear_draft_area()` has been added to delete the files in a draft area. + + For more information see [MDL-72050](https://tracker.moodle.org/browse/MDL-72050) - Adds a new ad-hoc task `core_files\task\asynchronous_mimetype_upgrade_task` to upgrade the mimetype of files asynchronously during core upgrades. The upgradelib also comes with a new utility function `upgrade_create_async_mimetype_upgrade_task` for creating said ad-hoc task. diff --git a/grade/UPGRADING.md b/grade/UPGRADING.md index 77bcd3e980d..922aac2aae2 100644 --- a/grade/UPGRADING.md +++ b/grade/UPGRADING.md @@ -1,6 +1,6 @@ # core_grades (subsystem) Upgrade notes -## 5.0beta +## 5.0rc1 ### Added diff --git a/grade/report/UPGRADING.md b/grade/report/UPGRADING.md index f414fc92708..b6e6de57c9e 100644 --- a/grade/report/UPGRADING.md +++ b/grade/report/UPGRADING.md @@ -1,6 +1,6 @@ # gradereport (plugin type) Upgrade notes -## 5.0beta +## 5.0rc1 ### Removed diff --git a/grade/report/grader/UPGRADING.md b/grade/report/grader/UPGRADING.md index 9571d6ccf29..9ee96765b6c 100644 --- a/grade/report/grader/UPGRADING.md +++ b/grade/report/grader/UPGRADING.md @@ -1,6 +1,6 @@ # gradereport_grader Upgrade notes -## 5.0beta +## 5.0rc1 ### Deprecated diff --git a/lib/UPGRADING.md b/lib/UPGRADING.md index 5f9ddf3935f..2c062829f42 100644 --- a/lib/UPGRADING.md +++ b/lib/UPGRADING.md @@ -1,6 +1,6 @@ # core (subsystem) Upgrade notes -## 5.0beta +## 5.0rc1 ### Added @@ -15,6 +15,17 @@ This prevents display of the title in all layouts except `secure`. For more information see [MDL-75610](https://tracker.moodle.org/browse/MDL-75610) +- Behat now supports email content verification using Mailpit. + You can check the contents of an email using the step `Then the email to "user@example.com" with subject containing "subject" should contain "content".` + To use this feature: + 1. Ensure that Mailpit is running + 2. Define the following constants in your `config.php`: + - `TEST_EMAILCATCHER_MAIL_SERVER` - The Mailpit server address (e.g. `0.0.0.0:1025`) + - `TEST_EMAILCATCHER_API_SERVER` - The Mailpit API server (qe.g. `http://localhost:8025`) + + 3. Ensure that the email catcher is set up using the step `Given an email catcher server is configured`. + + For more information see [MDL-75971](https://tracker.moodle.org/browse/MDL-75971) - A new core\ip_utils::normalize_internet_address() method is created to sanitize an IP address, a range of IP addresses, a domain name or a wildcard domain matching pattern. Moodle previously allowed entries such as 192.168. or .moodle.org for certain variables (eg: $CFG->proxybypass). Since MDL-74289, these formats are no longer allowed. This method converts this informations into an authorized format. For example, 192.168. becomes 192.168.0.0/16 and .moodle.org becomes *.moodle.org. @@ -53,6 +64,9 @@ - The new PHP enum core\output\local\properties\iconsize can be used to limit the amount of icons sizes an output component can use. The enum has the same values available in the theme_boost scss. For more information see [MDL-84555](https://tracker.moodle.org/browse/MDL-84555) +- A new method, `core_text::trim_ctrl_chars()`, has been introduced to clean control characters from text. This ensures cleaner input handling and prevents issues caused by invisible or non-printable characters + + For more information see [MDL-84907](https://tracker.moodle.org/browse/MDL-84907) ### Changed diff --git a/lib/editor/tiny/UPGRADING.md b/lib/editor/tiny/UPGRADING.md index 8ba1cb6d162..dee5857d6e9 100644 --- a/lib/editor/tiny/UPGRADING.md +++ b/lib/editor/tiny/UPGRADING.md @@ -1,6 +1,6 @@ # editor_tiny Upgrade notes -## 5.0beta +## 5.0rc1 ### Added diff --git a/lib/form/UPGRADING.md b/lib/form/UPGRADING.md index 4ad1a01216f..02eb4fe91f7 100644 --- a/lib/form/UPGRADING.md +++ b/lib/form/UPGRADING.md @@ -1,6 +1,6 @@ # core_form (subsystem) Upgrade notes -## 5.0beta +## 5.0rc1 ### Changed diff --git a/mnet/UPGRADING.md b/mnet/UPGRADING.md index 13a92d6d18f..6df13631eb3 100644 --- a/mnet/UPGRADING.md +++ b/mnet/UPGRADING.md @@ -1,6 +1,6 @@ # core_mnet (subsystem) Upgrade notes -## 5.0beta +## 5.0rc1 ### Removed diff --git a/mod/UPGRADING.md b/mod/UPGRADING.md index 9492d5c4946..fb2a66c7240 100644 --- a/mod/UPGRADING.md +++ b/mod/UPGRADING.md @@ -1,6 +1,6 @@ # mod (plugin type) Upgrade notes -## 5.0beta +## 5.0rc1 ### Removed diff --git a/mod/assign/UPGRADING.md b/mod/assign/UPGRADING.md index 6fb993f2af2..120a59cdd76 100644 --- a/mod/assign/UPGRADING.md +++ b/mod/assign/UPGRADING.md @@ -1,6 +1,6 @@ # mod_assign Upgrade notes -## 5.0beta +## 5.0rc1 ### Added diff --git a/mod/book/UPGRADING.md b/mod/book/UPGRADING.md index c360d2886f2..68850512917 100644 --- a/mod/book/UPGRADING.md +++ b/mod/book/UPGRADING.md @@ -1,6 +1,6 @@ # mod_book Upgrade notes -## 5.0beta +## 5.0rc1 ### Deprecated diff --git a/mod/choice/UPGRADING.md b/mod/choice/UPGRADING.md index f91800c573d..1e80706a321 100644 --- a/mod/choice/UPGRADING.md +++ b/mod/choice/UPGRADING.md @@ -1,6 +1,6 @@ # mod_choice Upgrade notes -## 5.0beta +## 5.0rc1 ### Changed diff --git a/mod/data/UPGRADING.md b/mod/data/UPGRADING.md index e60d82f4c77..d226c290d06 100644 --- a/mod/data/UPGRADING.md +++ b/mod/data/UPGRADING.md @@ -1,6 +1,6 @@ # mod_data Upgrade notes -## 5.0beta +## 5.0rc1 ### Deprecated diff --git a/mod/feedback/UPGRADING.md b/mod/feedback/UPGRADING.md index 17dc5d8f394..fa9fee75496 100644 --- a/mod/feedback/UPGRADING.md +++ b/mod/feedback/UPGRADING.md @@ -1,6 +1,6 @@ # mod_feedback Upgrade notes -## 5.0beta +## 5.0rc1 ### Added diff --git a/mod/folder/UPGRADING.md b/mod/folder/UPGRADING.md index 5bf084e4275..4a8d2be2776 100644 --- a/mod/folder/UPGRADING.md +++ b/mod/folder/UPGRADING.md @@ -1,6 +1,6 @@ # mod_folder Upgrade notes -## 5.0beta +## 5.0rc1 ### Removed diff --git a/mod/h5pactivity/UPGRADING.md b/mod/h5pactivity/UPGRADING.md index a88e1ede527..98c688e9a77 100644 --- a/mod/h5pactivity/UPGRADING.md +++ b/mod/h5pactivity/UPGRADING.md @@ -1,6 +1,6 @@ # mod_h5pactivity Upgrade notes -## 5.0beta +## 5.0rc1 ### Changed diff --git a/mod/imscp/UPGRADING.md b/mod/imscp/UPGRADING.md index 27573937552..99b94d85fd0 100644 --- a/mod/imscp/UPGRADING.md +++ b/mod/imscp/UPGRADING.md @@ -1,6 +1,6 @@ # mod_imscp Upgrade notes -## 5.0beta +## 5.0rc1 ### Removed diff --git a/mod/lesson/UPGRADING.md b/mod/lesson/UPGRADING.md index 1a021c7a45c..6353a3147a7 100644 --- a/mod/lesson/UPGRADING.md +++ b/mod/lesson/UPGRADING.md @@ -1,6 +1,6 @@ # mod_lesson Upgrade notes -## 5.0beta +## 5.0rc1 ### Removed diff --git a/mod/lti/UPGRADING.md b/mod/lti/UPGRADING.md index b26ca2fcf3e..7c6f96694fc 100644 --- a/mod/lti/UPGRADING.md +++ b/mod/lti/UPGRADING.md @@ -1,6 +1,6 @@ # mod_lti Upgrade notes -## 5.0beta +## 5.0rc1 ### Removed diff --git a/mod/quiz/UPGRADING.md b/mod/quiz/UPGRADING.md index 3aed8c4af5b..7ba9abca599 100644 --- a/mod/quiz/UPGRADING.md +++ b/mod/quiz/UPGRADING.md @@ -1,6 +1,6 @@ # mod_quiz Upgrade notes -## 5.0beta +## 5.0rc1 ### Added diff --git a/mod/wiki/UPGRADING.md b/mod/wiki/UPGRADING.md index 2412450b6ef..9c219b99b56 100644 --- a/mod/wiki/UPGRADING.md +++ b/mod/wiki/UPGRADING.md @@ -1,6 +1,6 @@ # mod_wiki Upgrade notes -## 5.0beta +## 5.0rc1 ### Removed diff --git a/portfolio/UPGRADING.md b/portfolio/UPGRADING.md index 19b5f7a4d80..b44b2a7578e 100644 --- a/portfolio/UPGRADING.md +++ b/portfolio/UPGRADING.md @@ -1,6 +1,6 @@ # core_portfolio (subsystem / plugintype) Upgrade notes -## 5.0beta +## 5.0rc1 ### Removed diff --git a/question/UPGRADING.md b/question/UPGRADING.md index 331bbc62f42..65432ade1e5 100644 --- a/question/UPGRADING.md +++ b/question/UPGRADING.md @@ -1,6 +1,6 @@ # core_question (subsystem) Upgrade notes -## 5.0beta +## 5.0rc1 ### Added diff --git a/question/bank/UPGRADING.md b/question/bank/UPGRADING.md index fffa780bc34..b08d63cebd8 100644 --- a/question/bank/UPGRADING.md +++ b/question/bank/UPGRADING.md @@ -1,6 +1,6 @@ # qbank (plugin type) Upgrade notes -## 5.0beta +## 5.0rc1 ### Removed diff --git a/question/bank/bulkmove/UPGRADING.md b/question/bank/bulkmove/UPGRADING.md index bf2368389b8..8db6891f5dc 100644 --- a/question/bank/bulkmove/UPGRADING.md +++ b/question/bank/bulkmove/UPGRADING.md @@ -1,6 +1,6 @@ # qbank_bulkmove Upgrade notes -## 5.0beta +## 5.0rc1 ### Deprecated diff --git a/report/insights/UPGRADING.md b/report/insights/UPGRADING.md index 90aa9813c5e..813ad722c03 100644 --- a/report/insights/UPGRADING.md +++ b/report/insights/UPGRADING.md @@ -1,6 +1,6 @@ # report_insights Upgrade notes -## 5.0beta +## 5.0rc1 ### Removed diff --git a/report/log/UPGRADING.md b/report/log/UPGRADING.md index 43c7da2048b..67e63d00530 100644 --- a/report/log/UPGRADING.md +++ b/report/log/UPGRADING.md @@ -1,6 +1,6 @@ # report_log Upgrade notes -## 5.0beta +## 5.0rc1 ### Removed diff --git a/reportbuilder/UPGRADING.md b/reportbuilder/UPGRADING.md index 267b2f582c7..124c485f706 100644 --- a/reportbuilder/UPGRADING.md +++ b/reportbuilder/UPGRADING.md @@ -1,6 +1,6 @@ # core_reportbuilder (subsystem) Upgrade notes -## 5.0beta +## 5.0rc1 ### Added diff --git a/repository/UPGRADING.md b/repository/UPGRADING.md index c7476002137..e96187b7de3 100644 --- a/repository/UPGRADING.md +++ b/repository/UPGRADING.md @@ -1,6 +1,6 @@ # core_repository (subsystem / plugintype) Upgrade notes -## 5.0beta +## 5.0rc1 ### Removed diff --git a/sms/UPGRADING.md b/sms/UPGRADING.md index 911a45bb0be..09296b411a1 100644 --- a/sms/UPGRADING.md +++ b/sms/UPGRADING.md @@ -1,6 +1,6 @@ # core_sms (subsystem) Upgrade notes -## 5.0beta +## 5.0rc1 ### Added diff --git a/tag/UPGRADING.md b/tag/UPGRADING.md index a911d62a67e..c0fa15ad5bf 100644 --- a/tag/UPGRADING.md +++ b/tag/UPGRADING.md @@ -1,6 +1,6 @@ # core_tag (subsystem) Upgrade notes -## 5.0beta +## 5.0rc1 ### Changed diff --git a/theme/boost/UPGRADING.md b/theme/boost/UPGRADING.md index dd63c28ee0f..4b0d1e443cc 100644 --- a/theme/boost/UPGRADING.md +++ b/theme/boost/UPGRADING.md @@ -1,6 +1,6 @@ # theme_boost Upgrade notes -## 5.0beta +## 5.0rc1 ### Changed diff --git a/user/UPGRADING.md b/user/UPGRADING.md index 4d053ad0338..141af6a77bb 100644 --- a/user/UPGRADING.md +++ b/user/UPGRADING.md @@ -1,6 +1,6 @@ # core_user (subsystem) Upgrade notes -## 5.0beta +## 5.0rc1 ### Removed