with #1097560: Features incompatible with the latest version of views i noticed that i have to update my existing feature that contain views manually:

while the feature in the UI shows up as in default state, drush fd will mark it as overridden and output the following changes to being made:

< features[views_api][] = "api:3.0-alpha1"
< features[views][] = "myview"

from now on, it should be

features[ctools][] = "views:views_default:3.0"
features[views_view][] = "myview"

simple updating the .info file doesn't suffice. you also need to revisit the admin/structure/features/myfeature page. now, "drush fu myfeature" will work.

the above procedure worked for me in order to update/fix my features. of course it would be great if features or views provided an automatic upgrade path :)

Comments

kehan’s picture

worked for me too for what it's worth. drush cc all didn't work, had to visit the admin/structure/features/myfeature page

irakli’s picture

Assigned: Unassigned » irakli
Priority: Normal » Major
robertom’s picture

subscribe

dasjo’s picture

more on the features upgrade path issue when a module renamed its components: #806318: Rename Presets to Maps

zilverdistel’s picture

subscribing

q0rban’s picture

subscribe

andyzhang’s picture

subscribing

hotbizindo’s picture

Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 31457280 bytes) in /home/.../public_html/sites/all/modules/features/features.export.inc(576) : eval()'d code on line 19713

Grayside’s picture

@hotbizindo: That's an out of memory error. It would indeed be good if Features had some performance tightening. In the mean time, increase your memory limit by a several MB and it should go away.

mpotter’s picture

Status: Active » Closed (won't fix)

Closing this for lack of activity. Please re-open this issue if you can reproduce it in the latest version.