Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
0408e91
wip: replace basic types
mdjastrzebski Jan 1, 2026
7d3dbfa
remove concurrentRoot
mdjastrzebski Jan 1, 2026
d1eae83
wip: remove TestRendererOptions
mdjastrzebski Jan 1, 2026
4862d40
remove stringValidation
mdjastrzebski Jan 1, 2026
49cd8b0
refactor UNSAFE_root
mdjastrzebski Jan 1, 2026
3dd82aa
remove unsafe queries
mdjastrzebski Jan 1, 2026
8fd62b8
remove UNSAFE_* queries
mdjastrzebski Jan 1, 2026
e10f752
fix rest types
mdjastrzebski Jan 1, 2026
11b58f0
disable ensure peer deps
mdjastrzebski Jan 1, 2026
80d3fa0
recreate snapshots
mdjastrzebski Jan 1, 2026
ef3f5ca
remove getHostParent
mdjastrzebski Jan 1, 2026
519000c
remove getHostChildren
mdjastrzebski Jan 1, 2026
c82b906
refactor component tree & fire event
mdjastrzebski Jan 2, 2026
d7c83fd
migrate fire event
mdjastrzebski Jan 2, 2026
666492c
fix remaining tests
mdjastrzebski Jan 2, 2026
2a7f330
fix lint
mdjastrzebski Jan 2, 2026
a5c106c
flatten testGateReact19
mdjastrzebski Jan 2, 2026
a47f134
clone 14 docs
mdjastrzebski Jan 2, 2026
146a64f
naming tweaks
mdjastrzebski Jan 2, 2026
cf26b90
chore: use UTR findAll
mdjastrzebski Jan 2, 2026
9b95bd5
reduce toJSON usage
mdjastrzebski Jan 2, 2026
d963ff6
migrate to queryAll
mdjastrzebski Jan 2, 2026
1ccb8f7
v14
mdjastrzebski Jan 2, 2026
a29824d
fix lint
mdjastrzebski Jan 2, 2026
69d0a15
chore: release v14.0.0-alpha.2
mdjastrzebski Jan 2, 2026
79e5477
yarn.lock
mdjastrzebski Jan 2, 2026
33dc866
smarter toJSON output
mdjastrzebski Jan 2, 2026
e93af81
chore: release v14.0.0-alpha.3
mdjastrzebski Jan 2, 2026
c4cedd8
chore: CI validate react version tests (#1842)
mdjastrzebski Jan 4, 2026
aba244f
refactor: make `renderHook` async be default (v2) (#1843)
mdjastrzebski Jan 4, 2026
6642caa
chore: release v14.0.0-alpha.4
mdjastrzebski Jan 4, 2026
482875d
refactor: make `fireEvent` async by default (#1844)
mdjastrzebski Jan 4, 2026
f534aa7
[v14] refactor: remove flow types (#1845)
mdjastrzebski Jan 4, 2026
19a325d
[v14] refactor: `render` async by default (#1846)
mdjastrzebski Jan 5, 2026
71a3312
[v14] chore: validate RN: latest, next, and nightly on CI (#1847)
mdjastrzebski Jan 5, 2026
4341ad3
[v14] refactor: use async `act` by default (#1848)
mdjastrzebski Jan 5, 2026
2d646d7
[v14]: refactor: fake timers tweaks (#1849)
mdjastrzebski Jan 5, 2026
314e9ff
chore: release v14.0.0-alpha.5
mdjastrzebski Jan 6, 2026
367e315
chore: v14 codemods (#1850)
mdjastrzebski Jan 7, 2026
ed6a925
chore: update to `test-renderer` 0.12 (#1851)
mdjastrzebski Jan 7, 2026
9dcb10e
chore: ci tweaks
mdjastrzebski Jan 7, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
63 changes: 0 additions & 63 deletions .flowconfig

This file was deleted.

5 changes: 5 additions & 0 deletions .gemini/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"context": {
"contextFileName": "AGENTS.md"
}
}
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ labels: 'bug report'
<!--
run following command in terminal of your root project and paste the result down

`npx envinfo --npmPackages react,react-native,react-test-renderer,@testing-library/react-native`
`npx envinfo --npmPackages react,react-native,test-renderer,@testing-library/react-native`
-->
4 changes: 1 addition & 3 deletions .github/actions/setup-deps-rn-nightly/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,5 @@ runs:
yarn add -D \
react-native@nightly \
@react-native/babel-preset@nightly \
[email protected] \
[email protected] \
@types/react@^19.2.7 \
[email protected]
shell: bash
14 changes: 14 additions & 0 deletions .github/actions/setup-deps/action.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
name: Setup deps
description: Setup Node.js and install dependencies

inputs:
react-version:
description: React version to install (e.g., ^19.2.0)
required: false
react-native-version:
description: React Native version to install (e.g., 0.83.1)
required: false

runs:
using: composite
steps:
Expand All @@ -25,3 +33,9 @@ runs:
if: steps.yarn-cache.outputs.cache-hit != 'true'
run: yarn install --immutable
shell: bash

- name: Switch to React and React Native versions
if: inputs.react-version != '' && inputs.react-native-version != ''
run: |
yarn add -D react@${{ inputs.react-version }} @types/react@${{ inputs.react-version }} react-native@${{ inputs.react-native-version }} @react-native/babel-preset@${{ inputs.react-native-version }}
shell: bash
Loading