Problem/Motivation
From change record https://www.drupal.org/node/3258656 we learn that parts of the feed.bridge.reader.service is deprecated.
We see this deprecation notice in Drupal\Component\Bridge\ZfExtensionManagerSfContainer
:
/**
* Defines a bridge between the Laminas service manager to Symfony container.
*
* @deprecated in drupal:9.4.0 and is removed from drupal:10.0.0. The class has
* moved to \Drupal\aggregator\ZfExtensionManagerSfContainer.
*
* @see https://www.drupal.org/node/3258656
*/
class ZfExtensionManagerSfContainer
Since this class is the only executable code in the Bridge component, we should remove the component.
Proposed resolution
Remove drupal/core-bridge.
Ensure that drupal.org infrastructure can deal with the removal of a component.