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

Summary

A few migrate source plugins have been deprecated:

  • Drupal\comment\Plugin\migrate\source\d6\CommentVariable
  • Drupal\comment\Plugin\migrate\source\d6\CommentVariablePerCommentType
  • Drupal\comment\Plugin\migrate\source\d7\CommentType

The functionality in those plugins has been move in:

  • Drupal\node\Plugin\migrate\source\d6\NodeType
  • Drupal\node\Plugin\migrate\source\d7\NodeType

When migrating comment_types, comment_entity_display, comment_entity_form_display, comment_entity_form_display_subject, comment_field and comment_field_instance, we must now use the source plugins d6_node_type or d7_node_type.

Before

source:
  plugin: d6_comment_variable_per_comment_type
source:
  plugin: d6_comment_variable
source:
  plugin: d7_comment_type

After

source:
  plugin: d6_node_type
source:
  plugin: d7_node_type
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