By bradjones1 on
Change record status:
Published (View all published change records)
Project:
Introduced in branch:
10.4.x, 11.1.x
Introduced in version:
10.4.0, 11.1.0
Issue links:
Description:
Content entities may now declare UUIDs as a content entity's ID (though entity key mappings), removing the prior implicit requirement by core that all entities have separate UUIDs and IDs.
Example:
#[ContentEntityType(
id: 'my_entity_type',
entity_keys: [
'id' => 'uuid',
'label' => 'label',
'langcode' => 'langcode',
'uuid' => 'uuid',
],
...
)]
Class MyEntityType extends ContentEntityBase {
}
Impacts:
Module developers