Skip to content
Snippets Groups Projects
Verified Commit 9b73314e authored by Dave Long's avatar Dave Long
Browse files

Issue #3401730 by kim.pepper, smustgrave, longwave: Add default autoconfigure...

Issue #3401730 by kim.pepper, smustgrave, longwave: Add default autoconfigure to all *.services.yml and remove event_subscriber tags
parent 0e38c5f4
No related branches found
No related tags found
27 merge requests!12227Issue #3181946 by jonmcl, mglaman,!8528Issue #3456871 by Tim Bozeman: Support NULL services,!3878Removed unused condition head title for views,!38582585169-10.1.x,!3818Issue #2140179: $entity->original gets stale between updates,!3742Issue #3328429: Create item list field formatter for displaying ordered and unordered lists,!3731Claro: role=button on status report items,!3668Resolve #3347842 "Deprecate the trusted",!3651Issue #3347736: Create new SDC component for Olivero (header-search),!3531Issue #3336994: StringFormatter always displays links to entity even if the user in context does not have access,!3478Issue #3337882: Deleted menus are not removed from content type config,!3355Issue #3209129: Scrolling problems when adding a block via layout builder,!3226Issue #2987537: Custom menu link entity type should not declare "bundle" entity key,!3154Fixes #2987987 - CSRF token validation broken on routes with optional parameters.,!3133core/modules/system/css/components/hidden.module.css,!2964Issue #2865710 : Dependencies from only one instance of a widget are used in display modes,!2812Issue #3312049: [Followup] Fix Drupal.Commenting.FunctionComment.MissingReturnType returns for NULL,!2378Issue #2875033: Optimize joins and table selection in SQL entity query implementation,!2334Issue #3228209: Add hasRole() method to AccountInterface,!2062Issue #3246454: Add weekly granularity to views date sort,!1105Issue #3025039: New non translatable field on translatable content throws error,!1073issue #3191727: Focus states on mobile second level navigation items fixed,!10223132456: Fix issue where views instances are emptied before an ajax request is complete,!877Issue #2708101: Default value for link text is not saved,!579Issue #2230909: Simple decimals fail to pass validation,!560Move callback classRemove outside of the loop,!555Issue #3202493
Pipeline #97532 canceled
Pipeline: drupal

#97533

    Showing
    with 40 additions and 48 deletions
    services:
    _defaults:
    autoconfigure: true
    automated_cron.subscriber:
    class: Drupal\automated_cron\EventSubscriber\AutomatedCron
    arguments: ['@cron', '@config.factory', '@state']
    tags:
    - { name: event_subscriber }
    services:
    _defaults:
    autoconfigure: true
    html_response.big_pipe_subscriber:
    class: Drupal\big_pipe\EventSubscriber\HtmlResponseBigPipeSubscriber
    tags:
    - { name: event_subscriber }
    arguments: ['@big_pipe']
    placeholder_strategy.big_pipe:
    class: Drupal\big_pipe\Render\Placeholder\BigPipeStrategy
    ......@@ -21,8 +21,6 @@ services:
    route_subscriber.no_big_pipe:
    class: Drupal\big_pipe\EventSubscriber\NoBigPipeRouteAlterSubscriber
    tags:
    - { name: event_subscriber }
    http_middleware.big_pipe:
    class: \Drupal\big_pipe\StackMiddleware\ContentLength
    tags:
    ......
    services:
    _defaults:
    autoconfigure: true
    big_pipe_test_subscriber:
    class: Drupal\big_pipe_test\EventSubscriber\BigPipeTestSubscriber
    tags:
    - { name: event_subscriber }
    services:
    _defaults:
    autoconfigure: true
    theme.negotiator.block.admin_demo:
    class: Drupal\block\Theme\AdminDemoNegotiator
    tags:
    - { name: theme_negotiator, priority: 1000 }
    block.page_display_variant_subscriber:
    class: Drupal\block\EventSubscriber\BlockPageDisplayVariantSubscriber
    tags:
    - { name: event_subscriber }
    block.repository:
    class: Drupal\block\BlockRepository
    arguments: ['@entity_type.manager', '@theme.manager', '@context.handler']
    ......
    services:
    _defaults:
    autoconfigure: true
    block_content.uuid_lookup:
    class: \Drupal\block_content\BlockContentUuidLookup
    arguments: ['@cache.bootstrap', '@lock', '@entity_type.manager']
    ......@@ -7,5 +9,3 @@ services:
    block_content.bc_subscriber:
    class: Drupal\block_content\Routing\RouteSubscriber
    arguments: ['@entity_type.manager', '@module_handler']
    tags:
    - { name: event_subscriber }
    services:
    _defaults:
    autoconfigure: true
    plugin.manager.ckeditor5.plugin:
    class: Drupal\ckeditor5\Plugin\CKEditor5PluginManager
    parent: default_plugin_manager
    ......@@ -26,8 +28,6 @@ services:
    ckeditor5.ckeditor5_cache_tag:
    class: Drupal\ckeditor5\EventSubscriber\CKEditor5CacheTag
    arguments: ['@cache_tags.invalidator']
    tags:
    - { name: event_subscriber }
    logger.channel.ckeditor5:
    parent: logger.channel_base
    arguments: [ 'ckeditor5' ]
    services:
    _defaults:
    autoconfigure: true
    config.config_subscriber:
    class: Drupal\config\ConfigSubscriber
    tags:
    - { name: event_subscriber }
    services:
    _defaults:
    autoconfigure: true
    config_collection_install_test.event_subscriber:
    class: Drupal\config_collection_install_test\EventSubscriber
    arguments: ['@state']
    tags:
    - { name: event_subscriber }
    services:
    _defaults:
    autoconfigure: true
    config_events_test.event_subscriber:
    class: Drupal\config_events_test\EventSubscriber
    arguments: ['@state']
    tags:
    - { name: event_subscriber }
    services:
    _defaults:
    autoconfigure: true
    config_import_test.event_subscriber:
    class: Drupal\config_import_test\EventSubscriber
    tags:
    - { name: event_subscriber }
    arguments: ['@state']
    services:
    _defaults:
    autoconfigure: true
    config_transformer_test.event_subscriber:
    class: Drupal\config_transformer_test\EventSubscriber
    arguments: ['@config.storage', '@config.storage.sync', '@state']
    tags:
    - { name: event_subscriber }
    services:
    _defaults:
    autoconfigure: true
    config_translation.route_subscriber:
    class: Drupal\config_translation\Routing\RouteSubscriber
    arguments: ['@plugin.manager.config_translation.mapper']
    tags:
    - { name: event_subscriber }
    config_translation.access.overview:
    class: Drupal\config_translation\Access\ConfigTranslationOverviewAccess
    ......
    services:
    _defaults:
    autoconfigure: true
    config_translation_test_event_subscriber:
    class: Drupal\config_translation_test\EventSubscriber\ConfigTranslationTestSubscriber
    tags:
    - {name: event_subscriber}
    services:
    _defaults:
    autoconfigure: true
    content_moderation.state_transition_validation:
    class: Drupal\content_moderation\StateTransitionValidation
    arguments: ['@content_moderation.moderation_information']
    ......@@ -15,15 +17,9 @@ services:
    content_moderation.config_import_subscriber:
    class: Drupal\content_moderation\EventSubscriber\ConfigImportSubscriber
    arguments: ['@config.manager', '@entity_type.manager']
    tags:
    - { name: event_subscriber }
    content_moderation.route_subscriber:
    class: Drupal\content_moderation\Routing\ContentModerationRouteSubscriber
    arguments: ['@entity_type.manager']
    tags:
    - { name: event_subscriber }
    content_moderation.workspace_subscriber:
    class: Drupal\content_moderation\EventSubscriber\WorkspaceSubscriber
    arguments: ['@entity_type.manager', '@?workspaces.association']
    tags:
    - { name: event_subscriber }
    services:
    _defaults:
    autoconfigure: true
    content_translation.synchronizer:
    class: Drupal\content_translation\FieldTranslationSynchronizer
    arguments: ['@entity_type.manager', '@plugin.manager.field.field_type']
    ......@@ -7,8 +9,6 @@ services:
    content_translation.subscriber:
    class: Drupal\content_translation\Routing\ContentTranslationRouteSubscriber
    arguments: ['@content_translation.manager']
    tags:
    - { name: event_subscriber }
    content_translation.delete_access:
    class: Drupal\content_translation\Access\ContentTranslationDeleteAccess
    ......
    services:
    _defaults:
    autoconfigure: true
    cache.dynamic_page_cache:
    class: Drupal\Core\Cache\CacheBackendInterface
    tags:
    ......@@ -12,8 +14,6 @@ services:
    dynamic_page_cache_subscriber:
    class: Drupal\dynamic_page_cache\EventSubscriber\DynamicPageCacheSubscriber
    arguments: ['@dynamic_page_cache_request_policy', '@dynamic_page_cache_response_policy', '@variation_cache.dynamic_page_cache', '@cache_contexts_manager', '%renderer.config%']
    tags:
    - { name: event_subscriber }
    # Request & response policies.
    dynamic_page_cache_request_policy:
    ......
    services:
    _defaults:
    autoconfigure: true
    plugin.manager.editor:
    class: Drupal\editor\Plugin\EditorManager
    parent: default_plugin_manager
    ......@@ -9,5 +11,3 @@ services:
    editor.config_translation_mapper_subscriber:
    class: Drupal\editor\EventSubscriber\EditorConfigTranslationSubscriber
    arguments: ['@config.factory']
    tags:
    - {name: event_subscriber}
    services:
    _defaults:
    autoconfigure: true
    field_ui.subscriber:
    class: Drupal\field_ui\Routing\RouteSubscriber
    arguments: ['@entity_type.manager']
    tags:
    - { name: event_subscriber }
    access_check.field_ui.view_mode:
    class: Drupal\field_ui\Access\ViewModeAccessCheck
    arguments: ['@entity_type.manager']
    ......
    services:
    _defaults:
    autoconfigure: true
    file.event.subscriber:
    class: Drupal\file\EventSubscriber\FileEventSubscriber
    arguments: ['@config.factory', '@transliteration', '@language_manager']
    tags:
    - { name: event_subscriber }
    file.usage:
    class: Drupal\file\FileUsage\DatabaseFileUsageBackend
    arguments: ['@config.factory', '@database', 'file_usage']
    ......
    services:
    _defaults:
    autoconfigure: true
    file_validation_test_subscriber:
    class: Drupal\file_validator_test\EventSubscriber\FileValidationTestSubscriber
    tags:
    - { name: event_subscriber }
    file_validation_sanitization_subscriber:
    class: Drupal\file_validator_test\EventSubscriber\FileSanitizationEventSubscriber
    tags:
    - {name: event_subscriber}
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Please register or to comment