By grimreaper on
Change record status:
Published (View all published change records)
Project:
Introduced in branch:
8.x-1.x
Introduced in version:
8.x-1.4
Issue links:
Description:
In the context of creating consistency across UI Suite ecosystem:
#3332278: Group and sorting improvements
#3328272: Group patterns in /patterns and select lists
#3332277: Group and sorting improvements
The order of the arguments of the plugin.manager.ui_styles service had been updated to reflect Core default plugin manager.
If you override the default Style plugin manager service and overrides the constructor, you will have to update your code, otherwise no change needed.
Before:
services:
plugin.manager.ui_styles:
class: Drupal\ui_styles\StylePluginManager
arguments:
- '@module_handler'
- '@theme_handler'
- '@cache.discovery'
- '@transliteration'
After:
services:
plugin.manager.ui_styles:
class: Drupal\ui_styles\StylePluginManager
arguments:
- '@cache.discovery'
- '@module_handler'
- '@theme_handler'
- '@transliteration'
Impacts:
Module developers
Themers