Closed (fixed)
Project:
DropzoneJS
Version:
8.x-2.0-alpha3
Component:
Code
Priority:
Major
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
10 Jan 2018 at 13:53 UTC
Updated:
20 Sep 2018 at 07:49 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #2
kevinquillen commentedSame, the update notification never goes away.
Comment #3
kevinquillen commentedHere is a screenshot of the update page.
Comment #4
kevinquillen commentedComment #5
paulmckibbenI had the same issue until I updated the following additional modules. After updating these additional modules, the dropzonejs_eb_widget update 8202 successfully applied:
media_entity: updated from 8.x-1.7 to 8.x-2.0-beta1
entity_browser: updated from 8.x-1.4 to 8.x-2.0-dev from January 9, 2018
I believe the original poster updated media_entity but did not mention updating entity_browser. I believe that was the missing piece.
I followed the media_entity update procedure listed on the project page, https://www.drupal.org/project/media_entity.
Hope this helps others.
Comment #6
kevinquillen commentedI am running a distro, I am not sure I can do that on my own yet (distro depends on it).
Comment #7
miax commentedI'm experiencing the same problem but updating entity_browser module did not solve the issue. The media_entity module is not installed on our site at all and it appears that was the issue in our case.
The update hook dependencies for media_entity was causing the problem for us and made the update not run as expected.
Adding an extra check to see if that module exist before using the dependency solves the issue and update are applied clean.
Hope this patch can help someone.
Comment #8
xrvalencia commentedMake sure your media_entity is using 8.2. Update 8202 depends on update 8201 of the media_entity module.
Comment #9
stevieb commentedpatch in #7 works thanks MickeA
Comment #10
chris burge commented#7 corrects the issue. My site doesn't have media_entity installed.
Comment #11
chris burge commentedComment #12
dkrockville commentedRef #5: I updated (with composer.json edits) to entity_browser 2.0.0-alpha2, and media_entity 2.0.0-beta2.
Update 8202 still won't run. What did I miss? Do I need to run patch #7. Any help appreciated here.
Comment #13
miax commentedIf the problem is not fixed by upgrading the modules I would suggest you to try the patch and ping pack with an update after. It will help in the review of this issue. Thanks!
Comment #14
kevinquillen commentedThe patch worked for me.
Comment #15
dkrockville commentedPatch worked for me too!
Composer remove drupal/dropzonejs drupal/dropzonejs_eb_widget
Added to composer.json:
Ran composer update:
Result:
Comment #16
leolandotan commentedI can confirm also that the patch in comment #7 works.
Basically I needed to update the site and just did a `composer update` to update core and contrib.
Core and Related Contrib Modules:
Comment #17
bserem commentedPatch in #7 works for me too, it requires the db updates to run once and then hides the message.
Moving to RTBC
Comment #18
armageddon6 commentedTrouble applying patchRe-typed command and it worked. Sorry to bug you all.
Comment #20
chr.fritschThanks everyone, I committed the patch.