There are two reason this happens:
One, ff you run Drupal\KernelTests\Core\KeyValueStore\KeyValueContentEntityStorageTest you get deprecation errors in \Drupal\Core\Entity\EntityStorageBase::mapFromStorageRecords on PHP 8.5. because key value storage is broken.
Also, if a config entity is installed without an ID this will occur.
Run \Drupal\KernelTests\Core\KeyValueStore\KeyValueContentEntityStorageTest
Run \Drupal\Tests\system\Functional\Module\UninstallTest::testFailedInstallStatus
The deprecations are triggered by the key value storage because its loadMultiple() is fundamentally broken. We have to fix this in 11.x but we could consider deprecating and removing in 12.x - see #2618436: Complete the KV content entity storage implementation β
Installing the module_installer_config_test module is supposed to fail because of a missing ID. However before it gets to \Drupal\Core\Config\Entity\ConfigEntityStorage::save() where it throws an exception it get to \Drupal\Core\Entity\EntityStorageBase::mapFromStorageRecords() where it tries to using NULL as an ID. We should throw an exception in mapFromStorageRecords() if $entity->id() is NULL - this is always unexpected.
None
N/a
None
None
N/a
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
No activities found.