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

Function image_dimensions_scale() has been moved to a component and now lives under \Drupal\Component\Image\Image::scaleDimensions(). image_dimensions_scale() is still available, but it is marked as deprecated and it's usage is discouraged.

Usage before this change

$modified = image_dimensions_scale($dimensions, $target_width, $target_height);

if ($modified) {
  // use new dimensions.
}

After this change

use \Drupal\Component\Image\Image
;
$modified = Image::scaleDimensions($dimensions, $target_width, $target_height);

if ($modified) {
  // use new dimensions.
}
Impacts: 
Module developers
Updates Done (doc team, etc.)
Online documentation: 
Not done
Theming guide: 
Not done
Module developer documentation: 
Not done
Examples project: 
Not done
Coder Review: 
Not done
Coder Upgrade: 
Not done
Other: 
Other updates done