From 818a9dd705d47e19e0fac591a4a5ddbf331259ab Mon Sep 17 00:00:00 2001 From: Michal Kleiner Date: Mon, 13 Dec 2021 21:18:11 +1300 Subject: [PATCH] MNT Mention CoreKernel protected variable name fix in the 4.11 changelog --- docs/en/04_Changelogs/4.11.0.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/en/04_Changelogs/4.11.0.md b/docs/en/04_Changelogs/4.11.0.md index 5f32ee96e..6946d1175 100644 --- a/docs/en/04_Changelogs/4.11.0.md +++ b/docs/en/04_Changelogs/4.11.0.md @@ -6,6 +6,7 @@ - [Dropping support for PHP 7.3](#phpeol) - [Features and enhancements](#features-and-enhancements) - [Bugfixes](#bugfixes) +- [Internal API changes](#internal-api-changes) ## Regression test and Security audit{#audit} @@ -25,6 +26,10 @@ In accordance with our [PHP support policy](/Getting_Started/Server_Requirements This release includes a number of bug fixes to improve a broad range of areas. Check the change logs for full details of these fixes split by module. Thank you to the community members that helped contribute these fixes as part of the release! +## Internal API changes {#internal-api-changes} + + - Fixed typo in `SilverStripe\Core\CoreKernel` protected variable `$enviroment`, now `$environment`. + If you've extended CoreKernel and not using the appropriate getter/setter methods, please update your code.