-
Notifications
You must be signed in to change notification settings - Fork 153
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 Cypress peer dependency to 13 #259
Conversation
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.
LGTM
@NicholasBoll any thoughts on getting this merged by the team? It's blocking upgrades to Cypress 13 for anyone who uses Cypress Testing Library. |
We are waiting on this fix as well for our upgrade to Cypress 13 |
Note that if you're running into issues with cypress-io/github-action , you can temporarily work around it by overriding the install command in the workflow file to ignore peer deps in the
|
For the time being, you might as well override the peer dependency in your root {
"devDependencies": {
"@testing-library/cypress": "9.0.0",
"cypress": "13.1.0"
},
"overrides": {
"@testing-library/cypress": {
"cypress": "^13.0.0"
}
}
} Dependency tree: npm list
cyp-test-foo@ /home/istr/cyp-test-foo
├── @testing-library/cypress@9.0.0 overridden
└── cypress@13.1.0 overridden |
Hey team, any blockers on this front? Is there anything we can do to help move this update along? |
Is this moving forwards? |
@NicholasBoll @kentcdodds is anything holding this up from being merged? It's preventing people from upgrading to Cypress 13 if they use your package. |
Also hit this problem after upgrading to Cypress v13. |
Thank you @kentcdodds!! |
🎉 This PR is included in version 10.0.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Thanks for merging :) |
Hi! Let me know if you want to wait until closer to release to merge this, I just wanted to flag that 13 is coming, I do not have a definitive release date. I have seen no problems with Testing Library in the pre-release of the new version and there's nothing that seems like it would cause a problem. Just wanted to let you know that a new major is coming soon-ish.
What:
Cypress 13 is coming soon, it will include some breaking changes to Cypress but nothing that breaks Cypress Testing Library.
Why:
Avoid peer dependency warnings when people upgrade.
How:
Checklist: