Implement `BlockContentSelectionExtendsRector`
### Problem/Motivation Reparent entity reference selection plugins for the block_content entity type from DefaultSelection to BlockContentSelection. This avoids reliance on the deprecated block_content_query_entity_reference_alter() hook (removed in drupal:12.0.0). The rule is registered in the opt-in DRUPAL_114_BREAKING set because BlockContentSelection was added in drupal:11.4.0 and does not exist on earlier minors. ### Proposed resolution Handled automatically by drupal-rector via the `BlockContentSelectionExtendsRector` rule. ### How this rule was built This rule was produced with an AI-assisted workflow in which every step was verified manually by @bbrala. Its logic started from the matching drupal-digests entry, which was adapted to drupal-rector's conventions — a dedicated rule or an existing upstream rule configured into the Drupal 12 set — and covered with before/after test fixtures. Backward-compatibility was assessed and version-gated: safe rewrites are applied directly, while unsafe ones are wrapped via `DeprecationHelper` or moved to an opt-in breaking set. The rule was then live-tested against a set of contributed modules; where no contrib call site could be found, a static code sample was written in a test module to exercise it. A final automated QA pass covered type-guard, fixture coverage, BC-decision, registration and idempotency checks. ### References - Change record(s): [CR-3521459](https://www.drupal.org/node/3521459) - Related issue(s): [#2987159](https://www.drupal.org/i/2987159), [#2976334](https://www.drupal.org/i/2976334) ### Work items - Commit(s): [a1126c031b](https://github.com/palantirnet/drupal-rector/commit/a1126c031b6e) - Pull request(s): [PR #354](https://github.com/palantirnet/drupal-rector/pull/354) ### Credit - Implemented by: @bbrala - Reviewed / helped by: @mglaman --- *Filed retroactively as part of the Drupal 12 rector coverage effort. Closed as fixed; credit to be applied to the contributors listed above.* *AI was used extensively to build this rule and to file this issue. See [Dries Buytaert: AI-generated Rector rules for Drupal](https://dri.es/ai-generated-rector-rules-for-drupal) and [Björn Brala: Drupal Rector rules are config, not code. Mostly.](https://www.linkedin.com/pulse/drupal-rector-rules-config-code-mostly-bj%C3%B6rn-brala-vfpwe/).*
issue