The following code needs to be fixed:
\Drupal\Core\Render\Element\StatusMessages::generatePlaceholder
if ($element['#include_fallback']) {
to:
if (isset($element['#include_fallback']) && $element['#include_fallback']) {
This causes PHP to throw an Notice level error when the system is updated.
This will confuse site managers who are not familiar with PHP