Change record status: 
Project: 
Introduced in branch: 
9.4.x
Introduced in version: 
9.4.0
Description: 

The feed.bridge.writer service has been deprecated and will be removed from Drupal 10.

If you are using this service you can add a new service to your module's services.yml file with the following definition:

  feed.bridge.writer:
    class: Drupal\Component\Bridge\ZfExtensionManagerSfContainer
    calls:
      - [setContainer, ['@service_container']]
      - [setStandalone, ['\Laminas\Feed\Writer\StandaloneExtensionManager']]
    arguments: ['feed.writer.']

Alternatively you could use the \Laminas\Feed\Writer\StandaloneExtensionManager class directly.

Impacts: 
Module developers