emberjs/ember-qunit

Requesting a new release to be able to use qunit ^2.10.0

ventuno opened this issue · 3 comments

Would it be possible to cut a new release of ember-qunit? I'm interested the updated version of qunit ^2.10.0 which changes the way only works.

If there's anything I can help with to make the process smoother, I'd be happy to help.

cc @rwjblue - it looks like master already has the needed version, so no PR required. Just a release needed.

2.10 is already allowed by the current range, there isn't a release required for y'all to grab it. Most likely you just need to update your lock file. For example, with yarn I would usually suggest one of the following:

  1. rm yarn.lock node_modules && yarn (reroll your yarn.lock completely)
  2. yarn remove ember-qunit && yarn add ember-qunit
  3. add resolutions for "qunit": "^2.10.0", run yarn, then remove the resolution, run yarn again

There may be other / nicer ways, but these are the common ones I've used...

Good point. Closing :-).