Skip to content

Commit

Permalink
Release: 15.0.0 (#1295)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Minimum supported Node.js version is 18.0
BREAKING CHANGE: New version of `@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.
  • Loading branch information
MatanBobi committed Apr 10, 2024
1 parent 9c4a46d commit 787cb85
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .codesandbox/ci.json
@@ -1,5 +1,5 @@
{
"installCommand": "install:csb",
"sandboxes": ["new", "github/kentcdodds/react-testing-library-examples"],
"node": "14"
"node": "18"
}
2 changes: 1 addition & 1 deletion .github/workflows/validate.yml
Expand Up @@ -29,7 +29,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node: [14, 16, 18]
node: [18, 20]
react: ['18.x', latest, canary, experimental]
runs-on: ubuntu-latest
steps:
Expand Down
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -6,7 +6,7 @@
"types": "types/index.d.ts",
"module": "dist/@testing-library/react.esm.js",
"engines": {
"node": ">=14"
"node": ">=18"
},
"scripts": {
"prebuild": "rimraf dist",
Expand Down Expand Up @@ -46,7 +46,7 @@
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.12.5",
"@testing-library/dom": "^9.0.0",
"@testing-library/dom": "^10.0.0",
"@types/react-dom": "^18.0.0"
},
"devDependencies": {
Expand Down

0 comments on commit 787cb85

Please sign in to comment.