You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The latest EmberData package (v5.3.8) is not anymore compabile with latest ember-cli version (5.12.0).
This is because ember-cli has updated all dependency to latest.
When you try to create a new app you will run immediately into an error while build.
Steps to reproduce:
ember new my-app --embroider
ember s
Error:
Some V1 ember addons are resolving as incorrect peer dependencies. This makes it impossible for us to safely convert them to v2 format.
👇 👇 👇
👉 See https://github.com/embroider-build/embroider/blob/main/docs/peer-dependency-resolution-issues.md for an explanation of the problem and suggestions for fixing it.
👆 👆 👆
[email protected] (dev)-> [email protected] -> @ember-data/[email protected]
sees peerDep @ember/[email protected]
at /home/user/projects/test/my-app/node_modules/ember-data/node_modules/@ember/string
but [email protected] is using @ember/[email protected]
at /home/user/projects/test/my-app/node_modules/@ember/string
👇 👇 👇
👉 See https://github.com/embroider-build/embroider/blob/main/docs/peer-dependency-resolution-issues.md for an explanation of the problem and suggestions for fixing it.
👆 👆 👆
Stack Trace and Error Report: /tmp/error.dump.0ff588b5e8449e76c30d9508b6ecbc5c.log
This occures because ember-data has in LTS no support for @ember/string v4.0.0
Fix
Backporting the allow of peerDependency as patch should resolve everythink for now, since ember-data is shipping next minor version
The latest EmberData package (v5.3.8) is not anymore compabile with latest
ember-cli
version (5.12.0).This is because
ember-cli
has updated all dependency to latest.When you try to create a new app you will run immediately into an error while build.
Steps to reproduce:
ember new my-app --embroider
ember s
Error:
This occures because ember-data has in LTS no support for
@ember/string
v4.0.0Fix
Backporting the allow of peerDependency as patch should resolve everythink for now, since ember-data is shipping next minor version
ember-inflector
v5 as peerDependency & latestember-inflector
v4 version #9519@ember/test-helpers
v4 as peerDependency #9525Workaroud
Apps must downgrade
@ember/string
for compatiblity or usingoverrides
to fix this issueThe text was updated successfully, but these errors were encountered: