Xmas Turrón
Pre-releaseImportant release today.
This version prepared the way to the 1.0.0 release. It drops ember-wormhole in favor of the built-in #-in-element construction, which is native and more performant.
Drop ember-wormhole, require Glimmer2.
This means also that this new version requires a version of Ember >= 2.10, which is the first one that uses glimmer2 underneath. Ember 2.10 was released in November 2016, so I think it's a reasonable requirement for 2018 apps. However, that haven't updated can continue to use version 0.34, as it has identical features.
Deprecate acceptance test helpers
This addon exposes two test helpers that can be registered as globals: clickDropdown and tapDropdown. Since with the new test syntax for acceptance tests proposed in RFC #268 will not support that kind of global helpers, those helpers have been deprecated in favor of explicitly importing helpers: clickTrigger and tapTrigger from 'ember-basic-dropdown/test-support/helpers', or even better, use click and tap from @ember/test-helpers.