-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
[BUGFIX beta] Use @ember/ordered-set to avoid deprecations. #5372
[BUGFIX beta] Use @ember/ordered-set to avoid deprecations. #5372
Conversation
Ember will deprecate usage of `Ember.OrderedSet` (likely in 3.2 or 3.3), and as part of that process the implementation has been extracted to an addon `@ember/ordered-set`. The addon intelligently avoids shipping duplicated implementations, and is compatible with newer _and_ older Ember versions.
I encounter this warning when building the app: |
@sly7-7 do you have |
Maybe I missed adding it as an external to the roll up part of the build? |
Should have gone in this list: Line 180 in dc25232
😭 sorry |
I encounter this warning when building the app: |
That warning is fixed by #5383. Looks like I missed cherry-picking that commit into the 3.1 release. I'll release a 3.1.1 patch tomorrow with that fix. |
Ember Data 3.1.1 has been published with a fix for this warning. |
@bmac Yes it is fixed again. Thanks! |
This deprecation seems to be raised in 3.3.1 as well. |
Ember will deprecate usage of
Ember.OrderedSet
(likely in 3.2 or 3.3), and as part of that process the implementation has been extracted to an addon@ember/ordered-set
. The addon intelligently avoids shipping duplicated implementations, and is compatible with newer and older Ember versions.Closes #5254