Change record status: 
Project: 
Introduced in branch: 
8.x
Description: 

_update_process_info_list() that was formerly a private function to the update module is now public with the name update_process_info_list() and it got an additional whitelist argument. This can be used to allow more .info file properties to be kept in processing. This is planned to be used in localization update in core. update_filter_project_info() also got the additional whitelist argument in concert.

Signature changes:

-function _update_process_info_list(&$projects, $list, $project_type, $status) {
+function update_process_info_list(&$projects, $list, $project_type, $status, $additional_whitelist = array()) {

-function update_filter_project_info($info) {
+function update_filter_project_info($info, $additional_whitelist = array()) {