-
Notifications
You must be signed in to change notification settings - Fork 24
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
fix: add ember-data version check to check if calling .toArray
on ember-data arrays is deprecated
#2525
Conversation
…mber-data arrays is deprecated
05c18b9
to
67baab6
Compare
c992ed2
to
4c90e8f
Compare
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.
The changes in the lockfile seem very weird and don't make any sense to me. Could you reset the lockfile to main
and run pnpm i
again?
24d83e2
to
1deb79c
Compare
1deb79c
to
75f3762
Compare
I had to downgrade my pnpm to 8.6.0 (I was on 8.8.0 before). Now the lockfile looks right. |
# [12.6.0](v12.5.0...v12.6.0) (2023-11-06) ### Bug Fixes * add ember-data version check to check if calling `.toArray` on ember-data arrays is deprecated ([#2525](#2525)) ([a719961](a719961)) ### Features * **distribution:** pass distribution to abilities functions ([#2538](#2538)) ([1cf1593](1cf1593)) * enable single- and multiple-choice questions in the inquiry preview ([8c97c44](8c97c44))
🎉 This PR is included in version 12.6.0 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
Calling
.toArray
on ember-data arrays is deprecated since[email protected]
. Therefore we make the.toArray
call conditional.