Change record status: 
Project: 
Introduced in branch: 
8.2.x
Introduced in version: 
8.2.4
Description: 

The md_entity:field_storage_config destination plugin is now deprecated - use entity:field_storage_config instead, and if the field is defined in a module other than the one containing the migration whose destination is entity:field_storage_config, add an explicit dependency on that module. For example, consider the core d6_vocabulary_field migration, which depends on the entity_reference field module.

8.0.x/8.1.x:

destination:
  plugin: md_entity:field_storage_config

8.2.x and later:

destination:
  plugin: entity:field_storage_config
  dependencies:
    module:
      - entity_reference
Impacts: 
Module developers