chore(deps): update dependency @testing-library/react to v16 #3340
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
8.0.0
->16.3.0
Release Notes
testing-library/react-testing-library (@testing-library/react)
v16.3.0
Compare Source
Features
v16.2.0
Compare Source
Features
v16.1.0
Compare Source
Features
v16.0.1
Compare Source
Bug Fixes
v16.0.0
Compare Source
Features
@testing-library/dom
and@types/react-dom
to peer dependencies (#1305) (a4744fa)BREAKING CHANGES
@testing-library/dom
was moved to a peer dependency and needs to be explicitly installed. This reduces the chance of having conflicting versions of@testing-library/dom
installed that frequently caused bugs when used with@testing-library/user-event
. We will also be able to allow new versions of@testing-library/dom
being used without a SemVer major release of@testing-library/react
by just widening the peer dependency.@types/react-dom
needs to be installed if you're typechecking files using@testing-library/react
.v15.0.7
Compare Source
Bug Fixes
act
is notany
whenReact.act
is not declared (#1323) (c1f2957)v15.0.6
Compare Source
Bug Fixes
v15.0.5
Compare Source
Bug Fixes
container
option based onhydrate
(#1313) (d143f46)v15.0.4
Compare Source
Bug Fixes
renderHook
options extend options forrender
(#1308) (48282c2)v15.0.3
Compare Source
Bug Fixes
document
(#1304) (067d0c6)v15.0.2
Compare Source
Bug Fixes
legacyRoot
error message (#1301) (c63b873)v15.0.1
Compare Source
Bug Fixes
v15.0.0
Compare Source
Release
BREAKING CHANGES
@testing-library/dom
changes various roles. Check out the changed tests in testing-library/dom-testing-library@2c57055 to get an overview about what changed.v14.3.1
Compare Source
Bug Fixes
v14.3.0
Compare Source
Features
v14.2.2
Compare Source
Bug Fixes
v14.2.1
Compare Source
Bug Fixes
v14.2.0
Compare Source
Features
reactStrictMode
option to enable strict mode render (#1241) (0880eba)v14.1.2
Compare Source
Bug Fixes
v14.1.1
Compare Source
Bug Fixes
v14.1.0
Compare Source
Features
v14.0.0
Compare Source
Bug Fixes
Features
@testing-library/dom
to 9.0.0 (#1177) (6653c23)BREAKING CHANGES
v13.4.0
Compare Source
Features
v13.3.0
Compare Source
Features
globalThis
if available (#1070) (c80809a)v13.2.0
Compare Source
Features
v13.1.1
Compare Source
Bug Fixes
v13.1.0
Compare Source
Features
renderHook
(#991) (9535eff)v13.0.1
Compare Source
Bug Fixes
v13.0.0
Compare Source
Features
BREAKING CHANGES
createRoot
API by default which comes with a set of changes while also enabling support for concurrent features.To opt-out of this change you can use
render(ui, { legacyRoot: true } )
. But be aware that the legacy root API is deprecated in React 18 and its usage will trigger console warnings.v12.1.5
Compare Source
Bug Fixes
v12.1.4
Compare Source
Bug Fixes
v12.1.3
Compare Source
Bug Fixes
@types/react-dom
as a direct dependency (#1001) (149d9a9)v12.1.2
Compare Source
Bug Fixes
v12.1.1
Compare Source
Bug Fixes
v12.1.0
Compare Source
Features
v12.0.0
Compare Source
Bug Fixes
Features
BREAKING CHANGES
@testing-library/dom
to 8.0.0. Please check out the@testing-library/[email protected]
release page for a detailed list of breaking changes.v11.2.7
Compare Source
Bug Fixes
process
not being defined (#911) (8a1c8e9)v11.2.6
Compare Source
Bug Fixes
v11.2.5
Compare Source
Bug Fixes
v11.2.4
Compare Source
Bug Fixes
v11.2.3
Compare Source
Bug Fixes
void
(#857) (1389f09)v11.2.2
Compare Source
Bug Fixes
v11.2.1
Compare Source
Bug Fixes
v11.2.0
Compare Source
Features
v11.1.2
Compare Source
Bug Fixes
v11.1.1
Compare Source
Bug Fixes
v11.1.0
Compare Source
Features
v11.0.4
Compare Source
Bug Fixes
v11.0.3
Compare Source
Bug Fixes
v11.0.2
Compare Source
Bug Fixes
v11.0.1
Compare Source
Bug Fixes
v11.0.0
Compare Source
Features
BREAKING CHANGES
act
.v10.4.9
Compare Source
Bug Fixes
v10.4.8
Compare Source
Bug Fixes
v10.4.7
Compare Source
Bug Fixes
v10.4.6
Compare Source
Bug Fixes
v10.4.5
Compare Source
Bug Fixes
v10.4.4
Compare Source
Bug Fixes
v10.4.3
Compare Source
Bug Fixes
v10.4.2
Compare Source
Bug Fixes
v10.4.1
Compare Source
Bug Fixes
v10.4.0
Compare Source
Features
Latest DOM Testing Library release page: https://github.com/testing-library/dom-testing-library/releases/tag/v7.17.0
The big feature is fake timers working with async utils out of the box
v10.3.0
Compare Source
Features
v10.2.1
Compare Source
Bug Fixes
v10.2.0
Compare Source
Features
v10.1.0
Compare Source
Features
v10.0.6
Compare Source
Bug Fixes
v10.0.5
Compare Source
Bug Fixes
fireEvent
to be wrapped in act (#685) (6147830)v10.0.4
Compare Source
Bug Fixes
v10.0.3
Compare Source
Bug Fixes
v10.0.2
Compare Source
Bug Fixes
v10.0.1
Compare Source
Bug Fixes
v10.0.0
Compare Source
Features
@testing-library/dom
(435098c)BREAKING CHANGES
Update DOM Testing Library
The latest version of DOM Testing Library has several breaking changes you will want to review the changelog of DOM Testing Library v7.0.0 to ensure you are unaffected.
Drop Node 8
Node 10 or greater is required. Node 8 is out of LTS (#576) (fccc2cf), closes #575
remove deprecated
cleanup-after-each.js
This file which did nothing but log a warning to the console (#598) (7942f68)
As a general reminder, you should NOT need to use
cleanup
at all as this is done automatically for you (unless you're using@testing-library/react/pure
in which case you know what you're doing... keep usingcleanup
).v9.5.0
Compare Source
Features
v9.4.1
Compare Source
Bug Fixes
v9.4.0
Compare Source
Features
v9.3.3
Compare Source
Bug Fixes
v9.3.2
Compare Source
Bug Fixes
v9.3.1
Compare Source
Bug Fixes
v9.3.0
Compare Source
Features
v9.2.0
Compare Source
Features
v9.1.4
Compare Source
Bug Fixes
v9.1.3
Compare Source
Bug Fixes
v9.1.2
Compare Source
Bug Fixes
v9.1.1
Compare Source
Bug Fixes
v9.1.0
Compare Source
Features
v9.0.2
Compare Source
Bug Fixes
v9.0.1
Compare Source
Bug Fixes
v9.0.0
Compare Source
Features
BREAKING CHANGES
debugDOM
before, useprettyDOM
instead. Note thatdebugDOM
is different fromdebug
which you get back fromrender
. That is unchanged.RTL_SKIP_AUTO_CLEANUP
set totrue
or import@testing-library/react/pure
instead of@testing-library/react
.import '@​testing-library/react/cleanup-after-each'
then you need to remove that. It's happening automatically now.v8.0.9
Compare Source
Bug Fixes
v8.0.8
Compare Source
Bug Fixes
v8.0.7
Compare Source
Bug Fixes
v8.0.6
Compare Source
Bug Fixes
v8.0.5
Compare Source
Bug Fixes
v8.0.4
Compare Source
Bug Fixes
Queries
from @testing-library/dom (#398) (a51a86b)v8.0.3
Compare Source
Bug Fixes
Queries
interface (#396) (566dd15)v8.0.2
Compare Source
Bug Fixes
v8.0.1
Compare Source
Bug Fixes
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Never, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.