Install

Works with Drupal: ^8.8 || ^9

Using Composer to manage Drupal site dependencies

Alternative installation files

Download tar.gz 1014.92 KB
MD5: 69d2c9fc5276290554569093799cef66
SHA-1: ae3d3e0c748c2ea3a4fa68c49e74c9e6742a3510
SHA-256: b680e7c6efe6dc07954752a5bbd0be6fc5162fcdce95d200d179c0fe66a138d0
Download zip 1.21 MB
MD5: f1013fa4a375e758474483718fc5e6c8
SHA-1: 47b56b3d7353d900c500e74178fbdea837199394
SHA-256: 28572cd17dfaa8364be909f420ef49efcb6ee3c50ec7da52ef26ec7a55ac0ace

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

  • #3154457 by novchuk.v: Replaced assertions involving calls to is_array() with assertIsArray().

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:

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

Created by: megachriz
Created on: 12 Jul 2020 at 14:34 UTC
Last updated: 22 Jan 2021 at 10:44 UTC
Bug fixes

Other releases