Closed renovate[bot] closed 3 years ago
Merging #963 (adb8253) into master (ff63391) will not change coverage. The diff coverage is
n/a
.
@@ Coverage Diff @@
## master #963 +/- ##
=======================================
Coverage 88.32% 88.32%
=======================================
Files 80 80
Lines 7586 7586
Branches 2425 2425
=======================================
Hits 6700 6700
Misses 860 860
Partials 26 26
Continue to review full report at Codecov.
Legend - Click here to learn more
Δ = absolute <relative> (impact)
,ø = not affected
,? = missing data
Powered by Codecov. Last update ff63391...adb8253. Read the comment docs.
:tada: This PR is included in version 0.118.0 :tada:
The release is available on:
Your semantic-release bot :package::rocket:
This PR contains the following updates:
7.31.2
->8.0.0
Release Notes
testing-library/dom-testing-library
### [`v8.0.0`](https://togithub.com/testing-library/dom-testing-library/releases/v8.0.0) [Compare Source](https://togithub.com/testing-library/dom-testing-library/compare/v7.31.2...v8.0.0) ##### Recommendations 1. If you're using `jest` fake timers make sure you use modern timers jest 27: ```diff -jest.useFakeTimers('legacy') +jest.useFakeTimers('modern') // jest.config.js -"timers": "legacy", +"timers": "modern", ``` jest 26: ```diff -jest.useFakeTimers() +jest.useFakeTimers('modern') // jest.config.js -"timers": "legacy", +"timers": "modern", ``` ##### chore - Release v8 as stable ([#979](https://togithub.com/testing-library/dom-testing-library/issues/979)) ([d347302](https://togithub.com/testing-library/dom-testing-library/commit/d347302d6b17280b71505d55d0cb9cda376b95cc)) ##### BREAKING CHANGES - Remove deprecated `waitFormDOMChange` - Remove deprecated `waitForElement` - The `timeout` in `waitFor(callback, { interval, timeout } )` now uses the same clock as `interval`. Previously `timeout` was always using the real clock while `interval` was using the global clock which could've been mocked out. For the old behavior I'd recommend `waitFor(callback, { interval, timeout: Number.POSITIVE_INFINITY })` and rely on your test runner to timeout considering real timers. - ``, `` and comment nodes are now ignored by default in `prettyDOM` .If you whish to return to the old behavior, use a custom `filterNode` function. In this case `prettyDOM(element, { filterNode: () => true })`. - node 10 is no longer supported. It reached its end-of-life on 30.04.2021.Configuration
📅 Schedule: At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by WhiteSource Renovate. View repository job log here.