RemoveViewsRowCacheKeysRector

Remove deprecated CachePluginBase::getRowCacheKeys() and getRowId() calls and array item values

-['keys' => $cache_plugin->getRowCacheKeys($row), 'tags' => []]
+['tags' => []]

Configure your rector.php:

<?php

use DrupalRector\Drupal11\Rector\Deprecation\RemoveViewsRowCacheKeysRector;
use Rector\Config\RectorConfig;

return RectorConfig::configure()
    ->withRules([
        RemoveViewsRowCacheKeysRector::class,
    ]);

Other rules in the drupal/core 11.4 set