Change record status: 
Project: 
Introduced in branch: 
8.x-5.x
Introduced in version: 
8.x-5.3
Description: 

Transliteration process plugin is deprecated in favor of generic Service plugin, that can be used for any services including transliteration.

Before:

transliteration:
  plugin: transliteration
  source: foo

After:

transliteration:
  plugin: service
  service: transliteration
  method: transliterate
  source: foo

Since Drupal 9.2.0 it is possible to supply multiple arguments using unpack_source property:

transliteration:
  plugin: service
  service: transliteration
  method: transliterate
  unpack_source: true
  source:
    - original_value
    - constants/langcode
    - constants/slash
Impacts: 
Module developers