Install
Works with Drupal: ^8.8 || ^9Using Composer to manage Drupal site dependencies
Alternative installation files
Release notes
Bugfix for autocreating terms
This releases contains a fix for a bug, introduced in 8.x-3.0-alpha7, that could result into imported taxonomy terms not being editable in the UI. Specifically it's about terms imported in the default language, via a taxonomy reference field and using the "autocreate" option.
If you experienced this issue, this are some ways to recover from it (apply only one):
- Programmatically set the langcode on the term:
$term = \Drupal\taxonomy\Entity\Term::load($term_id); $term->langcode->value = 'en'; $term->save(); - Adjust the langcode value in the database in the following tables:
- taxonomy_term_field_data
- taxonomy_term_revision
- taxonomy_term_field_revision
- Delete the term (and reimport it).
Updating from 8.x-3.0-alpha6 or earlier?
If you are updating from 8.x-3.0-alpha6 or earlier, be sure to read the release notes from 8.x-3.0-alpha7, because that release introduced some BC breaks.
Known issues
The Expire feature is broken since 8.x-3.0-alpha7.
#3193092: Expire functionality broken
Next release
The next release is expected to happen on February 4, 2021. It will introduce targets for entity ID, user password and user roles. Additionally, drush support is expected to be added.
Contributors (2)
MegaChriz, novchuk.v
Changelog
Issues: 2 issues resolved.
Changes since 8.x-3.0-alpha8:
Bug
- #3139441 by MegaChriz: Fixed autocreating terms in the "default" language makes terms not editable in the UI.
Task
Missing features
This being an alpha release means that not all features from the D7 version of Feeds have been ported yet. You may also run into some bugs.
The most notable missing features are:
- #2938505: Add UI for editing and removing custom (CSV) sources
- #3060930: Add Drush 9 commands in Feeds 8.x-3.x
- Feeds import preview
- #3116987: Don't create new items, only update existing (D8)
- Targets for several field types: media field, user password, user roles
Beta blockers and beta targets
Interested in when Feeds goes into beta phase? Check the links below.
See also #1960800: [meta] Feeds 8.x roadmap