- Issue created by @mmarler
- Assigned to daddison
- πΊπΈUnited States daddison
β 1. Check for Drupal 11 code compatibility
One change required
1) web/modules/contrib/feed_block/src/EventSubscriber/FeedBlockCacheExpire.php:136 ---------- begin diff ---------- @@ @@ * @return array * An array of event listener definitions. */ - public static function getSubscribedEvents() { + public static function getSubscribedEvents(): array { $events[KernelEvents::RESPONSE][] = ['onRespond']; return $events; } ----------- end diff -----------
β 2. Check for PHP 8.3 compatibility
β 3. Check for jQuery 4 compatibility
β 4. Update core version requirements to include Drupal 11
β 5. Drop Drupal 8 and 9 support
β 6. Unit tests are updated to work with Drupal 11 (PHPUnit 10)
β 7. Automated tests pass D11 compatibilityD11 tests passed. Automated phpunit testing against Drupal 10 returned the following errors, due to this change.
1) Drupal\Tests\feed_block\FunctionalJavascript\RssTypesTest::testRss Drupal\Core\Config\Schema\SchemaIncompleteException: Schema errors for block_content.type.feed_block with the following errors: block_content.type.feed_block:revision variable type is boolean but applied schema class is Drupal\Core\TypedData\Plugin\DataType\IntegerData 2) Drupal\Tests\feed_block\FunctionalJavascript\RssTypesTest::testYouTube Drupal\Core\Config\Schema\SchemaIncompleteException: Schema errors for block_content.type.feed_block with the following errors: block_content.type.feed_block:revision variable type is boolean but applied schema class is Drupal\Core\TypedData\Plugin\DataType\IntegerData
I tested the D11-compatible code on a stock D10 site. Feed block revisions remain enabled even with boolean config value
true
, rather than1
.β 8. Change version numbering to use semantic versioning
- Status changed to Fixed
10 months ago 5:53pm 31 May 2024 Automatically closed - issue fixed for 2 weeks with no activity.