I’m encountering the error in the title after attempting to update an Ember app from 3.26 to 3.28 (as well as updating Node 14 → 16). All the advice I can find says to update ember-basic-dropdown or its dependent, ember-power-select; however, that has not fixed it for me. In fact, if I remove ember-basic-dropdown and ember-power-select entirely (they are no longer present in yarn.lock & I recreate node_modules), the error persists.
Any ideas for how to fix this error or gather more info? The error’s log file does not single out any particular package or line of code.
1 Like
Make sure you check your package manager lock file for any other versions of ember-basic-dropdown (or power select). There are other addons that use basic dropdown and could be installing an older version as well.
If you find that another addon is using ember-basic-dropdown at a version that is too low you can either update that addon also (in fact when you upgrade it’s a good idea to pre-emptively update your other addons) or use something like overrides to force it to the newer version.
If not, I’d try updating all your other addons to the newest 3.28 compatible versions, and you probably also want to update Node to 18 also though I doubt that’s the cause of this issue
I think I’ve fixed it (or at least moved on to a different error) by upgrading ember-ast-hot-load to 3.0: issue.
Google and stackoverflow search were not powerful enough to find this, but GitHub’s global search worked like a charm (with quotes - otherwise you get the Bee Movie opening).
I’d try updating all your other addons to the newest 3.28 compatible versions
Thanks, I believe this would have arrived at the same solution, we just have an intimidating number of addons…
Ha yeah i know how that goes, glad you got it working (or at least one step closer)!
1 Like