Just an update for others that run into this issue. The warnings can be suppressed by making a change to your wp-config.php file.
Replace this line from your wp-config.php file:
define('WP_DEBUG', false);
with:
ini_set('display_errors','Off');
ini_set('error_reporting', E_ALL );
define('WP_DEBUG', false);
define('WP_DEBUG_DISPLAY', false);