- πΊπΈUnited States mortona2k Seattle
The RDF module was removed from core in Drupal 10. https://www.drupal.org/node/3307288 β
Is that needed for this module?
The easyrdf/easyrdf library in core needs to be updated to the soon to be released version 1.0.0.
That's a breaking change for some modules in contrib that rely on the library shipped by Drupal core.
Beginning with Drupal 9.0.0 the library has already been removed and is only a development dependency.
You must explicitly require the correct version of the library yourself in a composer.json within your module, e.g.
composer require easyrdf/easyrdf:^0.9
or
composer require easyrdf/easyrdf:^1.0.0
The current plan for Drupal 8 is, to leave the version in core at ^0.9, but allow for an update through contrib.
You should explicitly require the correct version of the library yourself in a composer.json within your module, e.g.
composer require easyrdf/easyrdf:^0.9
or
composer require easyrdf/easyrdf:^1.0.0
To be prepared for the change, please create a composer.json file within your module and require the correct version and track the related issue at https://www.drupal.org/project/drupal/issues/3110972 β
Thanks!
Active
1.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
The RDF module was removed from core in Drupal 10. https://www.drupal.org/node/3307288 β
Is that needed for this module?