-
Notifications
You must be signed in to change notification settings - Fork 155
Release Beta #122
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
Release Beta #122
Conversation
.gitignore
Outdated
|
||
# cypress recordings during a test run are temporary files | ||
/cypress/videos/ | ||
/cypress/screenshots/ |
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.
👍
package.json
Outdated
"license": "MIT", | ||
"dependencies": { | ||
"@babel/runtime": "^7.8.4", | ||
"@testing-library/dom": "^6.15.0", | ||
"@testing-library/dom": "beta", |
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.
Curious what this will do? This is being merged into master
, but uses the beta
npm tag for @testing-library/dom
?
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'll make sure to update this when the beta is stable before we merge this 👍
I'm preparing to release the beta of |
Perhaps removing |
I'm actually ok with that. Should we just ditch the idea of deprecation messages? |
I fixed the deprecation PR. It was a change to chai around |
BREAKING CHANGE: This updates @testing-library/dom, please check the changelog for the most recent version of that package to know whether you are impacted by these changes.
Closes #113 BREAKING CHANGE: Node 10 or greater is now required to use this package
BREAKING CHANGE: Remove `query*` queries. Throw an error instead. Fixing requires updating all `query*` to `find*` queries. In practice this means replacing `cy.query` with `cy.find` BREAKING CHANGE: Remove fallback that retries chaiined query that assumes no previous subject. In practice this means starting new chains if no previous subject is required. ```js // Before cy.findByText('Foo') .click() .findByText('Bar') // Element with 'Bar' text is not a child of an element with 'Foo' text .click() // After cy.findByText('Foo') .click() cy.findByText('Bar') .click() ```
🎉 This PR is included in version 6.0.0 🎉 The release is available on:
Your semantic-release bot 📦🚀 |
What: Release the beta branch
Why: To drop node 8 and update to the latest of
@testing-library/dom
How: Simple changes
Checklist: