-
-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update manager capabilities to 3.22 to fix deprecation in Ember 3.26 #33
Update manager capabilities to 3.22 to fix deprecation in Ember 3.26 #33
Conversation
addon/modifiers/did-insert.js
Outdated
@@ -46,7 +46,7 @@ import { setModifierManager, capabilities } from '@ember/modifier'; | |||
*/ | |||
export default setModifierManager( | |||
() => ({ | |||
capabilities: capabilities('3.13', { disableAutoTracking: true }), | |||
capabilities: capabilities('3.22', { disableAutoTracking: true }), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Needs to use gte
to use the capabilities as available by Ember version
See #25 (review)
Same here :) @cibernox would you be able to address the PR review here? |
I missed the feedback completely on this one. I just fixed it. |
3af6ba6
to
d3d4d16
Compare
53cefc8
to
6df898b
Compare
Not sure why did-update is failing for ember 3.24+ |
@cibernox, probably related to autotracking. |
That's also what we did in ember-render-helpers. |
@simonihmig Is there anything remaining to get this merged? |
Well, I am neither the author nor one of the maintainers, so it's not really up to me! 🙂 |
Whoops! I'll see if i can look at that test scenario later. The deprecation warnings are getting pretty intense :) |
eed06eb
to
e3574ed
Compare
@rwjblue I had to pass Tests continue to hang forever in release / beta / canary without anything being logged. I recall IE11 being to blame on this, but I removed it from the targets and it's still hanging. Any idea what might be causing it? |
Hi @cibernox thanks for working on this - have you made any progress on the remaining tests failing? |
@cibernox why the switch from |
@@ -20,13 +20,13 @@ jobs: | |||
with: | |||
node-version: 10.x | |||
- name: install dependencies | |||
run: yarn install | |||
run: npm install |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think we should need to switch from yarn to npm here, right?
@rwwagner90 I'm a bit short of time right now to push thing forward, maybe someone can take over where I left? Tests were hanging forever and I don't recall the reason (or even if I knew the reason at some point) |
Awesome, thank you so much! |
This is flooding my logs with thousands of warnings when using ember beta (currently 3.26).