url
string
repository_url
string
labels_url
string
comments_url
string
events_url
string
html_url
string
id
int64
node_id
string
number
int64
title
string
user
dict
labels
list
state
string
locked
bool
assignee
dict
assignees
list
milestone
null
comments
int64
created_at
timestamp[s]
updated_at
timestamp[s]
closed_at
timestamp[s]
author_association
string
type
dict
active_lock_reason
string
draft
bool
pull_request
dict
body
string
closed_by
dict
reactions
dict
timeline_url
string
performed_via_github_app
null
state_reason
string
sub_issues_summary
dict
is_pull_request
bool
https://api.github.com/repos/facebook/react-native/issues/51020
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/51020/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/51020/comments
https://api.github.com/repos/facebook/react-native/issues/51020/events
https://github.com/facebook/react-native/issues/51020
3,031,713,001
I_kwDOAbrxp860tETp
51,020
Text Input onChange TextInputChangeEventData native event returns selection data but the TS complains
{ "login": "khushal87", "id": 39884168, "node_id": "MDQ6VXNlcjM5ODg0MTY4", "avatar_url": "https://avatars.githubusercontent.com/u/39884168?v=4", "gravatar_id": "", "url": "https://api.github.com/users/khushal87", "html_url": "https://github.com/khushal87", "followers_url": "https://api.github.com/users/khushal87/followers", "following_url": "https://api.github.com/users/khushal87/following{/other_user}", "gists_url": "https://api.github.com/users/khushal87/gists{/gist_id}", "starred_url": "https://api.github.com/users/khushal87/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/khushal87/subscriptions", "organizations_url": "https://api.github.com/users/khushal87/orgs", "repos_url": "https://api.github.com/users/khushal87/repos", "events_url": "https://api.github.com/users/khushal87/events{/privacy}", "received_events_url": "https://api.github.com/users/khushal87/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 869668024, "node_id": "MDU6TGFiZWw4Njk2NjgwMjQ=", "url": "https://api.github.com/repos/facebook/react-native/labels/Component:%20TextInput", "name": "Component: TextInput", "color": "fef2c0", "default": false, "description": "Related to the TextInput component." }, { "id": 1794148631, "node_id": "MDU6TGFiZWwxNzk0MTQ4NjMx", "url": "https://api.github.com/repos/facebook/react-native/labels/Needs:%20Author%20Feedback", "name": "Needs: Author Feedback", "color": "d4c5f9", "default": false, "description": "" }, { "id": 1794376073, "node_id": "MDU6TGFiZWwxNzk0Mzc2MDcz", "url": "https://api.github.com/repos/facebook/react-native/labels/Needs:%20Repro", "name": "Needs: Repro", "color": "d4c5f9", "default": false, "description": "This issue could be improved with a clear list of steps to reproduce the issue." }, { "id": 1794380150, "node_id": "MDU6TGFiZWwxNzk0MzgwMTUw", "url": "https://api.github.com/repos/facebook/react-native/labels/Newer%20Patch%20Available", "name": "Newer Patch Available", "color": "d4c5f9", "default": false, "description": "" } ]
open
false
null
[]
null
6
2025-04-30T15:47:06
2025-06-05T16:27:55
null
NONE
null
null
null
null
### Description The TS complains for the `selection` data in the `NativeSyntheticEvent<TextInputChangeEventData>` that it doesn't exist but it logs when you try logging the `e.nativeEvent` for `onChange` prop of TextInput ### Steps to reproduce Code: ``` const handleChange = useCallback( (e: NativeSyntheticEvent<TextInputChangeEventData>) => { console.log(e.nativeEvent.selection); }, [], ); ``` ### React Native Version 0.78.0 ### Affected Platforms Runtime - iOS ### Output of `npx @react-native-community/cli info` ```text System: OS: macOS 15.4 CPU: (12) arm64 Apple M2 Pro Memory: 166.56 MB / 32.00 GB Shell: version: "5.9" path: /bin/zsh Binaries: Node: version: 22.14.0 path: ~/.nvm/versions/node/v22.14.0/bin/node Yarn: version: 1.22.22 path: ~/.yarn/bin/yarn npm: version: 8.19.4 path: ~/Stream/stream-chat-react-native/node_modules/.bin/npm Watchman: version: 2024.12.02.00 path: /opt/homebrew/bin/watchman Managers: CocoaPods: version: 1.16.2 path: /Users/khushalagarwal/.rbenv/shims/pod SDKs: iOS SDK: Platforms: - DriverKit 24.2 - iOS 18.2 - macOS 15.2 - tvOS 18.2 - visionOS 2.2 - watchOS 11.2 Android SDK: API Levels: - "28" - "31" - "33" - "34" - "35" Build Tools: - 30.0.3 - 31.0.0 - 33.0.0 - 33.0.1 - 34.0.0 - 35.0.0 System Images: - android-28 | Google ARM64-V8a Play ARM 64 v8a - android-33 | Google APIs ARM 64 v8a - android-33 | Google Play ARM 64 v8a - android-34 | Google APIs ARM 64 v8a - android-34 | Google Play ARM 64 v8a Android NDK: Not Found IDEs: Android Studio: 2024.2 AI-242.23726.103.2422.12816248 Xcode: version: 16.2/16C5032a path: /usr/bin/xcodebuild Languages: Java: version: 17.0.10 path: /usr/bin/javac Ruby: version: 3.1.1 path: /Users/khushalagarwal/.rbenv/shims/ruby npmPackages: "@react-native-community/cli": installed: 15.1.3 wanted: 15.1.3 react: installed: 19.0.0 wanted: 19.0.0 react-native: installed: 0.78.0 wanted: ^0.78.0 react-native-macos: Not Found npmGlobalPackages: "*react-native*": Not Found Android: hermesEnabled: true newArchEnabled: true iOS: hermesEnabled: true newArchEnabled: true ``` ### Stacktrace or Logs ```text NA ``` ### MANDATORY Reproducer NA ### Screenshots and Videos _No response_
null
{ "url": "https://api.github.com/repos/facebook/react-native/issues/51020/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/51020/timeline
null
null
{ "total": 0, "completed": 0, "percent_completed": 0 }
false
https://api.github.com/repos/facebook/react-native/issues/51019
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/51019/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/51019/comments
https://api.github.com/repos/facebook/react-native/issues/51019/events
https://github.com/facebook/react-native/pull/51019
3,031,636,366
PR_kwDOAbrxp86UhfE6
51,019
Internalise RNTester examples referencing unexported APIs
{ "login": "huntie", "id": 2547783, "node_id": "MDQ6VXNlcjI1NDc3ODM=", "avatar_url": "https://avatars.githubusercontent.com/u/2547783?v=4", "gravatar_id": "", "url": "https://api.github.com/users/huntie", "html_url": "https://github.com/huntie", "followers_url": "https://api.github.com/users/huntie/followers", "following_url": "https://api.github.com/users/huntie/following{/other_user}", "gists_url": "https://api.github.com/users/huntie/gists{/gist_id}", "starred_url": "https://api.github.com/users/huntie/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/huntie/subscriptions", "organizations_url": "https://api.github.com/users/huntie/orgs", "repos_url": "https://api.github.com/users/huntie/repos", "events_url": "https://api.github.com/users/huntie/events{/privacy}", "received_events_url": "https://api.github.com/users/huntie/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
6
2025-04-30T15:22:05
2025-05-01T17:02:21
2025-05-01T17:02:07
MEMBER
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/51019", "html_url": "https://github.com/facebook/react-native/pull/51019", "diff_url": "https://github.com/facebook/react-native/pull/51019.diff", "patch_url": "https://github.com/facebook/react-native/pull/51019.patch", "merged_at": null }
Summary: Follows D72228547 and D73770609. This diff internalises (moves files from fbsource+GitHub to fbsource only) a number of RNTester examples which referenced `'react-native/src/private/'` subpaths. In future, new components/APIs should be exported from index as `unstable_`, or added to `RNTesterListFbInternal` if they are exported from `src/fb_internal/`. Changelog: [Internal] Differential Revision: D73777092
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/51019/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/51019/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/51018
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/51018/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/51018/comments
https://api.github.com/repos/facebook/react-native/issues/51018/events
https://github.com/facebook/react-native/pull/51018
3,031,559,896
PR_kwDOAbrxp86UhOaw
51,018
Root export `PublicRootInstance` and `PublicTextInstance` for `ReactNativeTypes` to use
{ "login": "coado", "id": 64146291, "node_id": "MDQ6VXNlcjY0MTQ2Mjkx", "avatar_url": "https://avatars.githubusercontent.com/u/64146291?v=4", "gravatar_id": "", "url": "https://api.github.com/users/coado", "html_url": "https://github.com/coado", "followers_url": "https://api.github.com/users/coado/followers", "following_url": "https://api.github.com/users/coado/following{/other_user}", "gists_url": "https://api.github.com/users/coado/gists{/gist_id}", "starred_url": "https://api.github.com/users/coado/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/coado/subscriptions", "organizations_url": "https://api.github.com/users/coado/orgs", "repos_url": "https://api.github.com/users/coado/repos", "events_url": "https://api.github.com/users/coado/events{/privacy}", "received_events_url": "https://api.github.com/users/coado/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1282006477, "node_id": "MDU6TGFiZWwxMjgyMDA2NDc3", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Software%20Mansion", "name": "p: Software Mansion", "color": "0052cc", "default": false, "description": "Partner: Software Mansion" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
5
2025-04-30T14:57:34
2025-05-05T10:27:31
2025-05-05T10:27:19
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/51018", "html_url": "https://github.com/facebook/react-native/pull/51018", "diff_url": "https://github.com/facebook/react-native/pull/51018.diff", "patch_url": "https://github.com/facebook/react-native/pull/51018.patch", "merged_at": null }
Summary: `ReactNativeTypes` deep imports `MeasureOnSuccessCallback`, `PublicInstance`, `PublicRootInstance` and `PublicTextInstance`. The `MeasureOnSuccessCallback` type is already root exported, `PublicInstance` is exported as `HostInstance` and there are two types left to export to root import all of them from react-native. This is needed for `simpleResolve` to properly resolve and build types located in `ReactNativePrivateInterface`. This cannot be fixed on the resolver level because that would also involve change in the `exports` field in `package.json` to enable types resolution for deep paths which should be strict by design. Changelog: [Internal] Differential Revision: D73926160
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/51018/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/51018/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/51017
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/51017/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/51017/comments
https://api.github.com/repos/facebook/react-native/issues/51017/events
https://github.com/facebook/react-native/pull/51017
3,031,492,118
PR_kwDOAbrxp86Ug_lv
51,017
Convert com.facebook.react.runtime.ReactHostImpl to Kotlin
{ "login": "javache", "id": 5676, "node_id": "MDQ6VXNlcjU2NzY=", "avatar_url": "https://avatars.githubusercontent.com/u/5676?v=4", "gravatar_id": "", "url": "https://api.github.com/users/javache", "html_url": "https://github.com/javache", "followers_url": "https://api.github.com/users/javache/followers", "following_url": "https://api.github.com/users/javache/following{/other_user}", "gists_url": "https://api.github.com/users/javache/gists{/gist_id}", "starred_url": "https://api.github.com/users/javache/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/javache/subscriptions", "organizations_url": "https://api.github.com/users/javache/orgs", "repos_url": "https://api.github.com/users/javache/repos", "events_url": "https://api.github.com/users/javache/events{/privacy}", "received_events_url": "https://api.github.com/users/javache/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
12
2025-04-30T14:37:12
2025-05-12T17:06:09
2025-05-12T17:05:57
MEMBER
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/51017", "html_url": "https://github.com/facebook/react-native/pull/51017", "diff_url": "https://github.com/facebook/react-native/pull/51017.diff", "patch_url": "https://github.com/facebook/react-native/pull/51017.patch", "merged_at": null }
Summary: Changelog: [Internal] Differential Revision: D73846053
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/51017/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/51017/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/51016
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/51016/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/51016/comments
https://api.github.com/repos/facebook/react-native/issues/51016/events
https://github.com/facebook/react-native/pull/51016
3,031,479,069
PR_kwDOAbrxp86Ug8u8
51,016
Cleanup unnecessary unsafe dereferences in BlobModule
{ "login": "javache", "id": 5676, "node_id": "MDQ6VXNlcjU2NzY=", "avatar_url": "https://avatars.githubusercontent.com/u/5676?v=4", "gravatar_id": "", "url": "https://api.github.com/users/javache", "html_url": "https://github.com/javache", "followers_url": "https://api.github.com/users/javache/followers", "following_url": "https://api.github.com/users/javache/following{/other_user}", "gists_url": "https://api.github.com/users/javache/gists{/gist_id}", "starred_url": "https://api.github.com/users/javache/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/javache/subscriptions", "organizations_url": "https://api.github.com/users/javache/orgs", "repos_url": "https://api.github.com/users/javache/repos", "events_url": "https://api.github.com/users/javache/events{/privacy}", "received_events_url": "https://api.github.com/users/javache/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
4
2025-04-30T14:32:17
2025-05-01T11:10:59
2025-05-01T11:10:48
MEMBER
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/51016", "html_url": "https://github.com/facebook/react-native/pull/51016", "diff_url": "https://github.com/facebook/react-native/pull/51016.diff", "patch_url": "https://github.com/facebook/react-native/pull/51016.patch", "merged_at": null }
Summary: Addressing some lint feedback. Changelog: [Internal] Differential Revision: D73840204
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/51016/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/51016/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/51015
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/51015/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/51015/comments
https://api.github.com/repos/facebook/react-native/issues/51015/events
https://github.com/facebook/react-native/issues/51015
3,031,479,010
I_kwDOAbrxp860sLLi
51,015
[Android] Keyboard toolbar overlap
{ "login": "vladvlasov256", "id": 1046502, "node_id": "MDQ6VXNlcjEwNDY1MDI=", "avatar_url": "https://avatars.githubusercontent.com/u/1046502?v=4", "gravatar_id": "", "url": "https://api.github.com/users/vladvlasov256", "html_url": "https://github.com/vladvlasov256", "followers_url": "https://api.github.com/users/vladvlasov256/followers", "following_url": "https://api.github.com/users/vladvlasov256/following{/other_user}", "gists_url": "https://api.github.com/users/vladvlasov256/gists{/gist_id}", "starred_url": "https://api.github.com/users/vladvlasov256/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/vladvlasov256/subscriptions", "organizations_url": "https://api.github.com/users/vladvlasov256/orgs", "repos_url": "https://api.github.com/users/vladvlasov256/repos", "events_url": "https://api.github.com/users/vladvlasov256/events{/privacy}", "received_events_url": "https://api.github.com/users/vladvlasov256/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 542043367, "node_id": "MDU6TGFiZWw1NDIwNDMzNjc=", "url": "https://api.github.com/repos/facebook/react-native/labels/Issue:%20Author%20Provided%20Repro", "name": "Issue: Author Provided Repro", "color": "0e8a16", "default": false, "description": "This issue can be reproduced in Snack or an attached project." }, { "id": 870851515, "node_id": "MDU6TGFiZWw4NzA4NTE1MTU=", "url": "https://api.github.com/repos/facebook/react-native/labels/Platform:%20Android", "name": "Platform: Android", "color": "1d76db", "default": false, "description": "Android applications." }, { "id": 1113219716, "node_id": "MDU6TGFiZWwxMTEzMjE5NzE2", "url": "https://api.github.com/repos/facebook/react-native/labels/API:%20Keyboard", "name": "API: Keyboard", "color": "fef2c0", "default": false, "description": "" } ]
open
false
null
[]
null
3
2025-04-30T14:32:16
2025-05-08T10:02:54
null
NONE
null
null
null
null
### Description On Pixel, Vivo, and Xiaomi devices, the Gboard toolbar overlaps with the app's sticky button when entering generic text, making the button partially or completely inaccessible. This issue appears to be specific to certain input types and doesn't occur consistently across all text fields. When using a street address field, the accessory bar appears, but when using a postal code field, the bar is hidden. The system doesn't trigger new keyboard events when it shows or hides this accessory bar, making it difficult to detect and adjust layouts accordingly. The issue is reproducible when the form has fields with different input types. I.e. when the keyboard changes its height without actually hiding. Hiding and showing the keyboard works as a workaround. **Workaround**: An ugly fix is triggering the "keyboardDidShow" event from the app approximately 400ms after focusing on the view. This means the system eventually provides the correct dimensions, but it doesn't provide them initially. There is probably no specific event for the toolbar. ### Steps to reproduce 1. Install the app `yarn android` 2. Focus on the "Street Address" field **Expected result**: the sticky button is on top of the keyboard toolbar **Result**: the keyboard toolbar covers the sticky button ### React Native Version 0.79.1 ### Affected Platforms Runtime - Android ### Output of `npx @react-native-community/cli info` ```text System: OS: macOS 15.4.1 CPU: (12) arm64 Apple M2 Max Memory: 129.13 MB / 32.00 GB Shell: version: "5.9" path: /bin/zsh Binaries: Node: version: 21.7.1 path: ~/.nvm/versions/node/v21.7.1/bin/node Yarn: version: 1.22.22 path: ~/.nvm/versions/node/v21.7.1/bin/yarn npm: version: 10.8.3 path: ~/.nvm/versions/node/v21.7.1/bin/npm Watchman: Not Found Managers: CocoaPods: version: 1.15.2 path: /Users/vlad/.rvm/gems/ruby-3.1.5/bin/pod SDKs: iOS SDK: Platforms: - DriverKit 24.0 - iOS 18.0 - macOS 15.0 - tvOS 18.0 - visionOS 2.0 - watchOS 11.0 Android SDK: Not Found IDEs: Android Studio: 2024.3 AI-243.24978.46.2431.13208083 Xcode: version: 16.0/16A242d path: /usr/bin/xcodebuild Languages: Java: version: 17.0.15 path: /usr/bin/javac Ruby: version: 3.1.5 path: /Users/vlad/.rvm/rubies/ruby-3.1.5/bin/ruby npmPackages: "@react-native-community/cli": Not Found react: Not Found react-native: Not Found react-native-macos: Not Found npmGlobalPackages: "*react-native*": Not Found Android: hermesEnabled: false newArchEnabled: false iOS: hermesEnabled: true newArchEnabled: false ``` ### Stacktrace or Logs ```text N/A ``` ### MANDATORY Reproducer https://github.com/vladvlasov256/reproduce-android-keyboard-toolbar-issue ### Screenshots and Videos https://github.com/user-attachments/assets/48b075ff-2b84-43ec-99db-ff83388cb52f
null
{ "url": "https://api.github.com/repos/facebook/react-native/issues/51015/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/51015/timeline
null
null
{ "total": 0, "completed": 0, "percent_completed": 0 }
false
https://api.github.com/repos/facebook/react-native/issues/51014
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/51014/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/51014/comments
https://api.github.com/repos/facebook/react-native/issues/51014/events
https://github.com/facebook/react-native/pull/51014
3,031,365,170
PR_kwDOAbrxp86Ugj6Y
51,014
Bump Xcode to version 16.2
{ "login": "cipolleschi", "id": 11162307, "node_id": "MDQ6VXNlcjExMTYyMzA3", "avatar_url": "https://avatars.githubusercontent.com/u/11162307?v=4", "gravatar_id": "", "url": "https://api.github.com/users/cipolleschi", "html_url": "https://github.com/cipolleschi", "followers_url": "https://api.github.com/users/cipolleschi/followers", "following_url": "https://api.github.com/users/cipolleschi/following{/other_user}", "gists_url": "https://api.github.com/users/cipolleschi/gists{/gist_id}", "starred_url": "https://api.github.com/users/cipolleschi/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cipolleschi/subscriptions", "organizations_url": "https://api.github.com/users/cipolleschi/orgs", "repos_url": "https://api.github.com/users/cipolleschi/repos", "events_url": "https://api.github.com/users/cipolleschi/events{/privacy}", "received_events_url": "https://api.github.com/users/cipolleschi/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
4
2025-04-30T13:52:55
2025-04-30T16:53:17
2025-04-30T16:53:04
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/51014", "html_url": "https://github.com/facebook/react-native/pull/51014", "diff_url": "https://github.com/facebook/react-native/pull/51014.diff", "patch_url": "https://github.com/facebook/react-native/pull/51014.patch", "merged_at": null }
Summary: Starting from the [24th of April](https://developer.apple.com/news/upcoming-requirements/?id=02212025a), Apple only accepts app built with Xcode 16.0 or greater This change bumps our CI to ensure that everything works with Xcode 16. ## Changelog: [Internal] - Bump CI to Xcode 16.2 Differential Revision: D73924819
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/51014/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/51014/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/51013
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/51013/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/51013/comments
https://api.github.com/repos/facebook/react-native/issues/51013/events
https://github.com/facebook/react-native/pull/51013
3,031,268,345
PR_kwDOAbrxp86UgOkL
51,013
Make ResourceDrawableIdHelper an object
{ "login": "javache", "id": 5676, "node_id": "MDQ6VXNlcjU2NzY=", "avatar_url": "https://avatars.githubusercontent.com/u/5676?v=4", "gravatar_id": "", "url": "https://api.github.com/users/javache", "html_url": "https://github.com/javache", "followers_url": "https://api.github.com/users/javache/followers", "following_url": "https://api.github.com/users/javache/following{/other_user}", "gists_url": "https://api.github.com/users/javache/gists{/gist_id}", "starred_url": "https://api.github.com/users/javache/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/javache/subscriptions", "organizations_url": "https://api.github.com/users/javache/orgs", "repos_url": "https://api.github.com/users/javache/repos", "events_url": "https://api.github.com/users/javache/events{/privacy}", "received_events_url": "https://api.github.com/users/javache/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
4
2025-04-30T13:20:55
2025-04-30T21:23:53
2025-04-30T15:57:21
MEMBER
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/51013", "html_url": "https://github.com/facebook/react-native/pull/51013", "diff_url": "https://github.com/facebook/react-native/pull/51013.diff", "patch_url": "https://github.com/facebook/react-native/pull/51013.patch", "merged_at": null }
Summary: There's no need to use a singleton pattern here, we can just use a Kotlin object. Changelog: [Android][Removed] Deprecated `ResourceDrawableIdHelper.instance` Differential Revision: D73923281
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/51013/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/51013/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/51012
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/51012/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/51012/comments
https://api.github.com/repos/facebook/react-native/issues/51012/events
https://github.com/facebook/react-native/pull/51012
3,031,257,507
PR_kwDOAbrxp86UgMSS
51,012
Fixup tests for ReactHostImpl Kotlin migration
{ "login": "javache", "id": 5676, "node_id": "MDQ6VXNlcjU2NzY=", "avatar_url": "https://avatars.githubusercontent.com/u/5676?v=4", "gravatar_id": "", "url": "https://api.github.com/users/javache", "html_url": "https://github.com/javache", "followers_url": "https://api.github.com/users/javache/followers", "following_url": "https://api.github.com/users/javache/following{/other_user}", "gists_url": "https://api.github.com/users/javache/gists{/gist_id}", "starred_url": "https://api.github.com/users/javache/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/javache/subscriptions", "organizations_url": "https://api.github.com/users/javache/orgs", "repos_url": "https://api.github.com/users/javache/repos", "events_url": "https://api.github.com/users/javache/events{/privacy}", "received_events_url": "https://api.github.com/users/javache/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
4
2025-04-30T13:16:50
2025-04-30T21:23:43
2025-04-30T15:57:20
MEMBER
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/51012", "html_url": "https://github.com/facebook/react-native/pull/51012", "diff_url": "https://github.com/facebook/react-native/pull/51012.diff", "patch_url": "https://github.com/facebook/react-native/pull/51012.patch", "merged_at": null }
Summary: Splitting of from D73846053 to reduce size. Changelog: [Internal] Differential Revision: D73923280
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/51012/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/51012/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/51011
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/51011/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/51011/comments
https://api.github.com/repos/facebook/react-native/issues/51011/events
https://github.com/facebook/react-native/pull/51011
3,030,461,500
PR_kwDOAbrxp86UdeHW
51,011
fbsource//xplat/js/react-native-github/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/modules/deviceinfo:deviceinfoAndroid
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
3
2025-04-30T07:57:02
2025-04-30T16:10:57
2025-04-30T16:10:46
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/51011", "html_url": "https://github.com/facebook/react-native/pull/51011", "diff_url": "https://github.com/facebook/react-native/pull/51011.diff", "patch_url": "https://github.com/facebook/react-native/pull/51011.patch", "merged_at": null }
Reviewed By: rshest Differential Revision: D73840378
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/51011/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/51011/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/51010
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/51010/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/51010/comments
https://api.github.com/repos/facebook/react-native/issues/51010/events
https://github.com/facebook/react-native/issues/51010
3,030,250,109
I_kwDOAbrxp860nfJ9
51,010
Can RCTViewComponentView get access RCTBridge's bundleURL or launchOptions property?
{ "login": "nanatlantica", "id": 6023483, "node_id": "MDQ6VXNlcjYwMjM0ODM=", "avatar_url": "https://avatars.githubusercontent.com/u/6023483?v=4", "gravatar_id": "", "url": "https://api.github.com/users/nanatlantica", "html_url": "https://github.com/nanatlantica", "followers_url": "https://api.github.com/users/nanatlantica/followers", "following_url": "https://api.github.com/users/nanatlantica/following{/other_user}", "gists_url": "https://api.github.com/users/nanatlantica/gists{/gist_id}", "starred_url": "https://api.github.com/users/nanatlantica/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/nanatlantica/subscriptions", "organizations_url": "https://api.github.com/users/nanatlantica/orgs", "repos_url": "https://api.github.com/users/nanatlantica/repos", "events_url": "https://api.github.com/users/nanatlantica/events{/privacy}", "received_events_url": "https://api.github.com/users/nanatlantica/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 1794148347, "node_id": "MDU6TGFiZWwxNzk0MTQ4MzQ3", "url": "https://api.github.com/repos/facebook/react-native/labels/Needs:%20Triage%20:mag:", "name": "Needs: Triage :mag:", "color": "bfd4f2", "default": false, "description": "" }, { "id": 1794380150, "node_id": "MDU6TGFiZWwxNzk0MzgwMTUw", "url": "https://api.github.com/repos/facebook/react-native/labels/Newer%20Patch%20Available", "name": "Newer Patch Available", "color": "d4c5f9", "default": false, "description": "" }, { "id": 3815166274, "node_id": "LA_kwDOAbrxp87jZtFC", "url": "https://api.github.com/repos/facebook/react-native/labels/Type:%20New%20Architecture", "name": "Type: New Architecture", "color": "f9d0c4", "default": false, "description": "Issues and PRs related to new architecture (Fabric/Turbo Modules)" }, { "id": 5381829209, "node_id": "LA_kwDOAbrxp88AAAABQMgyWQ", "url": "https://api.github.com/repos/facebook/react-native/labels/%F0%9F%93%A6Bundler", "name": "📦Bundler", "color": "ededed", "default": false, "description": null } ]
open
false
null
[]
null
10
2025-04-30T06:16:52
2025-05-09T12:56:34
null
NONE
null
null
null
null
### Description In Legacy architecture, developer can access RCTBridge instance in RCTViewManager to get access to the RCTBridge's bundleURL or launchOptions property In Fabric Component,how could I access the bundleURL or launchOptions property in RCTBridge? ### Steps to reproduce 1.Create an instance inherited from RCTViewComponentView 2.How can I get access to bridge.bundleURL and launchOptions? ### React Native Version 0.77.0 ### Affected Platforms Runtime - iOS ### Areas Fabric - The New Renderer ### Output of `npx @react-native-community/cli info` ```text System: OS: macOS 14.2.1 CPU: (8) arm64 Apple M1 Pro Memory: 76.88 MB / 16.00 GB Shell: version: "5.9" path: /bin/zsh Binaries: Node: version: 20.5.1 path: /opt/homebrew/bin/node Yarn: version: 1.22.21 path: /opt/homebrew/bin/yarn npm: version: 9.8.0 path: /opt/homebrew/bin/npm Watchman: version: 2024.01.15.00 path: /opt/homebrew/bin/watchman Managers: CocoaPods: version: 1.11.3 path: /usr/local/bin/pod SDKs: iOS SDK: Platforms: - DriverKit 23.2 - iOS 17.2 - macOS 14.2 - tvOS 17.2 - visionOS 1.0 - watchOS 10.2 Android SDK: Not Found IDEs: Android Studio: Not Found Xcode: version: 15.2/15C500b path: /usr/bin/xcodebuild Languages: Java: version: 20.0.1 path: /usr/bin/javac Ruby: version: 2.6.10 path: /usr/bin/ruby npmPackages: "@react-native-community/cli": Not Found react: installed: 18.2.0 wanted: 18.2.0 react-native: installed: 0.77.0 wanted: 0.77.0 react-native-macos: Not Found npmGlobalPackages: "*react-native*": Not Found Android: hermesEnabled: false newArchEnabled: false iOS: hermesEnabled: true newArchEnabled: true ``` ### Stacktrace or Logs ```text - ``` ### MANDATORY Reproducer https://github.com/nanatlantica/RNDynamic ### Screenshots and Videos _No response_
null
{ "url": "https://api.github.com/repos/facebook/react-native/issues/51010/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/51010/timeline
null
null
{ "total": 0, "completed": 0, "percent_completed": 0 }
false
https://api.github.com/repos/facebook/react-native/issues/51009
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/51009/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/51009/comments
https://api.github.com/repos/facebook/react-native/issues/51009/events
https://github.com/facebook/react-native/issues/51009
3,030,239,508
I_kwDOAbrxp860nckU
51,009
No
{ "login": "nanatlantica", "id": 6023483, "node_id": "MDQ6VXNlcjYwMjM0ODM=", "avatar_url": "https://avatars.githubusercontent.com/u/6023483?v=4", "gravatar_id": "", "url": "https://api.github.com/users/nanatlantica", "html_url": "https://github.com/nanatlantica", "followers_url": "https://api.github.com/users/nanatlantica/followers", "following_url": "https://api.github.com/users/nanatlantica/following{/other_user}", "gists_url": "https://api.github.com/users/nanatlantica/gists{/gist_id}", "starred_url": "https://api.github.com/users/nanatlantica/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/nanatlantica/subscriptions", "organizations_url": "https://api.github.com/users/nanatlantica/orgs", "repos_url": "https://api.github.com/users/nanatlantica/repos", "events_url": "https://api.github.com/users/nanatlantica/events{/privacy}", "received_events_url": "https://api.github.com/users/nanatlantica/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 1794148347, "node_id": "MDU6TGFiZWwxNzk0MTQ4MzQ3", "url": "https://api.github.com/repos/facebook/react-native/labels/Needs:%20Triage%20:mag:", "name": "Needs: Triage :mag:", "color": "bfd4f2", "default": false, "description": "" }, { "id": 3815166274, "node_id": "LA_kwDOAbrxp87jZtFC", "url": "https://api.github.com/repos/facebook/react-native/labels/Type:%20New%20Architecture", "name": "Type: New Architecture", "color": "f9d0c4", "default": false, "description": "Issues and PRs related to new architecture (Fabric/Turbo Modules)" }, { "id": 5381829209, "node_id": "LA_kwDOAbrxp88AAAABQMgyWQ", "url": "https://api.github.com/repos/facebook/react-native/labels/%F0%9F%93%A6Bundler", "name": "📦Bundler", "color": "ededed", "default": false, "description": null }, { "id": 5727401455, "node_id": "LA_kwDOAbrxp88AAAABVWE17w", "url": "https://api.github.com/repos/facebook/react-native/labels/Type:%20Too%20Old%20Version", "name": "Type: Too Old Version", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
2
2025-04-30T06:11:30
2025-04-30T06:17:12
2025-04-30T06:11:49
NONE
null
null
null
null
### Description In Legacy architecture, developer can access RCTBridge instance in RCTViewManager to get access to the RCTBridge's bundleURL or launchOptions property In Fabric Component,how could I access the bundleURL or launchOptions property in RCTBridge? ### Steps to reproduce 1.Create an instance inherited from RCTViewComponentView 2.How can I get access to bridge.bundleURL and launchOptions? ### React Native Version 0.72.5 ### Affected Platforms Runtime - iOS ### Areas Fabric - The New Renderer ### Output of `npx @react-native-community/cli info` ```text System: OS: macOS 14.2.1 CPU: (8) arm64 Apple M1 Pro Memory: 76.88 MB / 16.00 GB Shell: version: "5.9" path: /bin/zsh Binaries: Node: version: 20.5.1 path: /opt/homebrew/bin/node Yarn: version: 1.22.21 path: /opt/homebrew/bin/yarn npm: version: 9.8.0 path: /opt/homebrew/bin/npm Watchman: version: 2024.01.15.00 path: /opt/homebrew/bin/watchman Managers: CocoaPods: version: 1.11.3 path: /usr/local/bin/pod SDKs: iOS SDK: Platforms: - DriverKit 23.2 - iOS 17.2 - macOS 14.2 - tvOS 17.2 - visionOS 1.0 - watchOS 10.2 Android SDK: Not Found IDEs: Android Studio: Not Found Xcode: version: 15.2/15C500b path: /usr/bin/xcodebuild Languages: Java: version: 20.0.1 path: /usr/bin/javac Ruby: version: 2.6.10 path: /usr/bin/ruby npmPackages: "@react-native-community/cli": Not Found react: installed: 18.2.0 wanted: 18.2.0 react-native: installed: 0.72.5 wanted: 0.72.5 react-native-macos: Not Found npmGlobalPackages: "*react-native*": Not Found Android: hermesEnabled: false newArchEnabled: false iOS: hermesEnabled: true newArchEnabled: true ``` ### Stacktrace or Logs ```text - ``` ### MANDATORY Reproducer https://github.com/nanatlantica/RNDynamic ### Screenshots and Videos _No response_
{ "login": "react-native-bot", "id": 32686087, "node_id": "MDQ6VXNlcjMyNjg2MDg3", "avatar_url": "https://avatars.githubusercontent.com/u/32686087?v=4", "gravatar_id": "", "url": "https://api.github.com/users/react-native-bot", "html_url": "https://github.com/react-native-bot", "followers_url": "https://api.github.com/users/react-native-bot/followers", "following_url": "https://api.github.com/users/react-native-bot/following{/other_user}", "gists_url": "https://api.github.com/users/react-native-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/react-native-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/react-native-bot/subscriptions", "organizations_url": "https://api.github.com/users/react-native-bot/orgs", "repos_url": "https://api.github.com/users/react-native-bot/repos", "events_url": "https://api.github.com/users/react-native-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/react-native-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/51009/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/51009/timeline
null
completed
{ "total": 0, "completed": 0, "percent_completed": 0 }
false
https://api.github.com/repos/facebook/react-native/issues/51008
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/51008/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/51008/comments
https://api.github.com/repos/facebook/react-native/issues/51008/events
https://github.com/facebook/react-native/issues/51008
3,030,071,993
I_kwDOAbrxp860mzq5
51,008
[Android][Fabric] Samsung Pass autofill does not trigger when Fabric is enabled
{ "login": "jinkook0126", "id": 26562630, "node_id": "MDQ6VXNlcjI2NTYyNjMw", "avatar_url": "https://avatars.githubusercontent.com/u/26562630?v=4", "gravatar_id": "", "url": "https://api.github.com/users/jinkook0126", "html_url": "https://github.com/jinkook0126", "followers_url": "https://api.github.com/users/jinkook0126/followers", "following_url": "https://api.github.com/users/jinkook0126/following{/other_user}", "gists_url": "https://api.github.com/users/jinkook0126/gists{/gist_id}", "starred_url": "https://api.github.com/users/jinkook0126/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/jinkook0126/subscriptions", "organizations_url": "https://api.github.com/users/jinkook0126/orgs", "repos_url": "https://api.github.com/users/jinkook0126/repos", "events_url": "https://api.github.com/users/jinkook0126/events{/privacy}", "received_events_url": "https://api.github.com/users/jinkook0126/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 870851515, "node_id": "MDU6TGFiZWw4NzA4NTE1MTU=", "url": "https://api.github.com/repos/facebook/react-native/labels/Platform:%20Android", "name": "Platform: Android", "color": "1d76db", "default": false, "description": "Android applications." }, { "id": 1794376073, "node_id": "MDU6TGFiZWwxNzk0Mzc2MDcz", "url": "https://api.github.com/repos/facebook/react-native/labels/Needs:%20Repro", "name": "Needs: Repro", "color": "d4c5f9", "default": false, "description": "This issue could be improved with a clear list of steps to reproduce the issue." }, { "id": 1877909121, "node_id": "MDU6TGFiZWwxODc3OTA5MTIx", "url": "https://api.github.com/repos/facebook/react-native/labels/Needs:%20Attention", "name": "Needs: Attention", "color": "f9c884", "default": false, "description": "Issues where the author has responded to feedback." }, { "id": 3815166274, "node_id": "LA_kwDOAbrxp87jZtFC", "url": "https://api.github.com/repos/facebook/react-native/labels/Type:%20New%20Architecture", "name": "Type: New Architecture", "color": "f9d0c4", "default": false, "description": "Issues and PRs related to new architecture (Fabric/Turbo Modules)" }, { "id": 4431653875, "node_id": "LA_kwDOAbrxp88AAAABCCWr8w", "url": "https://api.github.com/repos/facebook/react-native/labels/Resolution:%20Issue%20in%20another%20tool%20or%20repo", "name": "Resolution: Issue in another tool or repo", "color": "ffffff", "default": false, "description": "An issue that was opened against React Native but in reality is affecting another tool or library" }, { "id": 5021085328, "node_id": "LA_kwDOAbrxp88AAAABK0eukA", "url": "https://api.github.com/repos/facebook/react-native/labels/Type:%20Unsupported%20Version", "name": "Type: Unsupported Version", "color": "ffffff", "default": false, "description": "Issues reported to a version of React Native that is no longer supported" } ]
closed
false
null
[]
null
12
2025-04-30T04:13:09
2025-05-08T10:02:17
2025-05-08T08:05:55
NONE
null
null
null
null
### Description When using React Native with Fabric enabled on Android, Samsung Pass autofill (e.g., suggesting stored credentials like username/password) does not get triggered on TextInput fields, even with the proper props such as: `<TextInput autoComplete="username" textContentType="username" importantForAutofill="yes" />` **💡 Notes:** - When Fabric is disabled, Samsung Pass is triggered correctly. - Proper network requests are present to simulate login. - The issue occurs regardless of whether the app is in debug or release mode. - Samsung Pass works fine in other apps on the same device. - This issue appears to be specific to the Fabric architecture. ### Steps to reproduce 1. Enable Fabric in the React Native Android project. 2. Implement TextInput fields with autoComplete and textContentType. 3. Use Samsung Keyboard with Samsung Pass enabled. 4. Samsung Pass does not suggest autofill options. ### React Native Version 0.76.7 ### Affected Platforms Runtime - Android ### Areas Fabric - The New Renderer ### Output of `npx @react-native-community/cli info` ```text System: OS: Windows 11 10.0.22631 CPU: (8) x64 Intel(R) Core(TM) i7-9700 CPU @ 3.00GHz Memory: 1.69 GB / 15.92 GB Binaries: Node: version: 20.11.1 path: C:\Program Files\nodejs\node.EXE Yarn: Not Found npm: version: 10.2.4 path: C:\Program Files\nodejs\npm.CMD Watchman: Not Found SDKs: Android SDK: Not Found Windows SDK: Not Found IDEs: Android Studio: Not Found Visual Studio: Not Found Languages: Java: 17.0.10 Ruby: Not Found npmPackages: "@react-native-community/cli": installed: 15.0.1 wanted: 15.0.1 react: installed: 18.3.1 wanted: 18.3.1 react-native: installed: 0.76.7 wanted: 0.76.7 react-native-windows: Not Found npmGlobalPackages: "*react-native*": Not Found Android: hermesEnabled: true newArchEnabled: false iOS: hermesEnabled: Not found newArchEnabled: Not found ``` ### Stacktrace or Logs ```text no log ``` ### MANDATORY Reproducer ```jsx // App.js import React, { useState } from 'react'; import { View, TextInput, Button } from 'react-native'; export default function App() { const [id, setId] = useState(''); const [pw, setPw] = useState(''); return ( <View style={{ padding: 20 }}> <TextInput placeholder="아이디" importantForAutofill="yes" autoComplete="username" textContentType="username" onChangeText={setId} style={{ borderBottomWidth: 1, marginBottom: 10 }} /> <TextInput placeholder="비밀번호" importantForAutofill="yes" autoComplete="password" textContentType="password" secureTextEntry onChangeText={setPw} style={{ borderBottomWidth: 1, marginBottom: 10 }} /> <Button title="로그인" onPress={() => console.log(id, pw)} /> </View> ); } ``` ### Screenshots and Videos _No response_
{ "login": "jinkook0126", "id": 26562630, "node_id": "MDQ6VXNlcjI2NTYyNjMw", "avatar_url": "https://avatars.githubusercontent.com/u/26562630?v=4", "gravatar_id": "", "url": "https://api.github.com/users/jinkook0126", "html_url": "https://github.com/jinkook0126", "followers_url": "https://api.github.com/users/jinkook0126/followers", "following_url": "https://api.github.com/users/jinkook0126/following{/other_user}", "gists_url": "https://api.github.com/users/jinkook0126/gists{/gist_id}", "starred_url": "https://api.github.com/users/jinkook0126/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/jinkook0126/subscriptions", "organizations_url": "https://api.github.com/users/jinkook0126/orgs", "repos_url": "https://api.github.com/users/jinkook0126/repos", "events_url": "https://api.github.com/users/jinkook0126/events{/privacy}", "received_events_url": "https://api.github.com/users/jinkook0126/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/51008/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/51008/timeline
null
completed
{ "total": 0, "completed": 0, "percent_completed": 0 }
false
https://api.github.com/repos/facebook/react-native/issues/51007
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/51007/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/51007/comments
https://api.github.com/repos/facebook/react-native/issues/51007/events
https://github.com/facebook/react-native/pull/51007
3,029,596,967
PR_kwDOAbrxp86Uaka3
51,007
Incorporate maxLines and ellipsization into text layout
{ "login": "NickGerleman", "id": 835219, "node_id": "MDQ6VXNlcjgzNTIxOQ==", "avatar_url": "https://avatars.githubusercontent.com/u/835219?v=4", "gravatar_id": "", "url": "https://api.github.com/users/NickGerleman", "html_url": "https://github.com/NickGerleman", "followers_url": "https://api.github.com/users/NickGerleman/followers", "following_url": "https://api.github.com/users/NickGerleman/following{/other_user}", "gists_url": "https://api.github.com/users/NickGerleman/gists{/gist_id}", "starred_url": "https://api.github.com/users/NickGerleman/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/NickGerleman/subscriptions", "organizations_url": "https://api.github.com/users/NickGerleman/orgs", "repos_url": "https://api.github.com/users/NickGerleman/repos", "events_url": "https://api.github.com/users/NickGerleman/events{/privacy}", "received_events_url": "https://api.github.com/users/NickGerleman/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
2
2025-04-29T21:40:30
2025-04-30T01:49:53
2025-04-30T01:49:35
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/51007", "html_url": "https://github.com/facebook/react-native/pull/51007", "diff_url": "https://github.com/facebook/react-native/pull/51007.diff", "patch_url": "https://github.com/facebook/react-native/pull/51007.patch", "merged_at": null }
Summary: Right now, we fully layout text, then use max lines to determine a metric to use when calculating size. Android API 23+ which we fully target allows incorporating ellipsization and maxlines directly into the layout. This will let us directly draw the layout when using maxLines later. This may also let Android optimize line-breaking a bit, when we hit truncation. Special care is taken not to set this when we are in `adjustsFontSizeToFit` path, so that line count will flow over, signifing overflow. I think the main user-facing change is that `onTextLayout` events will have measures post-ellipsization. Changelog: [Android][Changed] - Incorporate maxLines and ellipsization into text layout Reviewed By: joevilches Differential Revision: D73811573
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/51007/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/51007/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/51006
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/51006/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/51006/comments
https://api.github.com/repos/facebook/react-native/issues/51006/events
https://github.com/facebook/react-native/pull/51006
3,029,596,890
PR_kwDOAbrxp86UakZw
51,006
Spannable -> Spanned
{ "login": "NickGerleman", "id": 835219, "node_id": "MDQ6VXNlcjgzNTIxOQ==", "avatar_url": "https://avatars.githubusercontent.com/u/835219?v=4", "gravatar_id": "", "url": "https://api.github.com/users/NickGerleman", "html_url": "https://github.com/NickGerleman", "followers_url": "https://api.github.com/users/NickGerleman/followers", "following_url": "https://api.github.com/users/NickGerleman/following{/other_user}", "gists_url": "https://api.github.com/users/NickGerleman/gists{/gist_id}", "starred_url": "https://api.github.com/users/NickGerleman/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/NickGerleman/subscriptions", "organizations_url": "https://api.github.com/users/NickGerleman/orgs", "repos_url": "https://api.github.com/users/NickGerleman/repos", "events_url": "https://api.github.com/users/NickGerleman/events{/privacy}", "received_events_url": "https://api.github.com/users/NickGerleman/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
2
2025-04-29T21:40:26
2025-04-30T01:49:58
2025-04-30T01:49:36
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/51006", "html_url": "https://github.com/facebook/react-native/pull/51006", "diff_url": "https://github.com/facebook/react-native/pull/51006.diff", "patch_url": "https://github.com/facebook/react-native/pull/51006.patch", "merged_at": null }
Summary: Moves a bit of code, reading spans that we may not control, to query for `Spanned`, instead of `Spannable`, since some code (see last diff around ellipsization) may wrap intermediate Spannables. Changelog: [internal] Reviewed By: joevilches Differential Revision: D73820368
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/51006/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/51006/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/51005
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/51005/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/51005/comments
https://api.github.com/repos/facebook/react-native/issues/51005/events
https://github.com/facebook/react-native/pull/51005
3,029,596,778
PR_kwDOAbrxp86UakYU
51,005
Correctly Pass SurfaceID to TextLayoutManager
{ "login": "NickGerleman", "id": 835219, "node_id": "MDQ6VXNlcjgzNTIxOQ==", "avatar_url": "https://avatars.githubusercontent.com/u/835219?v=4", "gravatar_id": "", "url": "https://api.github.com/users/NickGerleman", "html_url": "https://github.com/NickGerleman", "followers_url": "https://api.github.com/users/NickGerleman/followers", "following_url": "https://api.github.com/users/NickGerleman/following{/other_user}", "gists_url": "https://api.github.com/users/NickGerleman/gists{/gist_id}", "starred_url": "https://api.github.com/users/NickGerleman/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/NickGerleman/subscriptions", "organizations_url": "https://api.github.com/users/NickGerleman/orgs", "repos_url": "https://api.github.com/users/NickGerleman/repos", "events_url": "https://api.github.com/users/NickGerleman/events{/privacy}", "received_events_url": "https://api.github.com/users/NickGerleman/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
2
2025-04-29T21:40:21
2025-04-30T01:49:48
2025-04-30T01:49:34
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/51005", "html_url": "https://github.com/facebook/react-native/pull/51005", "diff_url": "https://github.com/facebook/react-native/pull/51005.diff", "patch_url": "https://github.com/facebook/react-native/pull/51005.patch", "merged_at": null }
Summary: We need to get a context corresponding to the root being passed, to be able to resolve things like theme to use. RIght now that's a TODO, that's been around since new arch. Let's pass the real data along. Changelog: [Android][Fixed] - Correctly Pass SurfaceID to TextLayoutManager Reviewed By: javache Differential Revision: D73819640
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/51005/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/51005/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/51004
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/51004/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/51004/comments
https://api.github.com/repos/facebook/react-native/issues/51004/events
https://github.com/facebook/react-native/pull/51004
3,029,551,551
PR_kwDOAbrxp86UaacQ
51,004
Allow accessibilityOrder to reference itself
{ "login": "joevilches", "id": 17124862, "node_id": "MDQ6VXNlcjE3MTI0ODYy", "avatar_url": "https://avatars.githubusercontent.com/u/17124862?v=4", "gravatar_id": "", "url": "https://api.github.com/users/joevilches", "html_url": "https://github.com/joevilches", "followers_url": "https://api.github.com/users/joevilches/followers", "following_url": "https://api.github.com/users/joevilches/following{/other_user}", "gists_url": "https://api.github.com/users/joevilches/gists{/gist_id}", "starred_url": "https://api.github.com/users/joevilches/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/joevilches/subscriptions", "organizations_url": "https://api.github.com/users/joevilches/orgs", "repos_url": "https://api.github.com/users/joevilches/repos", "events_url": "https://api.github.com/users/joevilches/events{/privacy}", "received_events_url": "https://api.github.com/users/joevilches/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
5
2025-04-29T21:12:48
2025-04-30T22:36:49
2025-04-30T22:36:33
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/51004", "html_url": "https://github.com/facebook/react-native/pull/51004", "diff_url": "https://github.com/facebook/react-native/pull/51004.diff", "patch_url": "https://github.com/facebook/react-native/pull/51004.patch", "merged_at": null }
Summary: It would be very convenient if `accessibilityOrder` could reference itself. Meaning the View with the `accessibilityOrder` prop can include its own `nativeID` in the array. This makes sense API wise - we allow for referencing parents and their descendants, so long as they are treated as an element and not a container. This is pretty nice since you no longer have to wrap everything in a View who's sole purpose is `accessibilityOrder`. Under the hood things get a bit garbled, however, since iOS only lets you have UIViews that are either accessibility elements or accessibility containers - and we need to support both at the same time for this to work. To do this, we make use of the `UIAccessibilityElement` class and just forward all of the logic to the View with the `accessibilityOrder` prop. This View will also not be an accessibility element from the point of view of iOS. Changelog: [Internal] Differential Revision: D73792934
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/51004/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/51004/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/51003
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/51003/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/51003/comments
https://api.github.com/repos/facebook/react-native/issues/51003/events
https://github.com/facebook/react-native/pull/51003
3,029,546,393
PR_kwDOAbrxp86UaZTw
51,003
Make `EventEmitterWrapper` internal
{ "login": "mateoguzmana", "id": 20783123, "node_id": "MDQ6VXNlcjIwNzgzMTIz", "avatar_url": "https://avatars.githubusercontent.com/u/20783123?v=4", "gravatar_id": "", "url": "https://api.github.com/users/mateoguzmana", "html_url": "https://github.com/mateoguzmana", "followers_url": "https://api.github.com/users/mateoguzmana/followers", "following_url": "https://api.github.com/users/mateoguzmana/following{/other_user}", "gists_url": "https://api.github.com/users/mateoguzmana/gists{/gist_id}", "starred_url": "https://api.github.com/users/mateoguzmana/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/mateoguzmana/subscriptions", "organizations_url": "https://api.github.com/users/mateoguzmana/orgs", "repos_url": "https://api.github.com/users/mateoguzmana/repos", "events_url": "https://api.github.com/users/mateoguzmana/events{/privacy}", "received_events_url": "https://api.github.com/users/mateoguzmana/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 3253537094, "node_id": "MDU6TGFiZWwzMjUzNTM3MDk0", "url": "https://api.github.com/repos/facebook/react-native/labels/Shared%20with%20Meta", "name": "Shared with Meta", "color": "BFD4F2", "default": false, "description": "Applied via automation to indicate that an Issue or Pull Request has been shared with the team." } ]
closed
false
null
[]
null
3
2025-04-29T21:10:02
2025-04-30T02:19:58
2025-04-30T02:19:44
COLLABORATOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/51003", "html_url": "https://github.com/facebook/react-native/pull/51003", "diff_url": "https://github.com/facebook/react-native/pull/51003.diff", "patch_url": "https://github.com/facebook/react-native/pull/51003.patch", "merged_at": null }
## Summary: This class can be internalized as part of the initiative to reduce the public API surface. I've checked there are [no relevant OSS usages](https://github.com/search?type=code&q=NOT+is%3Afork+NOT+org%3Afacebook+NOT+repo%3Areact-native-tvos%2Freact-native-tvos+NOT+repo%3Anuagoz%2Freact-native+NOT+repo%3A2lambda123%2Freact-native+NOT+repo%3Abeanchips%2Ffacebookreactnative+NOT+repo%3AfabOnReact%2Freact-native-notes+NOT+user%3Ahuntie+NOT+user%3Acortinico+NOT+repo%3AMaxdev18%2Fpowersync_app+NOT+repo%3Acarter-0%2Finstagram-decompiled+NOT+repo%3Am0mosenpai%2Finstadamn+NOT+repo%3AA-Star100%2FA-Star100-AUG2-2024+NOT+repo%3Alclnrd%2Fdetox-scrollview-reproductible+NOT+repo%3ADionisisChytiris%2FWorldWiseTrivia_Main+NOT+repo%3Apast3l%2Fhi2+NOT+repo%3AoneDotpy%2FCaribouQuest+NOT+repo%3Abejayoharen%2Fdailytodo+NOT+repo%3Amolangning%2Freversing-discord+NOT+repo%3AScottPrzy%2Freact-native+NOT+repo%3Agabrieldonadel%2Freact-native-visionos+NOT+repo%3AGabriel2308%2FTestes-Soft+NOT+repo%3Adawnzs03%2FflakyBuild+NOT+repo%3Acga2351%2Fcode+NOT+repo%3Astreeg%2Ftcc+NOT+repo%3Asoftware-mansion-labs%2Freact-native-swiftui+NOT+repo%3Apkcsecurity%2Fdecompiled-lightbulb+com.facebook.react.fabric.events.EventEmitterWrapper). ## Changelog: [INTERNAL] - Make com.facebook.react.fabric.events.EventEmitterWrapper internal ## Test Plan: ```bash yarn test-android yarn android ```
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/51003/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/51003/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/51002
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/51002/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/51002/comments
https://api.github.com/repos/facebook/react-native/issues/51002/events
https://github.com/facebook/react-native/pull/51002
3,029,519,712
PR_kwDOAbrxp86UaTgI
51,002
Make `ReactModalHostManager` internal
{ "login": "mateoguzmana", "id": 20783123, "node_id": "MDQ6VXNlcjIwNzgzMTIz", "avatar_url": "https://avatars.githubusercontent.com/u/20783123?v=4", "gravatar_id": "", "url": "https://api.github.com/users/mateoguzmana", "html_url": "https://github.com/mateoguzmana", "followers_url": "https://api.github.com/users/mateoguzmana/followers", "following_url": "https://api.github.com/users/mateoguzmana/following{/other_user}", "gists_url": "https://api.github.com/users/mateoguzmana/gists{/gist_id}", "starred_url": "https://api.github.com/users/mateoguzmana/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/mateoguzmana/subscriptions", "organizations_url": "https://api.github.com/users/mateoguzmana/orgs", "repos_url": "https://api.github.com/users/mateoguzmana/repos", "events_url": "https://api.github.com/users/mateoguzmana/events{/privacy}", "received_events_url": "https://api.github.com/users/mateoguzmana/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 3253537094, "node_id": "MDU6TGFiZWwzMjUzNTM3MDk0", "url": "https://api.github.com/repos/facebook/react-native/labels/Shared%20with%20Meta", "name": "Shared with Meta", "color": "BFD4F2", "default": false, "description": "Applied via automation to indicate that an Issue or Pull Request has been shared with the team." } ]
closed
false
null
[]
null
3
2025-04-29T20:54:00
2025-05-01T09:26:24
2025-05-01T09:26:15
COLLABORATOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/51002", "html_url": "https://github.com/facebook/react-native/pull/51002", "diff_url": "https://github.com/facebook/react-native/pull/51002.diff", "patch_url": "https://github.com/facebook/react-native/pull/51002.patch", "merged_at": null }
## Summary: This class can be internalized as part of the initiative to reduce the public API surface. I've checked there are [no relevant OSS usages](https://github.com/search?type=code&q=NOT+is%3Afork+NOT+org%3Afacebook+NOT+repo%3Areact-native-tvos%2Freact-native-tvos+NOT+repo%3Anuagoz%2Freact-native+NOT+repo%3A2lambda123%2Freact-native+NOT+repo%3Abeanchips%2Ffacebookreactnative+NOT+repo%3AfabOnReact%2Freact-native-notes+NOT+user%3Ahuntie+NOT+user%3Acortinico+NOT+repo%3AMaxdev18%2Fpowersync_app+NOT+repo%3Acarter-0%2Finstagram-decompiled+NOT+repo%3Am0mosenpai%2Finstadamn+NOT+repo%3AA-Star100%2FA-Star100-AUG2-2024+NOT+repo%3Alclnrd%2Fdetox-scrollview-reproductible+NOT+repo%3ADionisisChytiris%2FWorldWiseTrivia_Main+NOT+repo%3Apast3l%2Fhi2+NOT+repo%3AoneDotpy%2FCaribouQuest+NOT+repo%3Abejayoharen%2Fdailytodo+NOT+repo%3Amolangning%2Freversing-discord+NOT+repo%3AScottPrzy%2Freact-native+NOT+repo%3Agabrieldonadel%2Freact-native-visionos+NOT+repo%3AGabriel2308%2FTestes-Soft+NOT+repo%3Adawnzs03%2FflakyBuild+NOT+repo%3Acga2351%2Fcode+NOT+repo%3Astreeg%2Ftcc+NOT+repo%3Asoftware-mansion-labs%2Freact-native-swiftui+NOT+repo%3Apkcsecurity%2Fdecompiled-lightbulb+com.facebook.react.views.modal.ReactModalHostManager). ## Changelog: [INTERNAL] - Make com.facebook.react.views.modal.ReactModalHostManager internal ## Test Plan: ```bash yarn test-android yarn android ```
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/51002/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/51002/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/51001
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/51001/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/51001/comments
https://api.github.com/repos/facebook/react-native/issues/51001/events
https://github.com/facebook/react-native/pull/51001
3,029,438,511
PR_kwDOAbrxp86UaBlm
51,001
Make `FabricEventEmitter` internal
{ "login": "mateoguzmana", "id": 20783123, "node_id": "MDQ6VXNlcjIwNzgzMTIz", "avatar_url": "https://avatars.githubusercontent.com/u/20783123?v=4", "gravatar_id": "", "url": "https://api.github.com/users/mateoguzmana", "html_url": "https://github.com/mateoguzmana", "followers_url": "https://api.github.com/users/mateoguzmana/followers", "following_url": "https://api.github.com/users/mateoguzmana/following{/other_user}", "gists_url": "https://api.github.com/users/mateoguzmana/gists{/gist_id}", "starred_url": "https://api.github.com/users/mateoguzmana/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/mateoguzmana/subscriptions", "organizations_url": "https://api.github.com/users/mateoguzmana/orgs", "repos_url": "https://api.github.com/users/mateoguzmana/repos", "events_url": "https://api.github.com/users/mateoguzmana/events{/privacy}", "received_events_url": "https://api.github.com/users/mateoguzmana/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 3253537094, "node_id": "MDU6TGFiZWwzMjUzNTM3MDk0", "url": "https://api.github.com/repos/facebook/react-native/labels/Shared%20with%20Meta", "name": "Shared with Meta", "color": "BFD4F2", "default": false, "description": "Applied via automation to indicate that an Issue or Pull Request has been shared with the team." } ]
closed
false
null
[]
null
3
2025-04-29T20:16:16
2025-04-30T19:37:01
2025-04-30T19:36:51
COLLABORATOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/51001", "html_url": "https://github.com/facebook/react-native/pull/51001", "diff_url": "https://github.com/facebook/react-native/pull/51001.diff", "patch_url": "https://github.com/facebook/react-native/pull/51001.patch", "merged_at": null }
## Summary: This class can be internalized as part of the initiative to reduce the public API surface. I've checked there are [no relevant OSS usages](https://github.com/search?type=code&q=NOT+is%3Afork+NOT+org%3Afacebook+NOT+repo%3Areact-native-tvos%2Freact-native-tvos+NOT+repo%3Anuagoz%2Freact-native+NOT+repo%3A2lambda123%2Freact-native+NOT+repo%3Abeanchips%2Ffacebookreactnative+NOT+repo%3AfabOnReact%2Freact-native-notes+NOT+user%3Ahuntie+NOT+user%3Acortinico+NOT+repo%3AMaxdev18%2Fpowersync_app+NOT+repo%3Acarter-0%2Finstagram-decompiled+NOT+repo%3Am0mosenpai%2Finstadamn+NOT+repo%3AA-Star100%2FA-Star100-AUG2-2024+NOT+repo%3Alclnrd%2Fdetox-scrollview-reproductible+NOT+repo%3ADionisisChytiris%2FWorldWiseTrivia_Main+NOT+repo%3Apast3l%2Fhi2+NOT+repo%3AoneDotpy%2FCaribouQuest+NOT+repo%3Abejayoharen%2Fdailytodo+NOT+repo%3Amolangning%2Freversing-discord+NOT+repo%3AScottPrzy%2Freact-native+NOT+repo%3Agabrieldonadel%2Freact-native-visionos+NOT+repo%3AGabriel2308%2FTestes-Soft+NOT+repo%3Adawnzs03%2FflakyBuild+NOT+repo%3Acga2351%2Fcode+NOT+repo%3Astreeg%2Ftcc+NOT+repo%3Asoftware-mansion-labs%2Freact-native-swiftui+NOT+repo%3Apkcsecurity%2Fdecompiled-lightbulb+com.facebook.react.fabric.events.FabricEventEmitter). ## Changelog: [INTERNAL] - Make com.facebook.react.fabric.events.FabricEventEmitter internal ## Test Plan: ```bash yarn test-android yarn android ```
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/51001/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/51001/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/51000
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/51000/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/51000/comments
https://api.github.com/repos/facebook/react-native/issues/51000/events
https://github.com/facebook/react-native/pull/51000
3,029,365,730
PR_kwDOAbrxp86UZxQK
51,000
introduce more tests for edge cases for view culling
{ "login": "sammy-SC", "id": 1733610, "node_id": "MDQ6VXNlcjE3MzM2MTA=", "avatar_url": "https://avatars.githubusercontent.com/u/1733610?v=4", "gravatar_id": "", "url": "https://api.github.com/users/sammy-SC", "html_url": "https://github.com/sammy-SC", "followers_url": "https://api.github.com/users/sammy-SC/followers", "following_url": "https://api.github.com/users/sammy-SC/following{/other_user}", "gists_url": "https://api.github.com/users/sammy-SC/gists{/gist_id}", "starred_url": "https://api.github.com/users/sammy-SC/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/sammy-SC/subscriptions", "organizations_url": "https://api.github.com/users/sammy-SC/orgs", "repos_url": "https://api.github.com/users/sammy-SC/repos", "events_url": "https://api.github.com/users/sammy-SC/events{/privacy}", "received_events_url": "https://api.github.com/users/sammy-SC/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
3
2025-04-29T19:46:23
2025-04-29T22:01:04
2025-04-29T22:00:48
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/51000", "html_url": "https://github.com/facebook/react-native/pull/51000", "diff_url": "https://github.com/facebook/react-native/pull/51000.diff", "patch_url": "https://github.com/facebook/react-native/pull/51000.patch", "merged_at": null }
Summary: changelog: [internal] # Why so many tests? Differentiator has two modes: regular and reparenting. The reparenting one is almost a completely separate Differentiator, effectively doubling the complexity. It handles quite a few different special cases and is not covered by any reasonable tests, so here I am adding the tests to make sure every branch of the reparenting Differentiator is traversed. Reviewed By: lenaic Differential Revision: D73845746
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/51000/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/51000/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50999
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50999/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50999/comments
https://api.github.com/repos/facebook/react-native/issues/50999/events
https://github.com/facebook/react-native/issues/50999
3,029,150,019
I_kwDOAbrxp860jSlD
50,999
React Native breaks in basic monorepo setup
{ "login": "jefersoneiji", "id": 44307139, "node_id": "MDQ6VXNlcjQ0MzA3MTM5", "avatar_url": "https://avatars.githubusercontent.com/u/44307139?v=4", "gravatar_id": "", "url": "https://api.github.com/users/jefersoneiji", "html_url": "https://github.com/jefersoneiji", "followers_url": "https://api.github.com/users/jefersoneiji/followers", "following_url": "https://api.github.com/users/jefersoneiji/following{/other_user}", "gists_url": "https://api.github.com/users/jefersoneiji/gists{/gist_id}", "starred_url": "https://api.github.com/users/jefersoneiji/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/jefersoneiji/subscriptions", "organizations_url": "https://api.github.com/users/jefersoneiji/orgs", "repos_url": "https://api.github.com/users/jefersoneiji/repos", "events_url": "https://api.github.com/users/jefersoneiji/events{/privacy}", "received_events_url": "https://api.github.com/users/jefersoneiji/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 1794148347, "node_id": "MDU6TGFiZWwxNzk0MTQ4MzQ3", "url": "https://api.github.com/repos/facebook/react-native/labels/Needs:%20Triage%20:mag:", "name": "Needs: Triage :mag:", "color": "bfd4f2", "default": false, "description": "" } ]
closed
false
null
[]
null
0
2025-04-29T18:15:03
2025-04-29T20:30:25
2025-04-29T20:30:25
NONE
null
null
null
null
### Description I set up a managed monorepo using [Turborepo](https://turborepo.com/docs/getting-started/installation) and initialized a React Native app in the apps directory. Everything seemed to be working initially, but I encountered several path-related errors when attempting to start and build the app — all indicating `path not found` issues. At this point, the only remaining error appears to be related to `hermesc.exe` I've already spent nearly two days troubleshooting without success. This happens in the android build using `./gradlew assembleRelease` from the `android` directory. [These are the changes I did to support the monorepo setup.](https://github.com/jefersoneiji/monorepo-issue/commit/4e39010649e54f7c54203957d2c732f6ba5f8847) [This is the full error log](https://github.com/jefersoneiji/monorepo-issue/blob/master/react-native-full-log.txt) ![Image](https://github.com/user-attachments/assets/658007d8-71db-43b4-9c59-6669611eb2e8) . ### Steps to reproduce 1. Install the reproducible code 2. Execute `pnpm install` from the monorepo root 3. From withing the RN app root execute `pnpm start` 4. Make sure to have a device available wheter a physical device or simulator 5. In a separate window execute `./gradle assembleRelease --debug --info --stacktrace` from the android dir in RN ### React Native Version 0.79.1 ### Affected Platforms Runtime - Android ### Output of `npx @react-native-community/cli info` ```text ***Although it reports that the Android SDK is not found, the build still completes successfully. The missing packages are actually installed in the monorepo’s node_modules directory, located above the React Native project root.*** PS C:\Users\code_\Downloads\monorepo-error\apps\mockApp> npx @react-native-community/cli info info Fetching system and libraries information... System: OS: Windows 11 10.0.26100 CPU: (12) x64 13th Gen Intel(R) Core(TM) i5-13420H Memory: 2.62 GB / 15.53 GB Binaries: Node: version: 22.14.0 path: C:\nvm4w\nodejs\node.EXE Yarn: Not Found npm: version: 10.9.2 path: C:\nvm4w\nodejs\npm.CMD Watchman: Not Found SDKs: Android SDK: Not Found Windows SDK: AllowDevelopmentWithoutDevLicense: Disabled IDEs: Android Studio: AI-243.24978.46.2431.13208083 Visual Studio: - 17.13.35931.197 (Visual Studio Community 2022) Languages: Java: 20.0.2 Ruby: Not Found npmPackages: "@react-native-community/cli": Not Found react: Not Found react-native: Not Found react-native-windows: Not Found npmGlobalPackages: "*react-native*": Not Found Android: hermesEnabled: true newArchEnabled: true iOS: hermesEnabled: Not found newArchEnabled: Not found ``` ### Stacktrace or Logs ```text 2025-04-29T15:11:45.232-0300 [LIFECYCLE] [class org.gradle.internal.buildevents.TaskExecutionLogger] 2025-04-29T15:11:45.232-0300 [LIFECYCLE] [class org.gradle.internal.buildevents.TaskExecutionLogger] > Task :app:createBundleReleaseJsAndAssets FAILED 2025-04-29T15:11:45.259-0300 [QUIET] [system.out] Done copying assets 2025-04-29T15:11:45.414-0300 [DEBUG] [org.gradle.process.internal.DefaultExecHandle] Changing state to: SUCCEEDED 2025-04-29T15:11:45.414-0300 [DEBUG] [org.gradle.process.internal.DefaultExecHandle] Process 'command 'cmd'' finished with exit value 0 (state: SUCCEEDED) 2025-04-29T15:11:45.415-0300 [INFO] [org.gradle.process.internal.DefaultExecHandle] Starting process 'command 'cmd''. Working directory: C:\Users\code_\Downloads\monorepo-error\apps\mockApp Command: cmd /c ..\..\..\..\node_modules\react-native\sdks\hermesc\win64-bin\hermesc -w -emit-binary -max-diagnostic-width=80 -out android\app\build\generated\assets\createBundleReleaseJsAndAssets\index.android.bundle.hbc android\app\build\generated\assets\createBundleReleaseJsAndAssets\index.android.bundle -O -output-source-map 2025-04-29T15:11:45.415-0300 [DEBUG] [org.gradle.process.internal.DefaultExecHandle] Changing state to: STARTING 2025-04-29T15:11:45.415-0300 [DEBUG] [org.gradle.process.internal.DefaultExecHandle] Waiting until process started: command 'cmd'. 2025-04-29T15:11:45.418-0300 [DEBUG] [org.gradle.process.internal.DefaultExecHandle] Changing state to: STARTED 2025-04-29T15:11:45.418-0300 [DEBUG] [org.gradle.process.internal.ExecHandleRunner] waiting until streams are handled... 2025-04-29T15:11:45.418-0300 [INFO] [org.gradle.process.internal.DefaultExecHandle] Successfully started process 'command 'cmd'' 2025-04-29T15:11:45.456-0300 [ERROR] [system.err] O sistema n´┐¢o pode encontrar o caminho especificado. 2025-04-29T15:11:45.458-0300 [DEBUG] [org.gradle.process.internal.DefaultExecHandle] Changing state to: FAILED 2025-04-29T15:11:45.458-0300 [DEBUG] [org.gradle.process.internal.DefaultExecHandle] Process 'command 'cmd'' finished with exit value 1 (state: FAILED) ``` ### MANDATORY Reproducer https://github.com/jefersoneiji/monorepo-issue ### Screenshots and Videos https://github.com/user-attachments/assets/8ce81546-9a60-4734-b0e8-87a4a70ac460
{ "login": "jefersoneiji", "id": 44307139, "node_id": "MDQ6VXNlcjQ0MzA3MTM5", "avatar_url": "https://avatars.githubusercontent.com/u/44307139?v=4", "gravatar_id": "", "url": "https://api.github.com/users/jefersoneiji", "html_url": "https://github.com/jefersoneiji", "followers_url": "https://api.github.com/users/jefersoneiji/followers", "following_url": "https://api.github.com/users/jefersoneiji/following{/other_user}", "gists_url": "https://api.github.com/users/jefersoneiji/gists{/gist_id}", "starred_url": "https://api.github.com/users/jefersoneiji/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/jefersoneiji/subscriptions", "organizations_url": "https://api.github.com/users/jefersoneiji/orgs", "repos_url": "https://api.github.com/users/jefersoneiji/repos", "events_url": "https://api.github.com/users/jefersoneiji/events{/privacy}", "received_events_url": "https://api.github.com/users/jefersoneiji/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50999/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50999/timeline
null
not_planned
{ "total": 0, "completed": 0, "percent_completed": 0 }
false
https://api.github.com/repos/facebook/react-native/issues/50998
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50998/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50998/comments
https://api.github.com/repos/facebook/react-native/issues/50998/events
https://github.com/facebook/react-native/pull/50998
3,029,114,784
PR_kwDOAbrxp86UY7vW
50,998
Back out "Migrate ReactActivity"
{ "login": "cortinico", "id": 3001957, "node_id": "MDQ6VXNlcjMwMDE5NTc=", "avatar_url": "https://avatars.githubusercontent.com/u/3001957?v=4", "gravatar_id": "", "url": "https://api.github.com/users/cortinico", "html_url": "https://github.com/cortinico", "followers_url": "https://api.github.com/users/cortinico/followers", "following_url": "https://api.github.com/users/cortinico/following{/other_user}", "gists_url": "https://api.github.com/users/cortinico/gists{/gist_id}", "starred_url": "https://api.github.com/users/cortinico/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cortinico/subscriptions", "organizations_url": "https://api.github.com/users/cortinico/orgs", "repos_url": "https://api.github.com/users/cortinico/repos", "events_url": "https://api.github.com/users/cortinico/events{/privacy}", "received_events_url": "https://api.github.com/users/cortinico/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
3
2025-04-29T17:58:31
2025-04-30T04:53:59
2025-04-30T04:53:46
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50998", "html_url": "https://github.com/facebook/react-native/pull/50998", "diff_url": "https://github.com/facebook/react-native/pull/50998.diff", "patch_url": "https://github.com/facebook/react-native/pull/50998.patch", "merged_at": null }
Summary: I'm reverting this as this change is too disruptive for the OSS ecosystem. It will break ALL the apps written in Kotlin and it's coming too close to the branch cut which is in less than one week. We need to re-do this migration in a non breaking manner after the branch cut as this is highly disruptive for little benefit at this point Changelog [Android][Changed] - Back out "[RN][Kotlin] Migrate ReactActivity" Original commit changeset: 936263100ca9 Original Phabricator Diff: D73507044 Differential Revision: D73864144
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50998/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50998/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50997
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50997/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50997/comments
https://api.github.com/repos/facebook/react-native/issues/50997/events
https://github.com/facebook/react-native/pull/50997
3,029,096,617
PR_kwDOAbrxp86UY31h
50,997
Delete ShadowTreeRevision on background thread
{ "login": "rozele", "id": 1106239, "node_id": "MDQ6VXNlcjExMDYyMzk=", "avatar_url": "https://avatars.githubusercontent.com/u/1106239?v=4", "gravatar_id": "", "url": "https://api.github.com/users/rozele", "html_url": "https://github.com/rozele", "followers_url": "https://api.github.com/users/rozele/followers", "following_url": "https://api.github.com/users/rozele/following{/other_user}", "gists_url": "https://api.github.com/users/rozele/gists{/gist_id}", "starred_url": "https://api.github.com/users/rozele/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/rozele/subscriptions", "organizations_url": "https://api.github.com/users/rozele/orgs", "repos_url": "https://api.github.com/users/rozele/repos", "events_url": "https://api.github.com/users/rozele/events{/privacy}", "received_events_url": "https://api.github.com/users/rozele/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
42
2025-04-29T17:49:42
2025-05-05T14:47:30
2025-05-05T14:47:20
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50997", "html_url": "https://github.com/facebook/react-native/pull/50997", "diff_url": "https://github.com/facebook/react-native/pull/50997.diff", "patch_url": "https://github.com/facebook/react-native/pull/50997.patch", "merged_at": null }
Summary: In some apps, we spend a non-trivial amount of time calling ShadowNode destructors on the UI thread. A simple way to avoid stalling the UI thread is to move the `baseRevision_` instance to a data structure that is cleared on a background thread, so it's tree of ShadowNode shared_ptrs are released (and in most cases destroyed) on the background thread. To minimize thread initialization costs, this change adds an AsyncDestructor helper that uses a single background thread and a queue of to-be-destroyed objects that are released in a run loop. This change is also guarded by a feature flag so we can keep an eye out for potential memory leaks. ## Changelog [Internal] Differential Revision: D73688009
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50997/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50997/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50996
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50996/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50996/comments
https://api.github.com/repos/facebook/react-native/issues/50996/events
https://github.com/facebook/react-native/pull/50996
3,029,037,030
PR_kwDOAbrxp86UYq4H
50,996
Add internal support for PerformanceResourceTiming
{ "login": "huntie", "id": 2547783, "node_id": "MDQ6VXNlcjI1NDc3ODM=", "avatar_url": "https://avatars.githubusercontent.com/u/2547783?v=4", "gravatar_id": "", "url": "https://api.github.com/users/huntie", "html_url": "https://github.com/huntie", "followers_url": "https://api.github.com/users/huntie/followers", "following_url": "https://api.github.com/users/huntie/following{/other_user}", "gists_url": "https://api.github.com/users/huntie/gists{/gist_id}", "starred_url": "https://api.github.com/users/huntie/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/huntie/subscriptions", "organizations_url": "https://api.github.com/users/huntie/orgs", "repos_url": "https://api.github.com/users/huntie/repos", "events_url": "https://api.github.com/users/huntie/events{/privacy}", "received_events_url": "https://api.github.com/users/huntie/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
7
2025-04-29T17:21:21
2025-05-02T05:45:08
2025-05-02T05:44:56
MEMBER
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50996", "html_url": "https://github.com/facebook/react-native/pull/50996", "diff_url": "https://github.com/facebook/react-native/pull/50996.diff", "patch_url": "https://github.com/facebook/react-native/pull/50996.patch", "merged_at": null }
Summary: Adds a representation of the [`PerformanceResourceTiming`](https://developer.mozilla.org/en-US/docs/Web/API/PerformanceResourceTiming) event type to the Web Performance subsystem, ahead of integration with our network event reporting. Changelog: [Internal] Differential Revision: D73861431
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50996/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50996/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50995
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50995/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50995/comments
https://api.github.com/repos/facebook/react-native/issues/50995/events
https://github.com/facebook/react-native/pull/50995
3,029,036,989
PR_kwDOAbrxp86UYq3i
50,995
Refactor PerformanceEntry as std::variant
{ "login": "huntie", "id": 2547783, "node_id": "MDQ6VXNlcjI1NDc3ODM=", "avatar_url": "https://avatars.githubusercontent.com/u/2547783?v=4", "gravatar_id": "", "url": "https://api.github.com/users/huntie", "html_url": "https://github.com/huntie", "followers_url": "https://api.github.com/users/huntie/followers", "following_url": "https://api.github.com/users/huntie/following{/other_user}", "gists_url": "https://api.github.com/users/huntie/gists{/gist_id}", "starred_url": "https://api.github.com/users/huntie/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/huntie/subscriptions", "organizations_url": "https://api.github.com/users/huntie/orgs", "repos_url": "https://api.github.com/users/huntie/repos", "events_url": "https://api.github.com/users/huntie/events{/privacy}", "received_events_url": "https://api.github.com/users/huntie/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
6
2025-04-29T17:21:19
2025-05-02T05:45:05
2025-05-02T05:44:55
MEMBER
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50995", "html_url": "https://github.com/facebook/react-native/pull/50995", "diff_url": "https://github.com/facebook/react-native/pull/50995.diff", "patch_url": "https://github.com/facebook/react-native/pull/50995.patch", "merged_at": null }
Summary: Refactors our previous single-struct representation for `PerformanceEntry` ([see MDN](https://developer.mozilla.org/en-US/docs/Web/API/PerformanceEntry)) as a `std::variant` — to precisely switch between the possible `PerformanceEntry` variations. This maps closely to the `PerformanceEntry` type inheritance in the web spec, and makes this type substantially cleaner to extend and work with in D73861431. Changelog: [Internal] Differential Revision: D73860532
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50995/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50995/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50994
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50994/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50994/comments
https://api.github.com/repos/facebook/react-native/issues/50994/events
https://github.com/facebook/react-native/pull/50994
3,028,723,014
PR_kwDOAbrxp86UXnSZ
50,994
fbsource//xplat/js/react-native-github/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/animated:animatedAndroid
{ "login": "javache", "id": 5676, "node_id": "MDQ6VXNlcjU2NzY=", "avatar_url": "https://avatars.githubusercontent.com/u/5676?v=4", "gravatar_id": "", "url": "https://api.github.com/users/javache", "html_url": "https://github.com/javache", "followers_url": "https://api.github.com/users/javache/followers", "following_url": "https://api.github.com/users/javache/following{/other_user}", "gists_url": "https://api.github.com/users/javache/gists{/gist_id}", "starred_url": "https://api.github.com/users/javache/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/javache/subscriptions", "organizations_url": "https://api.github.com/users/javache/orgs", "repos_url": "https://api.github.com/users/javache/repos", "events_url": "https://api.github.com/users/javache/events{/privacy}", "received_events_url": "https://api.github.com/users/javache/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
3
2025-04-29T15:15:02
2025-05-08T10:11:10
2025-05-08T10:11:10
MEMBER
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50994", "html_url": "https://github.com/facebook/react-native/pull/50994", "diff_url": "https://github.com/facebook/react-native/pull/50994.diff", "patch_url": "https://github.com/facebook/react-native/pull/50994.patch", "merged_at": null }
Differential Revision: D73840008
{ "login": "javache", "id": 5676, "node_id": "MDQ6VXNlcjU2NzY=", "avatar_url": "https://avatars.githubusercontent.com/u/5676?v=4", "gravatar_id": "", "url": "https://api.github.com/users/javache", "html_url": "https://github.com/javache", "followers_url": "https://api.github.com/users/javache/followers", "following_url": "https://api.github.com/users/javache/following{/other_user}", "gists_url": "https://api.github.com/users/javache/gists{/gist_id}", "starred_url": "https://api.github.com/users/javache/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/javache/subscriptions", "organizations_url": "https://api.github.com/users/javache/orgs", "repos_url": "https://api.github.com/users/javache/repos", "events_url": "https://api.github.com/users/javache/events{/privacy}", "received_events_url": "https://api.github.com/users/javache/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50994/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50994/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50993
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50993/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50993/comments
https://api.github.com/repos/facebook/react-native/issues/50993/events
https://github.com/facebook/react-native/pull/50993
3,028,699,189
PR_kwDOAbrxp86UXiB2
50,993
Deploy 0.269.1 to xplat
{ "login": "alexmckenley", "id": 3639670, "node_id": "MDQ6VXNlcjM2Mzk2NzA=", "avatar_url": "https://avatars.githubusercontent.com/u/3639670?v=4", "gravatar_id": "", "url": "https://api.github.com/users/alexmckenley", "html_url": "https://github.com/alexmckenley", "followers_url": "https://api.github.com/users/alexmckenley/followers", "following_url": "https://api.github.com/users/alexmckenley/following{/other_user}", "gists_url": "https://api.github.com/users/alexmckenley/gists{/gist_id}", "starred_url": "https://api.github.com/users/alexmckenley/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/alexmckenley/subscriptions", "organizations_url": "https://api.github.com/users/alexmckenley/orgs", "repos_url": "https://api.github.com/users/alexmckenley/repos", "events_url": "https://api.github.com/users/alexmckenley/events{/privacy}", "received_events_url": "https://api.github.com/users/alexmckenley/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
3
2025-04-29T15:07:41
2025-04-29T17:27:57
2025-04-29T17:27:42
NONE
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50993", "html_url": "https://github.com/facebook/react-native/pull/50993", "diff_url": "https://github.com/facebook/react-native/pull/50993.diff", "patch_url": "https://github.com/facebook/react-native/pull/50993.patch", "merged_at": null }
Summary: Changelog: [Internal] Reviewed By: SamChou19815 Differential Revision: D73853679
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50993/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50993/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50992
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50992/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50992/comments
https://api.github.com/repos/facebook/react-native/issues/50992/events
https://github.com/facebook/react-native/pull/50992
3,028,628,994
PR_kwDOAbrxp86UXSx3
50,992
fix crash when host pause called and mCurrentActivity is null
{ "login": "scubapup", "id": 2773187, "node_id": "MDQ6VXNlcjI3NzMxODc=", "avatar_url": "https://avatars.githubusercontent.com/u/2773187?v=4", "gravatar_id": "", "url": "https://api.github.com/users/scubapup", "html_url": "https://github.com/scubapup", "followers_url": "https://api.github.com/users/scubapup/followers", "following_url": "https://api.github.com/users/scubapup/following{/other_user}", "gists_url": "https://api.github.com/users/scubapup/gists{/gist_id}", "starred_url": "https://api.github.com/users/scubapup/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/scubapup/subscriptions", "organizations_url": "https://api.github.com/users/scubapup/orgs", "repos_url": "https://api.github.com/users/scubapup/repos", "events_url": "https://api.github.com/users/scubapup/events{/privacy}", "received_events_url": "https://api.github.com/users/scubapup/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
3
2025-04-29T14:45:17
2025-04-29T15:56:51
2025-04-29T15:56:42
NONE
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50992", "html_url": "https://github.com/facebook/react-native/pull/50992", "diff_url": "https://github.com/facebook/react-native/pull/50992.diff", "patch_url": "https://github.com/facebook/react-native/pull/50992.patch", "merged_at": null }
Summary: shouldnt happen but when it does it shouldnt crash some more fix for P1798860939 Reviewed By: cortinico Differential Revision: D73852655
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50992/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50992/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50991
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50991/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50991/comments
https://api.github.com/repos/facebook/react-native/issues/50991/events
https://github.com/facebook/react-native/pull/50991
3,028,605,536
PR_kwDOAbrxp86UXN7f
50,991
Refactor event dispatching logic to improve readability and performance slightly
{ "login": "rubennorte", "id": 117921, "node_id": "MDQ6VXNlcjExNzkyMQ==", "avatar_url": "https://avatars.githubusercontent.com/u/117921?v=4", "gravatar_id": "", "url": "https://api.github.com/users/rubennorte", "html_url": "https://github.com/rubennorte", "followers_url": "https://api.github.com/users/rubennorte/followers", "following_url": "https://api.github.com/users/rubennorte/following{/other_user}", "gists_url": "https://api.github.com/users/rubennorte/gists{/gist_id}", "starred_url": "https://api.github.com/users/rubennorte/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/rubennorte/subscriptions", "organizations_url": "https://api.github.com/users/rubennorte/orgs", "repos_url": "https://api.github.com/users/rubennorte/repos", "events_url": "https://api.github.com/users/rubennorte/events{/privacy}", "received_events_url": "https://api.github.com/users/rubennorte/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
2
2025-04-29T14:37:27
2025-04-29T17:16:57
2025-04-29T17:16:27
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50991", "html_url": "https://github.com/facebook/react-native/pull/50991", "diff_url": "https://github.com/facebook/react-native/pull/50991.diff", "patch_url": "https://github.com/facebook/react-native/pull/50991.patch", "merged_at": null }
Summary: Changelog: [internal] TSIA. Differential Revision: D73853068
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50991/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50991/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50990
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50990/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50990/comments
https://api.github.com/repos/facebook/react-native/issues/50990/events
https://github.com/facebook/react-native/pull/50990
3,028,556,201
PR_kwDOAbrxp86UXDC6
50,990
[RN][CI] Fix E2E tests for template
{ "login": "cipolleschi", "id": 11162307, "node_id": "MDQ6VXNlcjExMTYyMzA3", "avatar_url": "https://avatars.githubusercontent.com/u/11162307?v=4", "gravatar_id": "", "url": "https://api.github.com/users/cipolleschi", "html_url": "https://github.com/cipolleschi", "followers_url": "https://api.github.com/users/cipolleschi/followers", "following_url": "https://api.github.com/users/cipolleschi/following{/other_user}", "gists_url": "https://api.github.com/users/cipolleschi/gists{/gist_id}", "starred_url": "https://api.github.com/users/cipolleschi/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cipolleschi/subscriptions", "organizations_url": "https://api.github.com/users/cipolleschi/orgs", "repos_url": "https://api.github.com/users/cipolleschi/repos", "events_url": "https://api.github.com/users/cipolleschi/events{/privacy}", "received_events_url": "https://api.github.com/users/cipolleschi/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" } ]
closed
false
null
[]
null
4
2025-04-29T14:22:45
2025-04-29T16:17:30
2025-04-29T16:17:17
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50990", "html_url": "https://github.com/facebook/react-native/pull/50990", "diff_url": "https://github.com/facebook/react-native/pull/50990.diff", "patch_url": "https://github.com/facebook/react-native/pull/50990.patch", "merged_at": null }
## Summary: With the redesign of the new app screen, the E2E tests against the template started failing because we don't have a `Step One` string anymore. This change should fix them. ## Changelog: [Internal] - Fix Template E2E tests ## Test Plan: tested by running the E2E tests on this PR
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50990/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50990/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50989
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50989/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50989/comments
https://api.github.com/repos/facebook/react-native/issues/50989/events
https://github.com/facebook/react-native/pull/50989
3,028,546,868
PR_kwDOAbrxp86UXA-O
50,989
Add Fantom test for Fabric event dispatching
{ "login": "rubennorte", "id": 117921, "node_id": "MDQ6VXNlcjExNzkyMQ==", "avatar_url": "https://avatars.githubusercontent.com/u/117921?v=4", "gravatar_id": "", "url": "https://api.github.com/users/rubennorte", "html_url": "https://github.com/rubennorte", "followers_url": "https://api.github.com/users/rubennorte/followers", "following_url": "https://api.github.com/users/rubennorte/following{/other_user}", "gists_url": "https://api.github.com/users/rubennorte/gists{/gist_id}", "starred_url": "https://api.github.com/users/rubennorte/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/rubennorte/subscriptions", "organizations_url": "https://api.github.com/users/rubennorte/orgs", "repos_url": "https://api.github.com/users/rubennorte/repos", "events_url": "https://api.github.com/users/rubennorte/events{/privacy}", "received_events_url": "https://api.github.com/users/rubennorte/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
2
2025-04-29T14:20:08
2025-04-29T17:16:41
2025-04-29T17:16:25
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50989", "html_url": "https://github.com/facebook/react-native/pull/50989", "diff_url": "https://github.com/facebook/react-native/pull/50989.diff", "patch_url": "https://github.com/facebook/react-native/pull/50989.patch", "merged_at": null }
Summary: Changelog: [internal] Just adding a test suite to verify the behavior of event dispatching in Fabric (especially around event priorities, automatic determination based on ContinuousStart/ContinuousEnd and unique events). This also surfaced a bug where we incorrectly batch unique and non-unique events together (see the disabled test). Differential Revision: D73849218
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50989/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50989/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50988
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50988/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50988/comments
https://api.github.com/repos/facebook/react-native/issues/50988/events
https://github.com/facebook/react-native/pull/50988
3,028,307,205
PR_kwDOAbrxp86UWLvb
50,988
Fix bug when dispatching unique and non-unique events of the same type on the same target
{ "login": "rubennorte", "id": 117921, "node_id": "MDQ6VXNlcjExNzkyMQ==", "avatar_url": "https://avatars.githubusercontent.com/u/117921?v=4", "gravatar_id": "", "url": "https://api.github.com/users/rubennorte", "html_url": "https://github.com/rubennorte", "followers_url": "https://api.github.com/users/rubennorte/followers", "following_url": "https://api.github.com/users/rubennorte/following{/other_user}", "gists_url": "https://api.github.com/users/rubennorte/gists{/gist_id}", "starred_url": "https://api.github.com/users/rubennorte/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/rubennorte/subscriptions", "organizations_url": "https://api.github.com/users/rubennorte/orgs", "repos_url": "https://api.github.com/users/rubennorte/repos", "events_url": "https://api.github.com/users/rubennorte/events{/privacy}", "received_events_url": "https://api.github.com/users/rubennorte/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
3
2025-04-29T13:15:39
2025-04-29T17:16:53
2025-04-29T17:16:26
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50988", "html_url": "https://github.com/facebook/react-native/pull/50988", "diff_url": "https://github.com/facebook/react-native/pull/50988.diff", "patch_url": "https://github.com/facebook/react-native/pull/50988.patch", "merged_at": null }
Summary: Changelog: [internal] This fixes a potential bug where we coalesce unique events with non-unique ones of the same type and target. Not marked as a bug fix in the changelog because this wouldn't happen in practice, as we always dispatch events of a given type the same way (all unique or all non-unique). Differential Revision: D73849222
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50988/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50988/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50987
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50987/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50987/comments
https://api.github.com/repos/facebook/react-native/issues/50987/events
https://github.com/facebook/react-native/pull/50987
3,028,302,444
PR_kwDOAbrxp86UWKq8
50,987
Add isUnique option in RawEvent and refactor EventQueue to use it
{ "login": "rubennorte", "id": 117921, "node_id": "MDQ6VXNlcjExNzkyMQ==", "avatar_url": "https://avatars.githubusercontent.com/u/117921?v=4", "gravatar_id": "", "url": "https://api.github.com/users/rubennorte", "html_url": "https://github.com/rubennorte", "followers_url": "https://api.github.com/users/rubennorte/followers", "following_url": "https://api.github.com/users/rubennorte/following{/other_user}", "gists_url": "https://api.github.com/users/rubennorte/gists{/gist_id}", "starred_url": "https://api.github.com/users/rubennorte/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/rubennorte/subscriptions", "organizations_url": "https://api.github.com/users/rubennorte/orgs", "repos_url": "https://api.github.com/users/rubennorte/repos", "events_url": "https://api.github.com/users/rubennorte/events{/privacy}", "received_events_url": "https://api.github.com/users/rubennorte/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
4
2025-04-29T13:14:28
2025-04-29T17:16:48
2025-04-29T17:16:26
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50987", "html_url": "https://github.com/facebook/react-native/pull/50987", "diff_url": "https://github.com/facebook/react-native/pull/50987.diff", "patch_url": "https://github.com/facebook/react-native/pull/50987.patch", "merged_at": null }
Summary: Changelog: [internal] This adds a new `isUnique` option in `RawEvent` to determine if it's unique (whether it should be coalesced with other unique events of the same type and target). This effectively makes `dispatchUniqueEvent` redundant, as we can use `dispatchEvent` with a `RawEvent` marked as unique. This will allow us to fix the bug we found in the new tests for event dispatching, where non-unique events of a given type where being coalesced with non-unique events of the same type. Differential Revision: D73849220
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50987/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50987/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50986
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50986/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50986/comments
https://api.github.com/repos/facebook/react-native/issues/50986/events
https://github.com/facebook/react-native/pull/50986
3,028,283,551
PR_kwDOAbrxp86UWGgW
50,986
Expose event priorities in Fantom and JS
{ "login": "rubennorte", "id": 117921, "node_id": "MDQ6VXNlcjExNzkyMQ==", "avatar_url": "https://avatars.githubusercontent.com/u/117921?v=4", "gravatar_id": "", "url": "https://api.github.com/users/rubennorte", "html_url": "https://github.com/rubennorte", "followers_url": "https://api.github.com/users/rubennorte/followers", "following_url": "https://api.github.com/users/rubennorte/following{/other_user}", "gists_url": "https://api.github.com/users/rubennorte/gists{/gist_id}", "starred_url": "https://api.github.com/users/rubennorte/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/rubennorte/subscriptions", "organizations_url": "https://api.github.com/users/rubennorte/orgs", "repos_url": "https://api.github.com/users/rubennorte/repos", "events_url": "https://api.github.com/users/rubennorte/events{/privacy}", "received_events_url": "https://api.github.com/users/rubennorte/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
4
2025-04-29T13:09:02
2025-04-29T17:16:34
2025-04-29T17:16:24
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50986", "html_url": "https://github.com/facebook/react-native/pull/50986", "diff_url": "https://github.com/facebook/react-native/pull/50986.diff", "patch_url": "https://github.com/facebook/react-native/pull/50986.patch", "merged_at": null }
Summary: Changelog: [internal] This just exposes some enum values and methods that we forgot to expose in a few interfaces. Differential Revision: D73849221
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50986/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50986/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50985
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50985/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50985/comments
https://api.github.com/repos/facebook/react-native/issues/50985/events
https://github.com/facebook/react-native/pull/50985
3,028,207,347
PR_kwDOAbrxp86UV2bE
50,985
Avoid copying samples list when serializing
{ "login": "hoxyq", "id": 28902667, "node_id": "MDQ6VXNlcjI4OTAyNjY3", "avatar_url": "https://avatars.githubusercontent.com/u/28902667?v=4", "gravatar_id": "", "url": "https://api.github.com/users/hoxyq", "html_url": "https://github.com/hoxyq", "followers_url": "https://api.github.com/users/hoxyq/followers", "following_url": "https://api.github.com/users/hoxyq/following{/other_user}", "gists_url": "https://api.github.com/users/hoxyq/gists{/gist_id}", "starred_url": "https://api.github.com/users/hoxyq/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/hoxyq/subscriptions", "organizations_url": "https://api.github.com/users/hoxyq/orgs", "repos_url": "https://api.github.com/users/hoxyq/repos", "events_url": "https://api.github.com/users/hoxyq/events{/privacy}", "received_events_url": "https://api.github.com/users/hoxyq/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
4
2025-04-29T12:47:17
2025-04-29T19:07:04
2025-04-29T19:06:51
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50985", "html_url": "https://github.com/facebook/react-native/pull/50985", "diff_url": "https://github.com/facebook/react-native/pull/50985.diff", "patch_url": "https://github.com/facebook/react-native/pull/50985.patch", "merged_at": null }
Summary: # Changelog: [Internal] There may be tens of thousands of samples stored, so we should avoid copying it. I don't think we should restrict it from being copied, though, but we don't need it to copy in this case. Reviewed By: huntie, dannysu Differential Revision: D73106950
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50985/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50985/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50984
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50984/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50984/comments
https://api.github.com/repos/facebook/react-native/issues/50984/events
https://github.com/facebook/react-native/pull/50984
3,028,207,013
PR_kwDOAbrxp86UV2V5
50,984
TraceEventProfile as plain data structs
{ "login": "hoxyq", "id": 28902667, "node_id": "MDQ6VXNlcjI4OTAyNjY3", "avatar_url": "https://avatars.githubusercontent.com/u/28902667?v=4", "gravatar_id": "", "url": "https://api.github.com/users/hoxyq", "html_url": "https://github.com/hoxyq", "followers_url": "https://api.github.com/users/hoxyq/followers", "following_url": "https://api.github.com/users/hoxyq/following{/other_user}", "gists_url": "https://api.github.com/users/hoxyq/gists{/gist_id}", "starred_url": "https://api.github.com/users/hoxyq/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/hoxyq/subscriptions", "organizations_url": "https://api.github.com/users/hoxyq/orgs", "repos_url": "https://api.github.com/users/hoxyq/repos", "events_url": "https://api.github.com/users/hoxyq/events{/privacy}", "received_events_url": "https://api.github.com/users/hoxyq/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
4
2025-04-29T12:47:16
2025-04-29T19:06:58
2025-04-29T19:06:50
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50984", "html_url": "https://github.com/facebook/react-native/pull/50984", "diff_url": "https://github.com/facebook/react-native/pull/50984.diff", "patch_url": "https://github.com/facebook/react-native/pull/50984.patch", "merged_at": null }
Summary: # Changelog: [Internal] We are only using these struct to define how they will be serialize before sending over CDP, no need for custom constructors. Also updated the naming of the serialization method to align with other parts of the project: `asDynamic()` -> `toDynamic()`. Reviewed By: huntie Differential Revision: D73774114
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50984/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50984/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50983
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50983/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50983/comments
https://api.github.com/repos/facebook/react-native/issues/50983/events
https://github.com/facebook/react-native/pull/50983
3,027,924,753
PR_kwDOAbrxp86UU4uz
50,983
Update ReactNativeFeatureFlags imports to fb_internal entrypoints
{ "login": "huntie", "id": 2547783, "node_id": "MDQ6VXNlcjI1NDc3ODM=", "avatar_url": "https://avatars.githubusercontent.com/u/2547783?v=4", "gravatar_id": "", "url": "https://api.github.com/users/huntie", "html_url": "https://github.com/huntie", "followers_url": "https://api.github.com/users/huntie/followers", "following_url": "https://api.github.com/users/huntie/following{/other_user}", "gists_url": "https://api.github.com/users/huntie/gists{/gist_id}", "starred_url": "https://api.github.com/users/huntie/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/huntie/subscriptions", "organizations_url": "https://api.github.com/users/huntie/orgs", "repos_url": "https://api.github.com/users/huntie/repos", "events_url": "https://api.github.com/users/huntie/events{/privacy}", "received_events_url": "https://api.github.com/users/huntie/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
open
false
null
[]
null
2
2025-04-29T11:09:45
2025-04-29T15:00:01
null
MEMBER
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50983", "html_url": "https://github.com/facebook/react-native/pull/50983", "diff_url": "https://github.com/facebook/react-native/pull/50983.diff", "patch_url": "https://github.com/facebook/react-native/pull/50983.patch", "merged_at": null }
Summary: Follows D73770609. Changelog: [Internal] Differential Revision: D73775827
null
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50983/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50983/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50982
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50982/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50982/comments
https://api.github.com/repos/facebook/react-native/issues/50982/events
https://github.com/facebook/react-native/pull/50982
3,027,915,167
PR_kwDOAbrxp86UU2r9
50,982
Move transforms to build-types
{ "login": "j-piasecki", "id": 21055725, "node_id": "MDQ6VXNlcjIxMDU1NzI1", "avatar_url": "https://avatars.githubusercontent.com/u/21055725?v=4", "gravatar_id": "", "url": "https://api.github.com/users/j-piasecki", "html_url": "https://github.com/j-piasecki", "followers_url": "https://api.github.com/users/j-piasecki/followers", "following_url": "https://api.github.com/users/j-piasecki/following{/other_user}", "gists_url": "https://api.github.com/users/j-piasecki/gists{/gist_id}", "starred_url": "https://api.github.com/users/j-piasecki/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/j-piasecki/subscriptions", "organizations_url": "https://api.github.com/users/j-piasecki/orgs", "repos_url": "https://api.github.com/users/j-piasecki/repos", "events_url": "https://api.github.com/users/j-piasecki/events{/privacy}", "received_events_url": "https://api.github.com/users/j-piasecki/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1282006477, "node_id": "MDU6TGFiZWwxMjgyMDA2NDc3", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Software%20Mansion", "name": "p: Software Mansion", "color": "0052cc", "default": false, "description": "Partner: Software Mansion" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
4
2025-04-29T11:06:06
2025-05-12T05:54:15
2025-05-12T05:54:06
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50982", "html_url": "https://github.com/facebook/react-native/pull/50982", "diff_url": "https://github.com/facebook/react-native/pull/50982.diff", "patch_url": "https://github.com/facebook/react-native/pull/50982.patch", "merged_at": null }
Summary: Changelog: [Internal] Differential Revision: D73667539
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50982/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50982/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50981
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50981/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50981/comments
https://api.github.com/repos/facebook/react-native/issues/50981/events
https://github.com/facebook/react-native/pull/50981
3,027,810,143
PR_kwDOAbrxp86UUf5A
50,981
Undo breaking change in ReactActivitiy
{ "login": "cortinico", "id": 3001957, "node_id": "MDQ6VXNlcjMwMDE5NTc=", "avatar_url": "https://avatars.githubusercontent.com/u/3001957?v=4", "gravatar_id": "", "url": "https://api.github.com/users/cortinico", "html_url": "https://github.com/cortinico", "followers_url": "https://api.github.com/users/cortinico/followers", "following_url": "https://api.github.com/users/cortinico/following{/other_user}", "gists_url": "https://api.github.com/users/cortinico/gists{/gist_id}", "starred_url": "https://api.github.com/users/cortinico/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cortinico/subscriptions", "organizations_url": "https://api.github.com/users/cortinico/orgs", "repos_url": "https://api.github.com/users/cortinico/repos", "events_url": "https://api.github.com/users/cortinico/events{/privacy}", "received_events_url": "https://api.github.com/users/cortinico/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
open
false
null
[]
null
3
2025-04-29T10:22:34
2025-04-29T14:56:49
null
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50981", "html_url": "https://github.com/facebook/react-native/pull/50981", "diff_url": "https://github.com/facebook/react-native/pull/50981.diff", "patch_url": "https://github.com/facebook/react-native/pull/50981.patch", "merged_at": null }
Summary: This is a partial revert of D73507044 Differential Revision: D73844213
null
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50981/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50981/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50980
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50980/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50980/comments
https://api.github.com/repos/facebook/react-native/issues/50980/events
https://github.com/facebook/react-native/pull/50980
3,027,804,505
PR_kwDOAbrxp86UUesS
50,980
fbsource//xplat/js/react-native-github/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/views/scroll:scrollAndroid
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
1
2025-04-29T10:20:13
2025-05-08T10:11:59
2025-05-08T10:11:59
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50980", "html_url": "https://github.com/facebook/react-native/pull/50980", "diff_url": "https://github.com/facebook/react-native/pull/50980.diff", "patch_url": "https://github.com/facebook/react-native/pull/50980.patch", "merged_at": null }
Reviewed By: cortinico Differential Revision: D73840593
{ "login": "javache", "id": 5676, "node_id": "MDQ6VXNlcjU2NzY=", "avatar_url": "https://avatars.githubusercontent.com/u/5676?v=4", "gravatar_id": "", "url": "https://api.github.com/users/javache", "html_url": "https://github.com/javache", "followers_url": "https://api.github.com/users/javache/followers", "following_url": "https://api.github.com/users/javache/following{/other_user}", "gists_url": "https://api.github.com/users/javache/gists{/gist_id}", "starred_url": "https://api.github.com/users/javache/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/javache/subscriptions", "organizations_url": "https://api.github.com/users/javache/orgs", "repos_url": "https://api.github.com/users/javache/repos", "events_url": "https://api.github.com/users/javache/events{/privacy}", "received_events_url": "https://api.github.com/users/javache/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50980/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50980/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50979
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50979/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50979/comments
https://api.github.com/repos/facebook/react-native/issues/50979/events
https://github.com/facebook/react-native/pull/50979
3,027,710,632
PR_kwDOAbrxp86UUKLk
50,979
[RN][Nightlies] Integrate sending notification to discord
{ "login": "cipolleschi", "id": 11162307, "node_id": "MDQ6VXNlcjExMTYyMzA3", "avatar_url": "https://avatars.githubusercontent.com/u/11162307?v=4", "gravatar_id": "", "url": "https://api.github.com/users/cipolleschi", "html_url": "https://github.com/cipolleschi", "followers_url": "https://api.github.com/users/cipolleschi/followers", "following_url": "https://api.github.com/users/cipolleschi/following{/other_user}", "gists_url": "https://api.github.com/users/cipolleschi/gists{/gist_id}", "starred_url": "https://api.github.com/users/cipolleschi/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cipolleschi/subscriptions", "organizations_url": "https://api.github.com/users/cipolleschi/orgs", "repos_url": "https://api.github.com/users/cipolleschi/repos", "events_url": "https://api.github.com/users/cipolleschi/events{/privacy}", "received_events_url": "https://api.github.com/users/cipolleschi/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" } ]
closed
false
null
[]
null
3
2025-04-29T09:43:50
2025-04-29T16:01:14
2025-04-29T16:01:03
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50979", "html_url": "https://github.com/facebook/react-native/pull/50979", "diff_url": "https://github.com/facebook/react-native/pull/50979.diff", "patch_url": "https://github.com/facebook/react-native/pull/50979.patch", "merged_at": null }
## Summary: As part of the work to integrate libraries with our nightlies, we want to receive a message when the libraries are failing to build on discord. This will help us catch breaking changes early on and onboarding library maintainer as soon as possible. ## Changelog: [Internal] - Integrate with Discord when nightly fails ## Test Plan: GHA
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50979/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50979/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50978
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50978/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50978/comments
https://api.github.com/repos/facebook/react-native/issues/50978/events
https://github.com/facebook/react-native/pull/50978
3,027,680,286
PR_kwDOAbrxp86UUDZd
50,978
Fix typo in ScrollView.d.ts
{ "login": "cortinico", "id": 3001957, "node_id": "MDQ6VXNlcjMwMDE5NTc=", "avatar_url": "https://avatars.githubusercontent.com/u/3001957?v=4", "gravatar_id": "", "url": "https://api.github.com/users/cortinico", "html_url": "https://github.com/cortinico", "followers_url": "https://api.github.com/users/cortinico/followers", "following_url": "https://api.github.com/users/cortinico/following{/other_user}", "gists_url": "https://api.github.com/users/cortinico/gists{/gist_id}", "starred_url": "https://api.github.com/users/cortinico/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cortinico/subscriptions", "organizations_url": "https://api.github.com/users/cortinico/orgs", "repos_url": "https://api.github.com/users/cortinico/repos", "events_url": "https://api.github.com/users/cortinico/events{/privacy}", "received_events_url": "https://api.github.com/users/cortinico/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" } ]
closed
false
null
[]
null
3
2025-04-29T09:35:11
2025-04-29T11:05:11
2025-04-29T11:05:01
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50978", "html_url": "https://github.com/facebook/react-native/pull/50978", "diff_url": "https://github.com/facebook/react-native/pull/50978.diff", "patch_url": "https://github.com/facebook/react-native/pull/50978.patch", "merged_at": null }
## Summary: Fixes https://github.com/facebook/react-native/issues/50969 ## Changelog: [INTERNAL] - ## Test Plan: N/A
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50978/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50978/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50977
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50977/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50977/comments
https://api.github.com/repos/facebook/react-native/issues/50977/events
https://github.com/facebook/react-native/pull/50977
3,027,664,469
PR_kwDOAbrxp86UT_4N
50,977
Update Metro dependencies to 0.82.2
{ "login": "huntie", "id": 2547783, "node_id": "MDQ6VXNlcjI1NDc3ODM=", "avatar_url": "https://avatars.githubusercontent.com/u/2547783?v=4", "gravatar_id": "", "url": "https://api.github.com/users/huntie", "html_url": "https://github.com/huntie", "followers_url": "https://api.github.com/users/huntie/followers", "following_url": "https://api.github.com/users/huntie/following{/other_user}", "gists_url": "https://api.github.com/users/huntie/gists{/gist_id}", "starred_url": "https://api.github.com/users/huntie/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/huntie/subscriptions", "organizations_url": "https://api.github.com/users/huntie/orgs", "repos_url": "https://api.github.com/users/huntie/repos", "events_url": "https://api.github.com/users/huntie/events{/privacy}", "received_events_url": "https://api.github.com/users/huntie/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
3
2025-04-29T09:30:29
2025-04-29T13:28:45
2025-04-29T13:28:29
MEMBER
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50977", "html_url": "https://github.com/facebook/react-native/pull/50977", "diff_url": "https://github.com/facebook/react-native/pull/50977.diff", "patch_url": "https://github.com/facebook/react-native/pull/50977.patch", "merged_at": null }
Summary: Updates all `metro*` dependencies to the latest `^0.82.2`. Changelog: [Internal] Differential Revision: D73841705
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50977/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50977/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50976
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50976/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50976/comments
https://api.github.com/repos/facebook/react-native/issues/50976/events
https://github.com/facebook/react-native/pull/50976
3,027,663,670
PR_kwDOAbrxp86UT_se
50,976
Migrate `rn-tester` codegen types imports to use root exported `CodegenTypes` namespace
{ "login": "coado", "id": 64146291, "node_id": "MDQ6VXNlcjY0MTQ2Mjkx", "avatar_url": "https://avatars.githubusercontent.com/u/64146291?v=4", "gravatar_id": "", "url": "https://api.github.com/users/coado", "html_url": "https://github.com/coado", "followers_url": "https://api.github.com/users/coado/followers", "following_url": "https://api.github.com/users/coado/following{/other_user}", "gists_url": "https://api.github.com/users/coado/gists{/gist_id}", "starred_url": "https://api.github.com/users/coado/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/coado/subscriptions", "organizations_url": "https://api.github.com/users/coado/orgs", "repos_url": "https://api.github.com/users/coado/repos", "events_url": "https://api.github.com/users/coado/events{/privacy}", "received_events_url": "https://api.github.com/users/coado/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1282006477, "node_id": "MDU6TGFiZWwxMjgyMDA2NDc3", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Software%20Mansion", "name": "p: Software Mansion", "color": "0052cc", "default": false, "description": "Partner: Software Mansion" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
3
2025-04-29T09:30:17
2025-04-29T13:09:37
2025-04-29T13:09:28
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50976", "html_url": "https://github.com/facebook/react-native/pull/50976", "diff_url": "https://github.com/facebook/react-native/pull/50976.diff", "patch_url": "https://github.com/facebook/react-native/pull/50976.patch", "merged_at": null }
Summary: This is the second part of the migration of `rn-tester` package to use root imports. In this diff the `CodegenTypes` namespace is used to define Codegen primitives. Changelog: [Internal] Reviewed By: huntie Differential Revision: D73780584
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50976/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50976/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50975
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50975/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50975/comments
https://api.github.com/repos/facebook/react-native/issues/50975/events
https://github.com/facebook/react-native/pull/50975
3,027,661,472
PR_kwDOAbrxp86UT_NY
50,975
Attach docs in AnimatedExports
{ "login": "coado", "id": 64146291, "node_id": "MDQ6VXNlcjY0MTQ2Mjkx", "avatar_url": "https://avatars.githubusercontent.com/u/64146291?v=4", "gravatar_id": "", "url": "https://api.github.com/users/coado", "html_url": "https://github.com/coado", "followers_url": "https://api.github.com/users/coado/followers", "following_url": "https://api.github.com/users/coado/following{/other_user}", "gists_url": "https://api.github.com/users/coado/gists{/gist_id}", "starred_url": "https://api.github.com/users/coado/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/coado/subscriptions", "organizations_url": "https://api.github.com/users/coado/orgs", "repos_url": "https://api.github.com/users/coado/repos", "events_url": "https://api.github.com/users/coado/events{/privacy}", "received_events_url": "https://api.github.com/users/coado/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1282006477, "node_id": "MDU6TGFiZWwxMjgyMDA2NDc3", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Software%20Mansion", "name": "p: Software Mansion", "color": "0052cc", "default": false, "description": "Partner: Software Mansion" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
3
2025-04-29T09:29:25
2025-04-29T12:09:26
2025-04-29T12:09:15
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50975", "html_url": "https://github.com/facebook/react-native/pull/50975", "diff_url": "https://github.com/facebook/react-native/pull/50975.diff", "patch_url": "https://github.com/facebook/react-native/pull/50975.patch", "merged_at": null }
Summary: Re-defining types in `AnimatedExports.js.flow` shadows their documentation located in `AnimatedImplementation`. Moving them to the `AnimatedExports` fixes the issue for generated TS types. Changelog: [Internal] Differential Revision: D73840908
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50975/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50975/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50974
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50974/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50974/comments
https://api.github.com/repos/facebook/react-native/issues/50974/events
https://github.com/facebook/react-native/pull/50974
3,027,504,431
PR_kwDOAbrxp86UTdH2
50,974
Update exports field to include the types entry
{ "login": "j-piasecki", "id": 21055725, "node_id": "MDQ6VXNlcjIxMDU1NzI1", "avatar_url": "https://avatars.githubusercontent.com/u/21055725?v=4", "gravatar_id": "", "url": "https://api.github.com/users/j-piasecki", "html_url": "https://github.com/j-piasecki", "followers_url": "https://api.github.com/users/j-piasecki/followers", "following_url": "https://api.github.com/users/j-piasecki/following{/other_user}", "gists_url": "https://api.github.com/users/j-piasecki/gists{/gist_id}", "starred_url": "https://api.github.com/users/j-piasecki/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/j-piasecki/subscriptions", "organizations_url": "https://api.github.com/users/j-piasecki/orgs", "repos_url": "https://api.github.com/users/j-piasecki/repos", "events_url": "https://api.github.com/users/j-piasecki/events{/privacy}", "received_events_url": "https://api.github.com/users/j-piasecki/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1282006477, "node_id": "MDU6TGFiZWwxMjgyMDA2NDc3", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Software%20Mansion", "name": "p: Software Mansion", "color": "0052cc", "default": false, "description": "Partner: Software Mansion" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
4
2025-04-29T08:31:39
2025-04-29T14:41:17
2025-04-29T14:41:06
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50974", "html_url": "https://github.com/facebook/react-native/pull/50974", "diff_url": "https://github.com/facebook/react-native/pull/50974.diff", "patch_url": "https://github.com/facebook/react-native/pull/50974.patch", "merged_at": null }
Summary: Changelog: [Internal] Differential Revision: D73835331
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50974/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50974/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50973
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50973/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50973/comments
https://api.github.com/repos/facebook/react-native/issues/50973/events
https://github.com/facebook/react-native/issues/50973
3,027,443,850
I_kwDOAbrxp860cyCK
50,973
App crash when build debug with build configuration
{ "login": "truongngodang", "id": 19460459, "node_id": "MDQ6VXNlcjE5NDYwNDU5", "avatar_url": "https://avatars.githubusercontent.com/u/19460459?v=4", "gravatar_id": "", "url": "https://api.github.com/users/truongngodang", "html_url": "https://github.com/truongngodang", "followers_url": "https://api.github.com/users/truongngodang/followers", "following_url": "https://api.github.com/users/truongngodang/following{/other_user}", "gists_url": "https://api.github.com/users/truongngodang/gists{/gist_id}", "starred_url": "https://api.github.com/users/truongngodang/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/truongngodang/subscriptions", "organizations_url": "https://api.github.com/users/truongngodang/orgs", "repos_url": "https://api.github.com/users/truongngodang/repos", "events_url": "https://api.github.com/users/truongngodang/events{/privacy}", "received_events_url": "https://api.github.com/users/truongngodang/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 1794376073, "node_id": "MDU6TGFiZWwxNzk0Mzc2MDcz", "url": "https://api.github.com/repos/facebook/react-native/labels/Needs:%20Repro", "name": "Needs: Repro", "color": "d4c5f9", "default": false, "description": "This issue could be improved with a clear list of steps to reproduce the issue." }, { "id": 4139937040, "node_id": "LA_kwDOAbrxp872wm0Q", "url": "https://api.github.com/repos/facebook/react-native/labels/Resolution:%20Answered", "name": "Resolution: Answered", "color": "C2E0C6", "default": false, "description": "When the issue is resolved with a simple answer" } ]
closed
false
null
[]
null
6
2025-04-29T08:06:05
2025-05-07T10:17:09
2025-05-07T04:27:45
NONE
null
null
null
null
### Description When creating a new build configuration (e.g., ProdDebug) cloned from Debug in Xcode, and building the app in Debug mode, the application crashes immediately on launch. This issue occurs on React Native [0.79.1] with Swift-based AppDelegate. Crash is related to facebook::jsi::Function::call inside Runtime. ### Steps to reproduce 1. Open the iOS project in Xcode. 2. Duplicate an existing Debug build configuration and name it ProdDebug. 3. Set up a scheme to use ProdDebug. 4. Build and run the app. 5. The app crashes immediately after launch. ### React Native Version 0.79.1 ### Affected Platforms Runtime - iOS ### Output of `npx @react-native-community/cli info` ```text System: OS: macOS 15.4.1 CPU: (8) arm64 Apple M1 Memory: 151.14 MB / 16.00 GB Shell: version: "5.9" path: /bin/zsh Binaries: Node: version: 22.14.0 path: /usr/local/bin/node Yarn: version: 1.22.11 path: /usr/local/bin/yarn npm: version: 10.9.2 path: /usr/local/bin/npm Watchman: version: 2024.05.06.00 path: /opt/homebrew/bin/watchman Managers: CocoaPods: version: 1.15.2 path: /opt/homebrew/bin/pod SDKs: iOS SDK: Platforms: - DriverKit 24.1 - iOS 18.1 - macOS 15.1 - tvOS 18.1 - visionOS 2.1 - watchOS 11.1 Android SDK: API Levels: - "23" - "28" - "29" - "30" - "31" - "32" - "33" - "34" Build Tools: - 28.0.3 - 29.0.2 - 30.0.2 - 30.0.3 - 31.0.0 - 33.0.0 - 33.0.2 - 34.0.0 System Images: - android-26 | ARM 64 v8a - android-28 | Google ARM64-V8a Play ARM 64 v8a - android-31 | Google APIs ARM 64 v8a - android-33 | Google Play ARM 64 v8a Android NDK: Not Found IDEs: Android Studio: 2024.3 AI-243.24978.46.2431.13208083 Xcode: version: 16.1/16B40 path: /usr/bin/xcodebuild Languages: Java: version: 17.0.11 path: /opt/homebrew/opt/openjdk@17/bin/javac Ruby: version: 2.6.10 path: /usr/bin/ruby npmPackages: "@react-native-community/cli": installed: 18.0.0 wanted: 18.0.0 react: installed: 19.0.0 wanted: 19.0.0 react-native: installed: 0.79.1 wanted: 0.79.1 react-native-macos: Not Found npmGlobalPackages: "*react-native*": Not Found Android: hermesEnabled: true newArchEnabled: true iOS: hermesEnabled: true newArchEnabled: true ``` ### Stacktrace or Logs ```text Crashed: com.facebook.react.runtime.JavaScript EXC_BAD_ACCESS KERN_INVALID_ADDRESS 0x0000000000000028 ``` ### MANDATORY Reproducer None ### Screenshots and Videos _No response_
{ "login": "truongngodang", "id": 19460459, "node_id": "MDQ6VXNlcjE5NDYwNDU5", "avatar_url": "https://avatars.githubusercontent.com/u/19460459?v=4", "gravatar_id": "", "url": "https://api.github.com/users/truongngodang", "html_url": "https://github.com/truongngodang", "followers_url": "https://api.github.com/users/truongngodang/followers", "following_url": "https://api.github.com/users/truongngodang/following{/other_user}", "gists_url": "https://api.github.com/users/truongngodang/gists{/gist_id}", "starred_url": "https://api.github.com/users/truongngodang/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/truongngodang/subscriptions", "organizations_url": "https://api.github.com/users/truongngodang/orgs", "repos_url": "https://api.github.com/users/truongngodang/repos", "events_url": "https://api.github.com/users/truongngodang/events{/privacy}", "received_events_url": "https://api.github.com/users/truongngodang/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50973/reactions", "total_count": 1, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 1, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50973/timeline
null
completed
{ "total": 0, "completed": 0, "percent_completed": 0 }
false
https://api.github.com/repos/facebook/react-native/issues/50972
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50972/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50972/comments
https://api.github.com/repos/facebook/react-native/issues/50972/events
https://github.com/facebook/react-native/issues/50972
3,027,241,346
I_kwDOAbrxp860cAmC
50,972
Getting Error - Unable to find module redbox with React Native version 0.79.0
{ "login": "iZooto-App-Push", "id": 60651012, "node_id": "MDQ6VXNlcjYwNjUxMDEy", "avatar_url": "https://avatars.githubusercontent.com/u/60651012?v=4", "gravatar_id": "", "url": "https://api.github.com/users/iZooto-App-Push", "html_url": "https://github.com/iZooto-App-Push", "followers_url": "https://api.github.com/users/iZooto-App-Push/followers", "following_url": "https://api.github.com/users/iZooto-App-Push/following{/other_user}", "gists_url": "https://api.github.com/users/iZooto-App-Push/gists{/gist_id}", "starred_url": "https://api.github.com/users/iZooto-App-Push/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/iZooto-App-Push/subscriptions", "organizations_url": "https://api.github.com/users/iZooto-App-Push/orgs", "repos_url": "https://api.github.com/users/iZooto-App-Push/repos", "events_url": "https://api.github.com/users/iZooto-App-Push/events{/privacy}", "received_events_url": "https://api.github.com/users/iZooto-App-Push/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 470324689, "node_id": "MDU6TGFiZWw0NzAzMjQ2ODk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Resolution:%20For%20Stack%20Overflow", "name": "Resolution: For Stack Overflow", "color": "d4c5f9", "default": false, "description": "A question for Stack Overflow. Applying this label will cause issue to be closed." }, { "id": 1794148347, "node_id": "MDU6TGFiZWwxNzk0MTQ4MzQ3", "url": "https://api.github.com/repos/facebook/react-native/labels/Needs:%20Triage%20:mag:", "name": "Needs: Triage :mag:", "color": "bfd4f2", "default": false, "description": "" }, { "id": 1794380150, "node_id": "MDU6TGFiZWwxNzk0MzgwMTUw", "url": "https://api.github.com/repos/facebook/react-native/labels/Newer%20Patch%20Available", "name": "Newer Patch Available", "color": "d4c5f9", "default": false, "description": "" } ]
closed
false
null
[]
null
5
2025-04-29T06:43:32
2025-04-30T07:41:58
2025-04-30T07:41:57
NONE
null
null
null
null
### Description Getting Error - Unable to find module redbox with React Native version 0.79.0 ### Steps to reproduce ## Steps to Reproduce 1. Upgrade project to React Native 0.79.0 2. Run `npm start --reset-cache` or `yarn start --reset-cache` 3. Launch the app using `npx react-native run-ios` or `run-android` 4. App crashes with the redbox-related error "dependencies": { "react": "19.0.0", "react-native": "0.79.0" }, App.tsx file import React, { useEffect } from 'react'; import { Platform, View, Text } from 'react-native'; import { NativeModules, NativeEventEmitter } from 'react-native'; const { MyNativeModule } = NativeModules; const eventEmitter = new NativeEventEmitter(MyNativeModule); // Listen to token received const App: React.FC = () => { useEffect(() => { // LOG that listener is set console.log('Setting up event listener for MessageFromNative'); const subscription = eventEmitter.addListener('MessageFromNative', (event) => { try { console.log('Received event from native:', event); console.log('Received message from native:', event.message); } catch (error) { console.error('Error handling native event:', error); } }); return () => { console.log('Removing event listener for MessageFromNative'); subscription.remove(); }; }, []); return ( <View style={{ flex: 1, justifyContent: "center", alignItems: "center" }}> <Text>React Native Library for iZooto Push Notifications Service</Text> </View> ); }; export default App; [package.json](https://github.com/user-attachments/files/19954048/package.json) ### React Native Version 0.79.0 ### Affected Platforms Runtime - iOS ### Output of `npx @react-native-community/cli info` ```text System: OS: macOS 14.7.4 CPU: (8) arm64 Apple M1 Memory: 96.22 MB / 8.00 GB Shell: version: "5.9" path: /bin/zsh Binaries: Node: version: 23.11.0 path: /opt/homebrew/bin/node Yarn: version: 1.22.22 path: /opt/homebrew/bin/yarn npm: version: 10.9.2 path: /opt/homebrew/bin/npm Watchman: Not Found Managers: CocoaPods: version: 1.16.2 path: /opt/homebrew/bin/pod SDKs: iOS SDK: Platforms: - DriverKit 24.2 - iOS 18.2 - macOS 15.2 - tvOS 18.2 - visionOS 2.2 - watchOS 11.2 Android SDK: Not Found IDEs: Android Studio: 2024.3 AI-243.24978.46.2431.13208083 Xcode: version: 16.2/16C5032a path: /usr/bin/xcodebuild Languages: Java: version: 17.0.14 path: /usr/bin/javac Ruby: version: 3.4.2 path: /opt/homebrew/opt/ruby/bin/ruby npmPackages: "@react-native-community/cli": installed: 18.0.0 wanted: 18.0.0 react: installed: 19.0.0 wanted: 19.0.0 react-native: installed: 0.79.0 wanted: 0.79.0 react-native-macos: Not Found npmGlobalPackages: "*react-native*": Not Found Android: hermesEnabled: true newArchEnabled: true iOS: hermesEnabled: true newArchEnabled: true info React Native v0.79.1 is now available (your project is running on v0.79.0). ``` ### Stacktrace or Logs ```text Unable to find module for RedBox App.tsx file ``` ### MANDATORY Reproducer https://github.com/iZooto-App-Push/ ### Screenshots and Videos _No response_
{ "login": "react-native-bot", "id": 32686087, "node_id": "MDQ6VXNlcjMyNjg2MDg3", "avatar_url": "https://avatars.githubusercontent.com/u/32686087?v=4", "gravatar_id": "", "url": "https://api.github.com/users/react-native-bot", "html_url": "https://github.com/react-native-bot", "followers_url": "https://api.github.com/users/react-native-bot/followers", "following_url": "https://api.github.com/users/react-native-bot/following{/other_user}", "gists_url": "https://api.github.com/users/react-native-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/react-native-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/react-native-bot/subscriptions", "organizations_url": "https://api.github.com/users/react-native-bot/orgs", "repos_url": "https://api.github.com/users/react-native-bot/repos", "events_url": "https://api.github.com/users/react-native-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/react-native-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50972/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50972/timeline
null
completed
{ "total": 0, "completed": 0, "percent_completed": 0 }
false
https://api.github.com/repos/facebook/react-native/issues/50971
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50971/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50971/comments
https://api.github.com/repos/facebook/react-native/issues/50971/events
https://github.com/facebook/react-native/pull/50971
3,026,720,120
PR_kwDOAbrxp86UQ1LP
50,971
Setup feature flag to fix double measurement of android components
{ "login": "mdvacca", "id": 515103, "node_id": "MDQ6VXNlcjUxNTEwMw==", "avatar_url": "https://avatars.githubusercontent.com/u/515103?v=4", "gravatar_id": "", "url": "https://api.github.com/users/mdvacca", "html_url": "https://github.com/mdvacca", "followers_url": "https://api.github.com/users/mdvacca/followers", "following_url": "https://api.github.com/users/mdvacca/following{/other_user}", "gists_url": "https://api.github.com/users/mdvacca/gists{/gist_id}", "starred_url": "https://api.github.com/users/mdvacca/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/mdvacca/subscriptions", "organizations_url": "https://api.github.com/users/mdvacca/orgs", "repos_url": "https://api.github.com/users/mdvacca/repos", "events_url": "https://api.github.com/users/mdvacca/events{/privacy}", "received_events_url": "https://api.github.com/users/mdvacca/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
4
2025-04-29T01:48:00
2025-04-29T20:54:12
2025-04-29T20:54:02
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50971", "html_url": "https://github.com/facebook/react-native/pull/50971", "diff_url": "https://github.com/facebook/react-native/pull/50971.diff", "patch_url": "https://github.com/facebook/react-native/pull/50971.patch", "merged_at": null }
Summary: This feature flag enables a fix of double measurement on a subset of android components changelog: [internal] internal Reviewed By: yungsters Differential Revision: D73804996
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50971/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50971/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50970
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50970/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50970/comments
https://api.github.com/repos/facebook/react-native/issues/50970/events
https://github.com/facebook/react-native/pull/50970
3,026,506,203
PR_kwDOAbrxp86UQF9S
50,970
Include offset as separate field in payloads
{ "login": "martinbooth", "id": 4383362, "node_id": "MDQ6VXNlcjQzODMzNjI=", "avatar_url": "https://avatars.githubusercontent.com/u/4383362?v=4", "gravatar_id": "", "url": "https://api.github.com/users/martinbooth", "html_url": "https://github.com/martinbooth", "followers_url": "https://api.github.com/users/martinbooth/followers", "following_url": "https://api.github.com/users/martinbooth/following{/other_user}", "gists_url": "https://api.github.com/users/martinbooth/gists{/gist_id}", "starred_url": "https://api.github.com/users/martinbooth/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/martinbooth/subscriptions", "organizations_url": "https://api.github.com/users/martinbooth/orgs", "repos_url": "https://api.github.com/users/martinbooth/repos", "events_url": "https://api.github.com/users/martinbooth/events{/privacy}", "received_events_url": "https://api.github.com/users/martinbooth/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
5
2025-04-28T23:34:35
2025-04-30T00:07:40
2025-04-30T00:07:30
NONE
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50970", "html_url": "https://github.com/facebook/react-native/pull/50970", "diff_url": "https://github.com/facebook/react-native/pull/50970.diff", "patch_url": "https://github.com/facebook/react-native/pull/50970.patch", "merged_at": null }
Summary: __onAnimatedValueUpdateReceived is called from 2 places. It is called from the onAnimatedValueUpdate subscription where the source of the values comes from here: https://fburl.com/8v2cwd2x with getValue() returning the offset + value components combined. It's also called from in the animation end callback here: https://fburl.com/h36xy2nw where the source of this value comes from https://fburl.com/sud7m7st. In this case it's accessing `nodeValue` directly rather than calling getValue() and so it only includes the value component. In this diff we pass both the value and offset in both onAnimatedValueUpdate callbacks as well as endCallback. This allows us to separate the value from the offset on the JS side and ensures we have the latest offset value from native Changelog: [Android][Fixed] - Sync offset and value from native -> js in separate fields Differential Revision: D73795619
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50970/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50970/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50969
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50969/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50969/comments
https://api.github.com/repos/facebook/react-native/issues/50969/events
https://github.com/facebook/react-native/issues/50969
3,025,840,590
I_kwDOAbrxp860WqnO
50,969
Docstring typo
{ "login": "yakovsushenok", "id": 60291094, "node_id": "MDQ6VXNlcjYwMjkxMDk0", "avatar_url": "https://avatars.githubusercontent.com/u/60291094?v=4", "gravatar_id": "", "url": "https://api.github.com/users/yakovsushenok", "html_url": "https://github.com/yakovsushenok", "followers_url": "https://api.github.com/users/yakovsushenok/followers", "following_url": "https://api.github.com/users/yakovsushenok/following{/other_user}", "gists_url": "https://api.github.com/users/yakovsushenok/gists{/gist_id}", "starred_url": "https://api.github.com/users/yakovsushenok/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/yakovsushenok/subscriptions", "organizations_url": "https://api.github.com/users/yakovsushenok/orgs", "repos_url": "https://api.github.com/users/yakovsushenok/repos", "events_url": "https://api.github.com/users/yakovsushenok/events{/privacy}", "received_events_url": "https://api.github.com/users/yakovsushenok/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 1794148631, "node_id": "MDU6TGFiZWwxNzk0MTQ4NjMx", "url": "https://api.github.com/repos/facebook/react-native/labels/Needs:%20Author%20Feedback", "name": "Needs: Author Feedback", "color": "d4c5f9", "default": false, "description": "" }, { "id": 1794376073, "node_id": "MDU6TGFiZWwxNzk0Mzc2MDcz", "url": "https://api.github.com/repos/facebook/react-native/labels/Needs:%20Repro", "name": "Needs: Repro", "color": "d4c5f9", "default": false, "description": "This issue could be improved with a clear list of steps to reproduce the issue." }, { "id": 5191728962, "node_id": "LA_kwDOAbrxp88AAAABNXN_Qg", "url": "https://api.github.com/repos/facebook/react-native/labels/Needs:%20Version%20Info", "name": "Needs: Version Info", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
5
2025-04-28T18:45:22
2025-04-29T11:05:01
2025-04-29T11:05:01
NONE
null
null
null
null
### Description There's a typo [here](https://github.com/facebook/react-native/blob/6ea24f7bb90829f0806210252dfce50ecee5666d/packages/react-native/Libraries/Components/ScrollView/ScrollView.d.ts#L368) that confused me a bit (pretty sure it should be "than"). ### Steps to reproduce Please read the docstring ### React Native Version latest ### Affected Platforms Runtime - iOS ### Output of `npx @react-native-community/cli info` ```text not applicable ``` ### Stacktrace or Logs ```text not applicable ``` ### MANDATORY Reproducer not applicable ### Screenshots and Videos _No response_
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50969/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50969/timeline
null
completed
{ "total": 0, "completed": 0, "percent_completed": 0 }
false
https://api.github.com/repos/facebook/react-native/issues/50968
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50968/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50968/comments
https://api.github.com/repos/facebook/react-native/issues/50968/events
https://github.com/facebook/react-native/issues/50968
3,025,830,753
I_kwDOAbrxp860WoNh
50,968
Android: multiline TextInput does not grow on first newline
{ "login": "roger-scopely", "id": 194855643, "node_id": "U_kgDOC51C2w", "avatar_url": "https://avatars.githubusercontent.com/u/194855643?v=4", "gravatar_id": "", "url": "https://api.github.com/users/roger-scopely", "html_url": "https://github.com/roger-scopely", "followers_url": "https://api.github.com/users/roger-scopely/followers", "following_url": "https://api.github.com/users/roger-scopely/following{/other_user}", "gists_url": "https://api.github.com/users/roger-scopely/gists{/gist_id}", "starred_url": "https://api.github.com/users/roger-scopely/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/roger-scopely/subscriptions", "organizations_url": "https://api.github.com/users/roger-scopely/orgs", "repos_url": "https://api.github.com/users/roger-scopely/repos", "events_url": "https://api.github.com/users/roger-scopely/events{/privacy}", "received_events_url": "https://api.github.com/users/roger-scopely/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 869668024, "node_id": "MDU6TGFiZWw4Njk2NjgwMjQ=", "url": "https://api.github.com/repos/facebook/react-native/labels/Component:%20TextInput", "name": "Component: TextInput", "color": "fef2c0", "default": false, "description": "Related to the TextInput component." }, { "id": 870851515, "node_id": "MDU6TGFiZWw4NzA4NTE1MTU=", "url": "https://api.github.com/repos/facebook/react-native/labels/Platform:%20Android", "name": "Platform: Android", "color": "1d76db", "default": false, "description": "Android applications." }, { "id": 872682019, "node_id": "MDU6TGFiZWw4NzI2ODIwMTk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Resolution:%20Fixed", "name": "Resolution: Fixed", "color": "0e8a16", "default": false, "description": "A PR that fixes this issue has been merged." }, { "id": 1794376073, "node_id": "MDU6TGFiZWwxNzk0Mzc2MDcz", "url": "https://api.github.com/repos/facebook/react-native/labels/Needs:%20Repro", "name": "Needs: Repro", "color": "d4c5f9", "default": false, "description": "This issue could be improved with a clear list of steps to reproduce the issue." }, { "id": 3815166274, "node_id": "LA_kwDOAbrxp87jZtFC", "url": "https://api.github.com/repos/facebook/react-native/labels/Type:%20New%20Architecture", "name": "Type: New Architecture", "color": "f9d0c4", "default": false, "description": "Issues and PRs related to new architecture (Fabric/Turbo Modules)" }, { "id": 5021085328, "node_id": "LA_kwDOAbrxp88AAAABK0eukA", "url": "https://api.github.com/repos/facebook/react-native/labels/Type:%20Unsupported%20Version", "name": "Type: Unsupported Version", "color": "ffffff", "default": false, "description": "Issues reported to a version of React Native that is no longer supported" } ]
closed
false
null
[]
null
4
2025-04-28T18:41:20
2025-04-30T10:04:59
2025-04-28T18:52:23
NONE
null
null
null
null
### Description A multiline `<TextInput>` should grow vertically to contain its contents. On Android, a single line of text followed by a newline does not grow the TextInput, and it appears too small, cutting off the text. Correct sizing resumes once there are additional characters on the second line of text. ### Steps to reproduce 1. Type some text 2. Hit return 3. notice the incorrect size of the TextInput and how text is cropped off 4. Type some more text 5. Notice the size becomes correct. Perform the above steps in the [attached reproducer Snack](https://snack.expo.dev/@roger-scopely/rn-issue-50968-repro) on Android. ### React Native Version 0.76.9 ### Affected Platforms Runtime - Android ### Areas Fabric - The New Renderer ### Output of `npx @react-native-community/cli info` ```text info Fetching system and libraries information... System: OS: macOS 15.4.1 CPU: (16) arm64 Apple M4 Max Memory: 11.64 GB / 64.00 GB Shell: version: "5.9" path: /bin/zsh Binaries: Node: version: 23.10.0 path: ~/.nvm/versions/node/v23.10.0/bin/node Yarn: version: 4.6.0 path: ~/.nvm/versions/node/v23.10.0/bin/yarn npm: version: 10.9.2 path: ~/.nvm/versions/node/v23.10.0/bin/npm Watchman: version: 2025.04.14.00 path: /opt/homebrew/bin/watchman Managers: CocoaPods: version: 1.16.2 path: /opt/homebrew/bin/pod SDKs: iOS SDK: Platforms: - DriverKit 24.4 - iOS 18.4 - macOS 15.4 - tvOS 18.4 - visionOS 2.4 - watchOS 11.4 Android SDK: Not Found IDEs: Android Studio: 2024.3 AI-243.24978.46.2431.13208083 Xcode: version: 16.3/16E140 path: /usr/bin/xcodebuild Languages: Java: version: 17.0.15 path: /Users/roger.braunstein/.jenv/shims/javac Ruby: version: 3.4.3 path: /opt/homebrew/opt/ruby/bin/ruby npmPackages: "@react-native-community/cli": Not Found react: Not Found react-native: Not Found react-native-macos: Not Found npmGlobalPackages: "*react-native*": Not Found Android: hermesEnabled: Not found newArchEnabled: Not found iOS: hermesEnabled: Not found newArchEnabled: Not found info React Native v0.79.1 is now available (your project is running on v0.76.9). info Changelog: https://github.com/facebook/react-native/releases/tag/v0.79.1 info Diff: https://react-native-community.github.io/upgrade-helper/?from=0.76.9&to=0.79.1 info For more info, check out "https://reactnative.dev/docs/upgrading?os=macos". ``` ### Stacktrace or Logs ```text [Visual issue, no crash or logs] ``` ### MANDATORY Reproducer snack.expo.dev/@roger-scopely/rn-issue-50968-repro ### Screenshots and Videos ✅ <img width="305" alt="Image" src="https://github.com/user-attachments/assets/b2a5b7a0-dde5-4f99-a5fe-6c8b4db0432b" /> ❌ <img width="305" alt="Image" src="https://github.com/user-attachments/assets/96b7cfff-8e51-4d83-aaa6-f929499d7781" /> ✅ <img width="304" alt="Image" src="https://github.com/user-attachments/assets/399e28ef-b72f-4d4b-bcec-568bc085b29e" /> https://github.com/user-attachments/assets/fad08e27-d972-4ee9-9d72-4093e7247115
{ "login": "roger-scopely", "id": 194855643, "node_id": "U_kgDOC51C2w", "avatar_url": "https://avatars.githubusercontent.com/u/194855643?v=4", "gravatar_id": "", "url": "https://api.github.com/users/roger-scopely", "html_url": "https://github.com/roger-scopely", "followers_url": "https://api.github.com/users/roger-scopely/followers", "following_url": "https://api.github.com/users/roger-scopely/following{/other_user}", "gists_url": "https://api.github.com/users/roger-scopely/gists{/gist_id}", "starred_url": "https://api.github.com/users/roger-scopely/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/roger-scopely/subscriptions", "organizations_url": "https://api.github.com/users/roger-scopely/orgs", "repos_url": "https://api.github.com/users/roger-scopely/repos", "events_url": "https://api.github.com/users/roger-scopely/events{/privacy}", "received_events_url": "https://api.github.com/users/roger-scopely/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50968/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50968/timeline
null
completed
{ "total": 0, "completed": 0, "percent_completed": 0 }
false
https://api.github.com/repos/facebook/react-native/issues/50967
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50967/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50967/comments
https://api.github.com/repos/facebook/react-native/issues/50967/events
https://github.com/facebook/react-native/pull/50967
3,025,792,249
PR_kwDOAbrxp86UNn06
50,967
Check feature flags for a11yOrder iff prop exists
{ "login": "joevilches", "id": 17124862, "node_id": "MDQ6VXNlcjE3MTI0ODYy", "avatar_url": "https://avatars.githubusercontent.com/u/17124862?v=4", "gravatar_id": "", "url": "https://api.github.com/users/joevilches", "html_url": "https://github.com/joevilches", "followers_url": "https://api.github.com/users/joevilches/followers", "following_url": "https://api.github.com/users/joevilches/following{/other_user}", "gists_url": "https://api.github.com/users/joevilches/gists{/gist_id}", "starred_url": "https://api.github.com/users/joevilches/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/joevilches/subscriptions", "organizations_url": "https://api.github.com/users/joevilches/orgs", "repos_url": "https://api.github.com/users/joevilches/repos", "events_url": "https://api.github.com/users/joevilches/events{/privacy}", "received_events_url": "https://api.github.com/users/joevilches/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
3
2025-04-28T18:29:16
2025-04-28T21:43:01
2025-04-28T21:42:46
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50967", "html_url": "https://github.com/facebook/react-native/pull/50967", "diff_url": "https://github.com/facebook/react-native/pull/50967.diff", "patch_url": "https://github.com/facebook/react-native/pull/50967.patch", "merged_at": null }
Summary: In some cases we may want to check this only if the prop exists Changelog: [Internal] Differential Revision: D73793783
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50967/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50967/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50966
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50966/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50966/comments
https://api.github.com/repos/facebook/react-native/issues/50966/events
https://github.com/facebook/react-native/pull/50966
3,025,661,988
PR_kwDOAbrxp86UNMCw
50,966
Add "./scripts/*" exports subpath
{ "login": "huntie", "id": 2547783, "node_id": "MDQ6VXNlcjI1NDc3ODM=", "avatar_url": "https://avatars.githubusercontent.com/u/2547783?v=4", "gravatar_id": "", "url": "https://api.github.com/users/huntie", "html_url": "https://github.com/huntie", "followers_url": "https://api.github.com/users/huntie/followers", "following_url": "https://api.github.com/users/huntie/following{/other_user}", "gists_url": "https://api.github.com/users/huntie/gists{/gist_id}", "starred_url": "https://api.github.com/users/huntie/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/huntie/subscriptions", "organizations_url": "https://api.github.com/users/huntie/orgs", "repos_url": "https://api.github.com/users/huntie/repos", "events_url": "https://api.github.com/users/huntie/events{/privacy}", "received_events_url": "https://api.github.com/users/huntie/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
3
2025-04-28T17:36:00
2025-04-28T18:45:26
2025-04-28T18:45:15
MEMBER
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50966", "html_url": "https://github.com/facebook/react-native/pull/50966", "diff_url": "https://github.com/facebook/react-native/pull/50966.diff", "patch_url": "https://github.com/facebook/react-native/pull/50966.patch", "merged_at": null }
Summary: Should fix non-`.js` script resolution using `require.resolve` (currently breaking CI). Changelog: [Internal] Reviewed By: mdvacca, cipolleschi, rshest Differential Revision: D73786668
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50966/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50966/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50965
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50965/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50965/comments
https://api.github.com/repos/facebook/react-native/issues/50965/events
https://github.com/facebook/react-native/pull/50965
3,025,131,126
PR_kwDOAbrxp86ULYYG
50,965
Create src/fb_internal/ directory, initially migrate VirtualView
{ "login": "huntie", "id": 2547783, "node_id": "MDQ6VXNlcjI1NDc3ODM=", "avatar_url": "https://avatars.githubusercontent.com/u/2547783?v=4", "gravatar_id": "", "url": "https://api.github.com/users/huntie", "html_url": "https://github.com/huntie", "followers_url": "https://api.github.com/users/huntie/followers", "following_url": "https://api.github.com/users/huntie/following{/other_user}", "gists_url": "https://api.github.com/users/huntie/gists{/gist_id}", "starred_url": "https://api.github.com/users/huntie/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/huntie/subscriptions", "organizations_url": "https://api.github.com/users/huntie/orgs", "repos_url": "https://api.github.com/users/huntie/repos", "events_url": "https://api.github.com/users/huntie/events{/privacy}", "received_events_url": "https://api.github.com/users/huntie/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
6
2025-04-28T14:27:23
2025-04-29T14:59:18
2025-04-29T14:55:28
MEMBER
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50965", "html_url": "https://github.com/facebook/react-native/pull/50965", "diff_url": "https://github.com/facebook/react-native/pull/50965.diff", "patch_url": "https://github.com/facebook/react-native/pull/50965.patch", "merged_at": null }
Summary: While D72228547 has recently disallowed all `./src/*` subpath imports from React Native (functionally, `./src/private/*`), we have a number of APIs that are imported from Meta product code legitimately — e.g. as part of validating under-development React Native features internally in real Meta apps. This diff defines a new, exported `./src/fb_internal/*` subpath via `package.json#exports`, which will allow us to expose select entry points for this purpose. Changelog: [Internal] Differential Revision: D73770609
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50965/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50965/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50964
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50964/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50964/comments
https://api.github.com/repos/facebook/react-native/issues/50964/events
https://github.com/facebook/react-native/pull/50964
3,025,084,268
PR_kwDOAbrxp86ULOEk
50,964
Fix all active ESLint warnings
{ "login": "huntie", "id": 2547783, "node_id": "MDQ6VXNlcjI1NDc3ODM=", "avatar_url": "https://avatars.githubusercontent.com/u/2547783?v=4", "gravatar_id": "", "url": "https://api.github.com/users/huntie", "html_url": "https://github.com/huntie", "followers_url": "https://api.github.com/users/huntie/followers", "following_url": "https://api.github.com/users/huntie/following{/other_user}", "gists_url": "https://api.github.com/users/huntie/gists{/gist_id}", "starred_url": "https://api.github.com/users/huntie/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/huntie/subscriptions", "organizations_url": "https://api.github.com/users/huntie/orgs", "repos_url": "https://api.github.com/users/huntie/repos", "events_url": "https://api.github.com/users/huntie/events{/privacy}", "received_events_url": "https://api.github.com/users/huntie/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
3
2025-04-28T14:12:37
2025-04-28T16:35:10
2025-04-28T16:35:00
MEMBER
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50964", "html_url": "https://github.com/facebook/react-native/pull/50964", "diff_url": "https://github.com/facebook/react-native/pull/50964.diff", "patch_url": "https://github.com/facebook/react-native/pull/50964.patch", "merged_at": null }
Summary: Address/supress ESLint warnings across the codebase, currently flagged on every PR via GitHub's "Unchanged files with check annotations" check. {F1977480883} Changelog: [Internal] Differential Revision: D73778510
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50964/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50964/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50963
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50963/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50963/comments
https://api.github.com/repos/facebook/react-native/issues/50963/events
https://github.com/facebook/react-native/pull/50963
3,025,030,922
PR_kwDOAbrxp86ULCrY
50,963
[codegen] Fix ImageSource require
{ "login": "jakex7", "id": 39670088, "node_id": "MDQ6VXNlcjM5NjcwMDg4", "avatar_url": "https://avatars.githubusercontent.com/u/39670088?v=4", "gravatar_id": "", "url": "https://api.github.com/users/jakex7", "html_url": "https://github.com/jakex7", "followers_url": "https://api.github.com/users/jakex7/followers", "following_url": "https://api.github.com/users/jakex7/following{/other_user}", "gists_url": "https://api.github.com/users/jakex7/gists{/gist_id}", "starred_url": "https://api.github.com/users/jakex7/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/jakex7/subscriptions", "organizations_url": "https://api.github.com/users/jakex7/orgs", "repos_url": "https://api.github.com/users/jakex7/repos", "events_url": "https://api.github.com/users/jakex7/events{/privacy}", "received_events_url": "https://api.github.com/users/jakex7/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 3253537094, "node_id": "MDU6TGFiZWwzMjUzNTM3MDk0", "url": "https://api.github.com/repos/facebook/react-native/labels/Shared%20with%20Meta", "name": "Shared with Meta", "color": "BFD4F2", "default": false, "description": "Applied via automation to indicate that an Issue or Pull Request has been shared with the team." } ]
closed
false
null
[]
null
4
2025-04-28T13:56:24
2025-05-01T14:05:34
2025-04-28T17:35:41
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50963", "html_url": "https://github.com/facebook/react-native/pull/50963", "diff_url": "https://github.com/facebook/react-native/pull/50963.diff", "patch_url": "https://github.com/facebook/react-native/pull/50963.patch", "merged_at": null }
## Summary: In react-native-svg, I found that the `Image` component stopped working starting with `react-native@0.79`. After some debugging, I traced the issue to the migration of `Libraries/Image` to the new export syntax (see https://github.com/facebook/react-native/commit/8783196ee540f8f78ce60ad20800338cc7645194). To fix this, I updated the import to match other requires, similar to https://github.com/facebook/react-native/blob/main/packages/react-native-codegen/src/generators/components/GenerateViewConfigJs.js#L84. ## Changelog: [GENERAL] [FIXED] - Fix codegen ImageSource require ## Test Plan: `validAttributes` process should be a function instead of object with a default property. Before: <img width="1041" alt="image" src="https://github.com/user-attachments/assets/9fbc9e9f-6c45-4b0b-adb8-2eb911676fe1" /> After: <img width="1005" alt="image" src="https://github.com/user-attachments/assets/ee594103-90da-4917-8252-72f4ecfc28e1" />
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50963/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50963/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50962
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50962/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50962/comments
https://api.github.com/repos/facebook/react-native/issues/50962/events
https://github.com/facebook/react-native/pull/50962
3,024,711,164
PR_kwDOAbrxp86UJ-Gg
50,962
Override `updateRuntimeShadowNodeReferencesOnCommit` for OSS
{ "login": "cipolleschi", "id": 11162307, "node_id": "MDQ6VXNlcjExMTYyMzA3", "avatar_url": "https://avatars.githubusercontent.com/u/11162307?v=4", "gravatar_id": "", "url": "https://api.github.com/users/cipolleschi", "html_url": "https://github.com/cipolleschi", "followers_url": "https://api.github.com/users/cipolleschi/followers", "following_url": "https://api.github.com/users/cipolleschi/following{/other_user}", "gists_url": "https://api.github.com/users/cipolleschi/gists{/gist_id}", "starred_url": "https://api.github.com/users/cipolleschi/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cipolleschi/subscriptions", "organizations_url": "https://api.github.com/users/cipolleschi/orgs", "repos_url": "https://api.github.com/users/cipolleschi/repos", "events_url": "https://api.github.com/users/cipolleschi/events{/privacy}", "received_events_url": "https://api.github.com/users/cipolleschi/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215116864, "node_id": "MDU6TGFiZWwxMjE1MTE2ODY0", "url": "https://api.github.com/repos/facebook/react-native/labels/Reverted", "name": "Reverted", "color": "e11d21", "default": false, "description": "" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
4
2025-04-28T12:01:42
2025-06-06T14:01:54
2025-04-28T17:58:45
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50962", "html_url": "https://github.com/facebook/react-native/pull/50962", "diff_url": "https://github.com/facebook/react-native/pull/50962.diff", "patch_url": "https://github.com/facebook/react-native/pull/50962.patch", "merged_at": null }
Summary: OSS is affected by https://github.com/facebook/react-native/issues/49694 and it is endangering the migration of multiple apps to the New Architecture. We fixed the issue but it is hidden behind feature flag while we are experimenting with it internally, to make sure it does not causes regressions. However, the fix has been verified for the reproducer code and the OSS will be beneficial for the community. We are overriding the featureFlag, enabling it for OSS. ## Changelog: [Internal] - Enable `updateRuntimeShadowNodeReferencesOnCommit` for OSS Differential Revision: D73771648
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50962/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50962/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50961
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50961/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50961/comments
https://api.github.com/repos/facebook/react-native/issues/50961/events
https://github.com/facebook/react-native/pull/50961
3,024,669,256
PR_kwDOAbrxp86UJ1Cc
50,961
Migrate ReactActivityDelegate.java -> .kt
{ "login": "rshest", "id": 495813, "node_id": "MDQ6VXNlcjQ5NTgxMw==", "avatar_url": "https://avatars.githubusercontent.com/u/495813?v=4", "gravatar_id": "", "url": "https://api.github.com/users/rshest", "html_url": "https://github.com/rshest", "followers_url": "https://api.github.com/users/rshest/followers", "following_url": "https://api.github.com/users/rshest/following{/other_user}", "gists_url": "https://api.github.com/users/rshest/gists{/gist_id}", "starred_url": "https://api.github.com/users/rshest/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/rshest/subscriptions", "organizations_url": "https://api.github.com/users/rshest/orgs", "repos_url": "https://api.github.com/users/rshest/repos", "events_url": "https://api.github.com/users/rshest/events{/privacy}", "received_events_url": "https://api.github.com/users/rshest/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
open
false
null
[]
null
1
2025-04-28T11:44:23
2025-04-28T11:44:49
null
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50961", "html_url": "https://github.com/facebook/react-native/pull/50961", "diff_url": "https://github.com/facebook/react-native/pull/50961.diff", "patch_url": "https://github.com/facebook/react-native/pull/50961.patch", "merged_at": null }
Summary: # Changelog: [Android][Changed] - ReactActivityDelegate has been migrated to Kotlin. Differential Revision: D73772287
null
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50961/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50961/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50960
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50960/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50960/comments
https://api.github.com/repos/facebook/react-native/issues/50960/events
https://github.com/facebook/react-native/pull/50960
3,024,523,105
PR_kwDOAbrxp86UJUua
50,960
Gradle to 8.14
{ "login": "cortinico", "id": 3001957, "node_id": "MDQ6VXNlcjMwMDE5NTc=", "avatar_url": "https://avatars.githubusercontent.com/u/3001957?v=4", "gravatar_id": "", "url": "https://api.github.com/users/cortinico", "html_url": "https://github.com/cortinico", "followers_url": "https://api.github.com/users/cortinico/followers", "following_url": "https://api.github.com/users/cortinico/following{/other_user}", "gists_url": "https://api.github.com/users/cortinico/gists{/gist_id}", "starred_url": "https://api.github.com/users/cortinico/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cortinico/subscriptions", "organizations_url": "https://api.github.com/users/cortinico/orgs", "repos_url": "https://api.github.com/users/cortinico/repos", "events_url": "https://api.github.com/users/cortinico/events{/privacy}", "received_events_url": "https://api.github.com/users/cortinico/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
4
2025-04-28T10:44:37
2025-05-26T10:35:04
2025-04-28T15:04:09
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50960", "html_url": "https://github.com/facebook/react-native/pull/50960", "diff_url": "https://github.com/facebook/react-native/pull/50960.diff", "patch_url": "https://github.com/facebook/react-native/pull/50960.patch", "merged_at": null }
Summary: This brings Gradle to the latest minor ahead of branch cut. Changelog: [Android] [Changed] - Gradle to 8.14 Differential Revision: D73769416
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50960/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50960/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50959
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50959/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50959/comments
https://api.github.com/repos/facebook/react-native/issues/50959/events
https://github.com/facebook/react-native/pull/50959
3,024,380,357
PR_kwDOAbrxp86UI1Mp
50,959
Update interruptible rendering test to use feature flag to fix React<>Fabric priorities
{ "login": "rubennorte", "id": 117921, "node_id": "MDQ6VXNlcjExNzkyMQ==", "avatar_url": "https://avatars.githubusercontent.com/u/117921?v=4", "gravatar_id": "", "url": "https://api.github.com/users/rubennorte", "html_url": "https://github.com/rubennorte", "followers_url": "https://api.github.com/users/rubennorte/followers", "following_url": "https://api.github.com/users/rubennorte/following{/other_user}", "gists_url": "https://api.github.com/users/rubennorte/gists{/gist_id}", "starred_url": "https://api.github.com/users/rubennorte/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/rubennorte/subscriptions", "organizations_url": "https://api.github.com/users/rubennorte/orgs", "repos_url": "https://api.github.com/users/rubennorte/repos", "events_url": "https://api.github.com/users/rubennorte/events{/privacy}", "received_events_url": "https://api.github.com/users/rubennorte/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
2
2025-04-28T09:53:59
2025-04-28T13:59:18
2025-04-28T13:59:04
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50959", "html_url": "https://github.com/facebook/react-native/pull/50959", "diff_url": "https://github.com/facebook/react-native/pull/50959.diff", "patch_url": "https://github.com/facebook/react-native/pull/50959.patch", "merged_at": null }
Changelog: [internal] This updates the test for interruptible rendering to use the feature flag that fixes priority mapping between Fabric and React. In this case, it shows how the change fixed how React Native implements the React programming model, as before this change continuous events weren't interrupting transitions (and they should): https://github.com/facebook/react/blob/c498bfce8b9baa3dd21bd0d5124eb3a4549886f1/packages/react-reconciler/src/__tests__/ReactUpdatePriority-test.js#L109 Differential Revision: D73662527
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50959/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50959/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50958
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50958/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50958/comments
https://api.github.com/repos/facebook/react-native/issues/50958/events
https://github.com/facebook/react-native/pull/50958
3,024,377,905
PR_kwDOAbrxp86UI0qR
50,958
Migrate already root exported deep imports in rn-tester.
{ "login": "coado", "id": 64146291, "node_id": "MDQ6VXNlcjY0MTQ2Mjkx", "avatar_url": "https://avatars.githubusercontent.com/u/64146291?v=4", "gravatar_id": "", "url": "https://api.github.com/users/coado", "html_url": "https://github.com/coado", "followers_url": "https://api.github.com/users/coado/followers", "following_url": "https://api.github.com/users/coado/following{/other_user}", "gists_url": "https://api.github.com/users/coado/gists{/gist_id}", "starred_url": "https://api.github.com/users/coado/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/coado/subscriptions", "organizations_url": "https://api.github.com/users/coado/orgs", "repos_url": "https://api.github.com/users/coado/repos", "events_url": "https://api.github.com/users/coado/events{/privacy}", "received_events_url": "https://api.github.com/users/coado/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1282006477, "node_id": "MDU6TGFiZWwxMjgyMDA2NDc3", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Software%20Mansion", "name": "p: Software Mansion", "color": "0052cc", "default": false, "description": "Partner: Software Mansion" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
3
2025-04-28T09:53:08
2025-04-28T14:28:07
2025-04-28T14:27:56
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50958", "html_url": "https://github.com/facebook/react-native/pull/50958", "diff_url": "https://github.com/facebook/react-native/pull/50958.diff", "patch_url": "https://github.com/facebook/react-native/pull/50958.patch", "merged_at": null }
Summary: In rn-tester package there are many react-native deep imports which will be deprecated in the future. It is a starter for migrating rn-tester to using root imports instead. Only deep imports that are already root exported are changed. This diff avoids using `CodegenTypes` as it causes build errors and will be resolved in next stages. Besides import changes, `PointerEvent` type is now also exported from the root. Changelog: [Internal] Differential Revision: D73656526
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50958/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50958/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50957
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50957/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50957/comments
https://api.github.com/repos/facebook/react-native/issues/50957/events
https://github.com/facebook/react-native/pull/50957
3,024,365,646
PR_kwDOAbrxp86UIx-Q
50,957
Refactor InterruptibleRendering Fantom test to use dispatchNativeEvent
{ "login": "rubennorte", "id": 117921, "node_id": "MDQ6VXNlcjExNzkyMQ==", "avatar_url": "https://avatars.githubusercontent.com/u/117921?v=4", "gravatar_id": "", "url": "https://api.github.com/users/rubennorte", "html_url": "https://github.com/rubennorte", "followers_url": "https://api.github.com/users/rubennorte/followers", "following_url": "https://api.github.com/users/rubennorte/following{/other_user}", "gists_url": "https://api.github.com/users/rubennorte/gists{/gist_id}", "starred_url": "https://api.github.com/users/rubennorte/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/rubennorte/subscriptions", "organizations_url": "https://api.github.com/users/rubennorte/orgs", "repos_url": "https://api.github.com/users/rubennorte/repos", "events_url": "https://api.github.com/users/rubennorte/events{/privacy}", "received_events_url": "https://api.github.com/users/rubennorte/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
4
2025-04-28T09:48:31
2025-04-28T13:59:15
2025-04-28T13:59:04
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50957", "html_url": "https://github.com/facebook/react-native/pull/50957", "diff_url": "https://github.com/facebook/react-native/pull/50957.diff", "patch_url": "https://github.com/facebook/react-native/pull/50957.patch", "merged_at": null }
Summary: Changelog: [internal] Now we can use the higher level API for event dispatching in this test. Differential Revision: D73663626
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50957/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50957/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50956
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50956/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50956/comments
https://api.github.com/repos/facebook/react-native/issues/50956/events
https://github.com/facebook/react-native/issues/50956
3,023,710,980
I_kwDOAbrxp860OisE
50,956
Upgrade issue in android from 0.74.3 to 0.79.1.Error - Could not find androidx.appcompat:appcompat:27.1.1.
{ "login": "pku-arun", "id": 54971711, "node_id": "MDQ6VXNlcjU0OTcxNzEx", "avatar_url": "https://avatars.githubusercontent.com/u/54971711?v=4", "gravatar_id": "", "url": "https://api.github.com/users/pku-arun", "html_url": "https://github.com/pku-arun", "followers_url": "https://api.github.com/users/pku-arun/followers", "following_url": "https://api.github.com/users/pku-arun/following{/other_user}", "gists_url": "https://api.github.com/users/pku-arun/gists{/gist_id}", "starred_url": "https://api.github.com/users/pku-arun/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/pku-arun/subscriptions", "organizations_url": "https://api.github.com/users/pku-arun/orgs", "repos_url": "https://api.github.com/users/pku-arun/repos", "events_url": "https://api.github.com/users/pku-arun/events{/privacy}", "received_events_url": "https://api.github.com/users/pku-arun/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 870851515, "node_id": "MDU6TGFiZWw4NzA4NTE1MTU=", "url": "https://api.github.com/repos/facebook/react-native/labels/Platform:%20Android", "name": "Platform: Android", "color": "1d76db", "default": false, "description": "Android applications." }, { "id": 872683359, "node_id": "MDU6TGFiZWw4NzI2ODMzNTk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Type:%20Invalid", "name": "Type: Invalid", "color": "ffffff", "default": false, "description": "This issue does not belong here. Applying this label will cause issue to be closed." }, { "id": 1794148631, "node_id": "MDU6TGFiZWwxNzk0MTQ4NjMx", "url": "https://api.github.com/repos/facebook/react-native/labels/Needs:%20Author%20Feedback", "name": "Needs: Author Feedback", "color": "d4c5f9", "default": false, "description": "" }, { "id": 1794376073, "node_id": "MDU6TGFiZWwxNzk0Mzc2MDcz", "url": "https://api.github.com/repos/facebook/react-native/labels/Needs:%20Repro", "name": "Needs: Repro", "color": "d4c5f9", "default": false, "description": "This issue could be improved with a clear list of steps to reproduce the issue." } ]
closed
false
null
[]
null
3
2025-04-28T05:04:03
2025-04-28T11:41:30
2025-04-28T11:41:29
NONE
null
null
null
null
### Description I upgraded my project from 0.74.3 to 0.79.1 I did all steps in react-native upgrade helper But now I am stuck with issue Could not find androidx.appcompat:appcompat:27.1.1. I removed enabaleJettifier from my gradle.properties as well ### Steps to reproduce Build in android studio or running yarn android cause this issue Clean Build is success ### React Native Version 0.79.1 ### Affected Platforms Runtime - Android ### Output of `npx @react-native-community/cli info` ```text System: OS: macOS 15.4.1 CPU: (8) arm64 Apple M2 Memory: 129.22 MB / 8.00 GB Shell: version: "5.9" path: /bin/zsh Binaries: Node: version: 23.10.0 path: /opt/homebrew/bin/node Yarn: version: 1.22.22 path: /opt/homebrew/bin/yarn npm: version: 10.9.2 path: /opt/homebrew/bin/npm Watchman: version: 2025.03.10.00 path: /opt/homebrew/bin/watchman Managers: CocoaPods: version: 1.16.2 path: /opt/homebrew/lib/ruby/gems/3.4.0/bin/pod SDKs: iOS SDK: Platforms: - DriverKit 24.2 - iOS 18.2 - macOS 15.2 - tvOS 18.2 - visionOS 2.2 - watchOS 11.2 Android SDK: API Levels: - "31" - "33" - "34" - "35" Build Tools: - 33.0.1 - 34.0.0 - 35.0.0 - 35.0.1 - 36.0.0 System Images: - android-36 | Google Play ARM 64 v8a Android NDK: Not Found IDEs: Android Studio: 2024.3 AI-243.24978.46.2431.13208083 Xcode: version: 16.2/16C5032a path: /usr/bin/xcodebuild Languages: Java: version: 17.0.14 path: /usr/bin/javac Ruby: version: 3.4.3 path: /opt/homebrew/opt/ruby/bin/ruby npmPackages: "@react-native-community/cli": installed: 18.0.0 wanted: 18.0.0 react: installed: 19.0.0 wanted: 19.0.0 react-native: installed: 0.79.1 wanted: 0.79.1 react-native-macos: Not Found npmGlobalPackages: "*react-native*": Not Found Android: hermesEnabled: Not found newArchEnabled: Not found iOS: hermesEnabled: Not found newArchEnabled: false ``` ### Stacktrace or Logs ```text Could not determine the dependencies of task ':app:processDebugResources'. > Could not resolve all dependencies for configuration ':app:debugRuntimeClasspath'. > Could not find androidx.appcompat:appcompat:27.1.1. Searched in the following locations: - https://oss.sonatype.org/content/repositories/snapshots/androidx/appcompat/appcompat/27.1.1/appcompat-27.1.1.pom - https://repo.maven.apache.org/maven2/androidx/appcompat/appcompat/27.1.1/appcompat-27.1.1.pom - https://dl.google.com/dl/android/maven2/androidx/appcompat/appcompat/27.1.1/appcompat-27.1.1.pom - https://www.jitpack.io/androidx/appcompat/appcompat/27.1.1/appcompat-27.1.1.pom - https://jcenter.bintray.com/androidx/appcompat/appcompat/27.1.1/appcompat-27.1.1.pom - https://maven.microblink.com/androidx/appcompat/appcompat/27.1.1/appcompat-27.1.1.pom Required by: project :app project :app > com.facebook.react:react-android:0.79.1 project :app > project :blinkid-react-native > com.microblink:blinkid:6.13.0 project :app > project :react-native-maps > com.google.maps.android:android-maps-utils:3.10.0 project :app > com.facebook.react:react-android:0.79.1 > androidx.appcompat:appcompat-resources:1.7.0 > Could not find androidx.appcompat:appcompat:27.1.1. Searched in the following locations: - https://oss.sonatype.org/content/repositories/snapshots/androidx/appcompat/appcompat/27.1.1/appcompat-27.1.1.pom - https://repo.maven.apache.org/maven2/androidx/appcompat/appcompat/27.1.1/appcompat-27.1.1.pom - https://dl.google.com/dl/android/maven2/androidx/appcompat/appcompat/27.1.1/appcompat-27.1.1.pom - https://www.jitpack.io/androidx/appcompat/appcompat/27.1.1/appcompat-27.1.1.pom - https://jcenter.bintray.com/androidx/appcompat/appcompat/27.1.1/appcompat-27.1.1.pom - https://maven.microblink.com/androidx/appcompat/appcompat/27.1.1/appcompat-27.1.1.pom Required by: project :app > project :react-native-geolocation-service > Could not find androidx.appcompat:appcompat:27.1.1. Searched in the following locations: - https://oss.sonatype.org/content/repositories/snapshots/androidx/appcompat/appcompat/27.1.1/appcompat-27.1.1.pom - https://repo.maven.apache.org/maven2/androidx/appcompat/appcompat/27.1.1/appcompat-27.1.1.pom - https://dl.google.com/dl/android/maven2/androidx/appcompat/appcompat/27.1.1/appcompat-27.1.1.pom - https://www.jitpack.io/androidx/appcompat/appcompat/27.1.1/appcompat-27.1.1.pom - https://jcenter.bintray.com/androidx/appcompat/appcompat/27.1.1/appcompat-27.1.1.pom - https://maven.microblink.com/androidx/appcompat/appcompat/27.1.1/appcompat-27.1.1.pom Required by: project :app > project :react-native-gesture-handler project :app > project :react-native-community_datetimepicker > com.google.android.material:material:1.12.0 > androidx.constraintlayout:constraintlayout:2.2.0 > Could not find androidx.appcompat:appcompat:27.1.1. Searched in the following locations: - https://oss.sonatype.org/content/repositories/snapshots/androidx/appcompat/appcompat/27.1.1/appcompat-27.1.1.pom - https://repo.maven.apache.org/maven2/androidx/appcompat/appcompat/27.1.1/appcompat-27.1.1.pom - https://dl.google.com/dl/android/maven2/androidx/appcompat/appcompat/27.1.1/appcompat-27.1.1.pom - https://www.jitpack.io/androidx/appcompat/appcompat/27.1.1/appcompat-27.1.1.pom - https://jcenter.bintray.com/androidx/appcompat/appcompat/27.1.1/appcompat-27.1.1.pom - https://maven.microblink.com/androidx/appcompat/appcompat/27.1.1/appcompat-27.1.1.pom Required by: project :app > project :react-native-push-notification > Could not find androidx.appcompat:appcompat:27.1.1. Searched in the following locations: - https://oss.sonatype.org/content/repositories/snapshots/androidx/appcompat/appcompat/27.1.1/appcompat-27.1.1.pom - https://repo.maven.apache.org/maven2/androidx/appcompat/appcompat/27.1.1/appcompat-27.1.1.pom - https://dl.google.com/dl/android/maven2/androidx/appcompat/appcompat/27.1.1/appcompat-27.1.1.pom - https://www.jitpack.io/androidx/appcompat/appcompat/27.1.1/appcompat-27.1.1.pom - https://jcenter.bintray.com/androidx/appcompat/appcompat/27.1.1/appcompat-27.1.1.pom - https://maven.microblink.com/androidx/appcompat/appcompat/27.1.1/appcompat-27.1.1.pom Required by: project :app > project :react-native-screens project :app > project :react-native-community_datetimepicker > com.google.android.material:material:1.12.0 project :app > project :intercom_intercom-react-native > io.intercom.android:intercom-sdk:15.14.0 > io.intercom.android:intercom-sdk-base:15.14.0 > Could not find androidx.appcompat:appcompat:27.1.1. Searched in the following locations: - https://oss.sonatype.org/content/repositories/snapshots/androidx/appcompat/appcompat/27.1.1/appcompat-27.1.1.pom - https://repo.maven.apache.org/maven2/androidx/appcompat/appcompat/27.1.1/appcompat-27.1.1.pom - https://dl.google.com/dl/android/maven2/androidx/appcompat/appcompat/27.1.1/appcompat-27.1.1.pom - https://www.jitpack.io/androidx/appcompat/appcompat/27.1.1/appcompat-27.1.1.pom - https://jcenter.bintray.com/androidx/appcompat/appcompat/27.1.1/appcompat-27.1.1.pom - https://maven.microblink.com/androidx/appcompat/appcompat/27.1.1/appcompat-27.1.1.pom Required by: project :app > project :react-native-signature-capture > Could not find androidx.appcompat:appcompat:27.1.1. Searched in the following locations: - https://oss.sonatype.org/content/repositories/snapshots/androidx/appcompat/appcompat/27.1.1/appcompat-27.1.1.pom - https://repo.maven.apache.org/maven2/androidx/appcompat/appcompat/27.1.1/appcompat-27.1.1.pom - https://dl.google.com/dl/android/maven2/androidx/appcompat/appcompat/27.1.1/appcompat-27.1.1.pom - https://www.jitpack.io/androidx/appcompat/appcompat/27.1.1/appcompat-27.1.1.pom - https://jcenter.bintray.com/androidx/appcompat/appcompat/27.1.1/appcompat-27.1.1.pom - https://maven.microblink.com/androidx/appcompat/appcompat/27.1.1/appcompat-27.1.1.pom Required by: project :app > project :lottie-react-native > com.airbnb.android:lottie:6.5.2 Possible solution: - Declare repository providing the artifact, see the documentation at https://docs.gradle.org/current/userguide/declaring_repositories.html ``` ### MANDATORY Reproducer noway.com ### Screenshots and Videos _No response_
{ "login": "react-native-bot", "id": 32686087, "node_id": "MDQ6VXNlcjMyNjg2MDg3", "avatar_url": "https://avatars.githubusercontent.com/u/32686087?v=4", "gravatar_id": "", "url": "https://api.github.com/users/react-native-bot", "html_url": "https://github.com/react-native-bot", "followers_url": "https://api.github.com/users/react-native-bot/followers", "following_url": "https://api.github.com/users/react-native-bot/following{/other_user}", "gists_url": "https://api.github.com/users/react-native-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/react-native-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/react-native-bot/subscriptions", "organizations_url": "https://api.github.com/users/react-native-bot/orgs", "repos_url": "https://api.github.com/users/react-native-bot/repos", "events_url": "https://api.github.com/users/react-native-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/react-native-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50956/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50956/timeline
null
completed
{ "total": 0, "completed": 0, "percent_completed": 0 }
false
https://api.github.com/repos/facebook/react-native/issues/50955
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50955/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50955/comments
https://api.github.com/repos/facebook/react-native/issues/50955/events
https://github.com/facebook/react-native/pull/50955
3,023,522,046
PR_kwDOAbrxp86UF7jR
50,955
Split proguard for legacy / new architecture
{ "login": "mdvacca", "id": 515103, "node_id": "MDQ6VXNlcjUxNTEwMw==", "avatar_url": "https://avatars.githubusercontent.com/u/515103?v=4", "gravatar_id": "", "url": "https://api.github.com/users/mdvacca", "html_url": "https://github.com/mdvacca", "followers_url": "https://api.github.com/users/mdvacca/followers", "following_url": "https://api.github.com/users/mdvacca/following{/other_user}", "gists_url": "https://api.github.com/users/mdvacca/gists{/gist_id}", "starred_url": "https://api.github.com/users/mdvacca/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/mdvacca/subscriptions", "organizations_url": "https://api.github.com/users/mdvacca/orgs", "repos_url": "https://api.github.com/users/mdvacca/repos", "events_url": "https://api.github.com/users/mdvacca/events{/privacy}", "received_events_url": "https://api.github.com/users/mdvacca/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
open
false
null
[]
null
5
2025-04-28T02:17:13
2025-06-05T17:26:08
null
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50955", "html_url": "https://github.com/facebook/react-native/pull/50955", "diff_url": "https://github.com/facebook/react-native/pull/50955.diff", "patch_url": "https://github.com/facebook/react-native/pull/50955.patch", "merged_at": null }
Summary: In this diff I'm splitting proguard rules for apps using legacy architecture or apps running 100% in new architecture APIs This split will be controlled by the config: enable_minify_legacy_architecture() changelog: [internal] internal Reviewed By: shwanton, javache Differential Revision: D71577597
null
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50955/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50955/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50954
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50954/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50954/comments
https://api.github.com/repos/facebook/react-native/issues/50954/events
https://github.com/facebook/react-native/pull/50954
3,023,521,963
PR_kwDOAbrxp86UF7iI
50,954
Introduce LegacyArchitectureDoNotStrip and LegacyArchitectureDoNotStripAny
{ "login": "mdvacca", "id": 515103, "node_id": "MDQ6VXNlcjUxNTEwMw==", "avatar_url": "https://avatars.githubusercontent.com/u/515103?v=4", "gravatar_id": "", "url": "https://api.github.com/users/mdvacca", "html_url": "https://github.com/mdvacca", "followers_url": "https://api.github.com/users/mdvacca/followers", "following_url": "https://api.github.com/users/mdvacca/following{/other_user}", "gists_url": "https://api.github.com/users/mdvacca/gists{/gist_id}", "starred_url": "https://api.github.com/users/mdvacca/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/mdvacca/subscriptions", "organizations_url": "https://api.github.com/users/mdvacca/orgs", "repos_url": "https://api.github.com/users/mdvacca/repos", "events_url": "https://api.github.com/users/mdvacca/events{/privacy}", "received_events_url": "https://api.github.com/users/mdvacca/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
open
false
null
[]
null
5
2025-04-28T02:17:07
2025-06-05T17:26:12
null
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50954", "html_url": "https://github.com/facebook/react-native/pull/50954", "diff_url": "https://github.com/facebook/react-native/pull/50954.diff", "patch_url": "https://github.com/facebook/react-native/pull/50954.patch", "merged_at": null }
Summary: This diff introduces LegacyArchitectureDoNotStrip and LegacyArchitectureDoNotStripAny to replace usages of DoNotStrip and DoNotStripAny for classes that are ONLY used in the legacy architecture of React Native changelog: [internal] internal Reviewed By: mlord93 Differential Revision: D71852759
null
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50954/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50954/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50953
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50953/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50953/comments
https://api.github.com/repos/facebook/react-native/issues/50953/events
https://github.com/facebook/react-native/pull/50953
3,023,521,870
PR_kwDOAbrxp86UF7g-
50,953
Optimize proguard for apps running on the new architecture by default
{ "login": "mdvacca", "id": 515103, "node_id": "MDQ6VXNlcjUxNTEwMw==", "avatar_url": "https://avatars.githubusercontent.com/u/515103?v=4", "gravatar_id": "", "url": "https://api.github.com/users/mdvacca", "html_url": "https://github.com/mdvacca", "followers_url": "https://api.github.com/users/mdvacca/followers", "following_url": "https://api.github.com/users/mdvacca/following{/other_user}", "gists_url": "https://api.github.com/users/mdvacca/gists{/gist_id}", "starred_url": "https://api.github.com/users/mdvacca/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/mdvacca/subscriptions", "organizations_url": "https://api.github.com/users/mdvacca/orgs", "repos_url": "https://api.github.com/users/mdvacca/repos", "events_url": "https://api.github.com/users/mdvacca/events{/privacy}", "received_events_url": "https://api.github.com/users/mdvacca/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
open
false
null
[]
null
5
2025-04-28T02:17:02
2025-06-05T17:29:47
null
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50953", "html_url": "https://github.com/facebook/react-native/pull/50953", "diff_url": "https://github.com/facebook/react-native/pull/50953.diff", "patch_url": "https://github.com/facebook/react-native/pull/50953.patch", "merged_at": null }
Summary: In this diff I'm optimizing proguard rules for apps running on the new architecture by default. changelog: [internal] internal Reviewed By: alanleedev Differential Revision: D71763448
null
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50953/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50953/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50952
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50952/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50952/comments
https://api.github.com/repos/facebook/react-native/issues/50952/events
https://github.com/facebook/react-native/pull/50952
3,023,462,579
PR_kwDOAbrxp86UFvEy
50,952
Fix EXC_BAD_ACCESS within RCTInspectorNetworkReporter
{ "login": "sanjay-io", "id": 24900999, "node_id": "MDQ6VXNlcjI0OTAwOTk5", "avatar_url": "https://avatars.githubusercontent.com/u/24900999?v=4", "gravatar_id": "", "url": "https://api.github.com/users/sanjay-io", "html_url": "https://github.com/sanjay-io", "followers_url": "https://api.github.com/users/sanjay-io/followers", "following_url": "https://api.github.com/users/sanjay-io/following{/other_user}", "gists_url": "https://api.github.com/users/sanjay-io/gists{/gist_id}", "starred_url": "https://api.github.com/users/sanjay-io/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/sanjay-io/subscriptions", "organizations_url": "https://api.github.com/users/sanjay-io/orgs", "repos_url": "https://api.github.com/users/sanjay-io/repos", "events_url": "https://api.github.com/users/sanjay-io/events{/privacy}", "received_events_url": "https://api.github.com/users/sanjay-io/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
4
2025-04-28T01:15:09
2025-04-28T11:58:46
2025-04-28T11:58:34
NONE
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50952", "html_url": "https://github.com/facebook/react-native/pull/50952", "diff_url": "https://github.com/facebook/react-native/pull/50952.diff", "patch_url": "https://github.com/facebook/react-native/pull/50952.patch", "merged_at": null }
Changelog: [Internal]
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50952/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50952/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50951
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50951/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50951/comments
https://api.github.com/repos/facebook/react-native/issues/50951/events
https://github.com/facebook/react-native/pull/50951
3,023,311,746
PR_kwDOAbrxp86UFQ7g
50,951
fix(CI): run monitor-new-issues only in the main repo
{ "login": "okwasniewski", "id": 52801365, "node_id": "MDQ6VXNlcjUyODAxMzY1", "avatar_url": "https://avatars.githubusercontent.com/u/52801365?v=4", "gravatar_id": "", "url": "https://api.github.com/users/okwasniewski", "html_url": "https://github.com/okwasniewski", "followers_url": "https://api.github.com/users/okwasniewski/followers", "following_url": "https://api.github.com/users/okwasniewski/following{/other_user}", "gists_url": "https://api.github.com/users/okwasniewski/gists{/gist_id}", "starred_url": "https://api.github.com/users/okwasniewski/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/okwasniewski/subscriptions", "organizations_url": "https://api.github.com/users/okwasniewski/orgs", "repos_url": "https://api.github.com/users/okwasniewski/repos", "events_url": "https://api.github.com/users/okwasniewski/events{/privacy}", "received_events_url": "https://api.github.com/users/okwasniewski/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1271618881, "node_id": "MDU6TGFiZWwxMjcxNjE4ODgx", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Callstack", "name": "p: Callstack", "color": "0052cc", "default": false, "description": "Partner: Callstack" }, { "id": 3253537094, "node_id": "MDU6TGFiZWwzMjUzNTM3MDk0", "url": "https://api.github.com/repos/facebook/react-native/labels/Shared%20with%20Meta", "name": "Shared with Meta", "color": "BFD4F2", "default": false, "description": "Applied via automation to indicate that an Issue or Pull Request has been shared with the team." } ]
closed
false
null
[]
null
3
2025-04-27T20:42:35
2025-04-28T10:25:32
2025-04-28T10:25:02
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50951", "html_url": "https://github.com/facebook/react-native/pull/50951", "diff_url": "https://github.com/facebook/react-native/pull/50951.diff", "patch_url": "https://github.com/facebook/react-native/pull/50951.patch", "merged_at": null }
## Summary: This PR makes sure that monitor-new-issues runs only in the main repo. It was failing on my fork and spamming notifications. ## Changelog: [INTERNAL] [FIXED] - run monitor-new-issues only in the main repo ## Test Plan: CI Green
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50951/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50951/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50950
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50950/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50950/comments
https://api.github.com/repos/facebook/react-native/issues/50950/events
https://github.com/facebook/react-native/issues/50950
3,023,094,949
I_kwDOAbrxp860MMSl
50,950
Accessibility Regression (Android, 0.75.4): ScrollView causes entire layout to be focused by TalkBack
{ "login": "BavlyAbdelmasih", "id": 22641202, "node_id": "MDQ6VXNlcjIyNjQxMjAy", "avatar_url": "https://avatars.githubusercontent.com/u/22641202?v=4", "gravatar_id": "", "url": "https://api.github.com/users/BavlyAbdelmasih", "html_url": "https://github.com/BavlyAbdelmasih", "followers_url": "https://api.github.com/users/BavlyAbdelmasih/followers", "following_url": "https://api.github.com/users/BavlyAbdelmasih/following{/other_user}", "gists_url": "https://api.github.com/users/BavlyAbdelmasih/gists{/gist_id}", "starred_url": "https://api.github.com/users/BavlyAbdelmasih/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/BavlyAbdelmasih/subscriptions", "organizations_url": "https://api.github.com/users/BavlyAbdelmasih/orgs", "repos_url": "https://api.github.com/users/BavlyAbdelmasih/repos", "events_url": "https://api.github.com/users/BavlyAbdelmasih/events{/privacy}", "received_events_url": "https://api.github.com/users/BavlyAbdelmasih/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 650767894, "node_id": "MDU6TGFiZWw2NTA3Njc4OTQ=", "url": "https://api.github.com/repos/facebook/react-native/labels/Impact:%20Regression", "name": "Impact: Regression", "color": "e99695", "default": false, "description": "Describes a behavior that used to work on a prior release, but stopped working recently." }, { "id": 870851515, "node_id": "MDU6TGFiZWw4NzA4NTE1MTU=", "url": "https://api.github.com/repos/facebook/react-native/labels/Platform:%20Android", "name": "Platform: Android", "color": "1d76db", "default": false, "description": "Android applications." }, { "id": 1113219655, "node_id": "MDU6TGFiZWwxMTEzMjE5NjU1", "url": "https://api.github.com/repos/facebook/react-native/labels/Component:%20ScrollView", "name": "Component: ScrollView", "color": "fef2c0", "default": false, "description": "" }, { "id": 1794148631, "node_id": "MDU6TGFiZWwxNzk0MTQ4NjMx", "url": "https://api.github.com/repos/facebook/react-native/labels/Needs:%20Author%20Feedback", "name": "Needs: Author Feedback", "color": "d4c5f9", "default": false, "description": "" }, { "id": 1794376073, "node_id": "MDU6TGFiZWwxNzk0Mzc2MDcz", "url": "https://api.github.com/repos/facebook/react-native/labels/Needs:%20Repro", "name": "Needs: Repro", "color": "d4c5f9", "default": false, "description": "This issue could be improved with a clear list of steps to reproduce the issue." }, { "id": 5021085328, "node_id": "LA_kwDOAbrxp88AAAABK0eukA", "url": "https://api.github.com/repos/facebook/react-native/labels/Type:%20Unsupported%20Version", "name": "Type: Unsupported Version", "color": "ffffff", "default": false, "description": "Issues reported to a version of React Native that is no longer supported" } ]
open
false
null
[]
null
5
2025-04-27T13:49:03
2025-05-23T05:14:25
null
NONE
null
null
null
null
### Description After updating to React Native 0.75.4, an accessibility regression was observed when using TalkBack on Android devices. If a `ScrollView does` not explicitly set `importantForAccessibility="no"`, TalkBack moves focus to the entire layout and announces all its contents at once, instead of focusing element-by-element as expected. This behavior was not present in earlier versions of React Native. ### Steps to reproduce 1. Create a screen with a ScrollView wrapping multiple focusable components (e.g., TextInput, Buttons). 2. Do not set `importantForAccessibility="no"` on the `ScrollView`. 3. Build and run the app on an Android device with TalkBack enabled. 4. Navigate through the screen using swipe gestures. ### React Native Version 0.75.4 ### Affected Platforms Runtime - Android ### Output of `npx @react-native-community/cli info` ```text System: OS: macOS 14.7.4 CPU: (8) arm64 Apple M1 Memory: 90.44 MB / 16.00 GB Shell: version: "5.9" Binaries: Node: version: 18.0.0 Yarn: Not Found npm: version: 8.6.0 Watchman: Not Found Managers: CocoaPods: version: 1.16.2 SDKs: iOS SDK: Platforms: - DriverKit 24.2 - iOS 18.2 - macOS 15.2 - tvOS 18.2 - visionOS 2.2 - watchOS 11.2 Android SDK: API Levels: - "33" - "34" - "35" Build Tools: - 30.0.3 - 31.0.0 - 33.0.0 - 34.0.0 - 35.0.0 System Images: - android-34 | Google APIs ARM 64 v8a - android-34 | Google Play ARM 64 v8a - android-35 | Google APIs ARM 64 v8a Android NDK: Not Found IDEs: Android Studio: 2022.3 AI-223.8836.35.2231.10811636 Xcode: version: 16.2/16C5032a Languages: Java: version: 17.0.6 Ruby: version: 2.7.5 npmPackages: "@react-native-community/cli": Not Found react: installed: 18.3.1 wanted: ^18.3.1 react-native: installed: 0.75.4 wanted: ^0.75.4 react-native-macos: Not Found npmGlobalPackages: "*react-native*": Not Found Android: hermesEnabled: true newArchEnabled: false iOS: hermesEnabled: true newArchEnabled: false ``` ### Stacktrace or Logs ```text N/A ``` ### MANDATORY Reproducer N/A ### Screenshots and Videos _No response_
null
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50950/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50950/timeline
null
null
{ "total": 0, "completed": 0, "percent_completed": 0 }
false
https://api.github.com/repos/facebook/react-native/issues/50949
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50949/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50949/comments
https://api.github.com/repos/facebook/react-native/issues/50949/events
https://github.com/facebook/react-native/issues/50949
3,022,966,321
I_kwDOAbrxp860Ls4x
50,949
The includeFontPadding property of the Text component Error
{ "login": "KaworuNagisa-hhl", "id": 174993609, "node_id": "U_kgDOCm4wyQ", "avatar_url": "https://avatars.githubusercontent.com/u/174993609?v=4", "gravatar_id": "", "url": "https://api.github.com/users/KaworuNagisa-hhl", "html_url": "https://github.com/KaworuNagisa-hhl", "followers_url": "https://api.github.com/users/KaworuNagisa-hhl/followers", "following_url": "https://api.github.com/users/KaworuNagisa-hhl/following{/other_user}", "gists_url": "https://api.github.com/users/KaworuNagisa-hhl/gists{/gist_id}", "starred_url": "https://api.github.com/users/KaworuNagisa-hhl/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/KaworuNagisa-hhl/subscriptions", "organizations_url": "https://api.github.com/users/KaworuNagisa-hhl/orgs", "repos_url": "https://api.github.com/users/KaworuNagisa-hhl/repos", "events_url": "https://api.github.com/users/KaworuNagisa-hhl/events{/privacy}", "received_events_url": "https://api.github.com/users/KaworuNagisa-hhl/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 1794148347, "node_id": "MDU6TGFiZWwxNzk0MTQ4MzQ3", "url": "https://api.github.com/repos/facebook/react-native/labels/Needs:%20Triage%20:mag:", "name": "Needs: Triage :mag:", "color": "bfd4f2", "default": false, "description": "" }, { "id": 5727401455, "node_id": "LA_kwDOAbrxp88AAAABVWE17w", "url": "https://api.github.com/repos/facebook/react-native/labels/Type:%20Too%20Old%20Version", "name": "Type: Too Old Version", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
2
2025-04-27T09:43:20
2025-04-27T09:43:50
2025-04-27T09:43:37
NONE
null
null
null
null
### Description The includeFontPadding property of the Text component in React Native does not work on Android real devices (the real devices are Xiaomi 10 and Xiaomi 13 with Android 13). ### Steps to reproduce <View style={styles.smallContainerRow}> <Text style={{ ...styles.smallText, textAlignVertical: 'center', includeFontPadding: true, }}> TEXT </Text> <Text style={{ ...styles.smallText, textAlignVertical: 'center', includeFontPadding: false, }}> TEXT </Text> </View> includeFontPadding whatever true or flase can not appear on UI ### React Native Version 0.61.0 ### Affected Platforms Runtime - Android ### Output of `npx @react-native-community/cli info` ```text I use this bash can not appear the test case error:Unexpected token '?' I can write the INFO to u Node:v12.22.12 React-native:0.61 JDK:openjdk version "1.8.0_432" OpenJDK Runtime Environment (Temurin)(build 1.8.0_432-b06) OpenJDK 64-Bit Server VM (Temurin)(build 25.432-b06, mixed mode) CPU:Intel(R) Core(TM) i5-14400 2.50 GHz RAM:32.0 GB Windows11Home Version:24H2 X64 ``` ### Stacktrace or Logs ```text none ``` ### MANDATORY Reproducer https://github.com/KaworuNagisa-hhl/report/blob/main/RNTester.js ### Screenshots and Videos <View style={styles.smallContainerRow}> <Text style={{ ...styles.smallText, textAlignVertical: 'center', includeFontPadding: true, }}> TEXT </Text> <Text style={{ ...styles.smallText, textAlignVertical: 'center', includeFontPadding: false, }}> TEXT </Text> </View> ![Image](https://github.com/user-attachments/assets/20cf2529-5ce1-4fe3-ab01-a6e7c252fa5d)
{ "login": "react-native-bot", "id": 32686087, "node_id": "MDQ6VXNlcjMyNjg2MDg3", "avatar_url": "https://avatars.githubusercontent.com/u/32686087?v=4", "gravatar_id": "", "url": "https://api.github.com/users/react-native-bot", "html_url": "https://github.com/react-native-bot", "followers_url": "https://api.github.com/users/react-native-bot/followers", "following_url": "https://api.github.com/users/react-native-bot/following{/other_user}", "gists_url": "https://api.github.com/users/react-native-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/react-native-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/react-native-bot/subscriptions", "organizations_url": "https://api.github.com/users/react-native-bot/orgs", "repos_url": "https://api.github.com/users/react-native-bot/repos", "events_url": "https://api.github.com/users/react-native-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/react-native-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50949/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50949/timeline
null
completed
{ "total": 0, "completed": 0, "percent_completed": 0 }
false
https://api.github.com/repos/facebook/react-native/issues/50948
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50948/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50948/comments
https://api.github.com/repos/facebook/react-native/issues/50948/events
https://github.com/facebook/react-native/pull/50948
3,022,411,072
PR_kwDOAbrxp86UCXGi
50,948
Fix RemoveClipped subviews algorithm
{ "login": "jorge-cab", "id": 57368278, "node_id": "MDQ6VXNlcjU3MzY4Mjc4", "avatar_url": "https://avatars.githubusercontent.com/u/57368278?v=4", "gravatar_id": "", "url": "https://api.github.com/users/jorge-cab", "html_url": "https://github.com/jorge-cab", "followers_url": "https://api.github.com/users/jorge-cab/followers", "following_url": "https://api.github.com/users/jorge-cab/following{/other_user}", "gists_url": "https://api.github.com/users/jorge-cab/gists{/gist_id}", "starred_url": "https://api.github.com/users/jorge-cab/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/jorge-cab/subscriptions", "organizations_url": "https://api.github.com/users/jorge-cab/orgs", "repos_url": "https://api.github.com/users/jorge-cab/repos", "events_url": "https://api.github.com/users/jorge-cab/events{/privacy}", "received_events_url": "https://api.github.com/users/jorge-cab/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
2
2025-04-26T22:59:06
2025-05-08T10:19:13
2025-05-08T10:19:12
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50948", "html_url": "https://github.com/facebook/react-native/pull/50948", "diff_url": "https://github.com/facebook/react-native/pull/50948.diff", "patch_url": "https://github.com/facebook/react-native/pull/50948.patch", "merged_at": null }
Summary: For real this time, the change was lost due to some merge conflict Reviewed By: Abbondanzo Differential Revision: D73726167
{ "login": "javache", "id": 5676, "node_id": "MDQ6VXNlcjU2NzY=", "avatar_url": "https://avatars.githubusercontent.com/u/5676?v=4", "gravatar_id": "", "url": "https://api.github.com/users/javache", "html_url": "https://github.com/javache", "followers_url": "https://api.github.com/users/javache/followers", "following_url": "https://api.github.com/users/javache/following{/other_user}", "gists_url": "https://api.github.com/users/javache/gists{/gist_id}", "starred_url": "https://api.github.com/users/javache/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/javache/subscriptions", "organizations_url": "https://api.github.com/users/javache/orgs", "repos_url": "https://api.github.com/users/javache/repos", "events_url": "https://api.github.com/users/javache/events{/privacy}", "received_events_url": "https://api.github.com/users/javache/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50948/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50948/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50947
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50947/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50947/comments
https://api.github.com/repos/facebook/react-native/issues/50947/events
https://github.com/facebook/react-native/pull/50947
3,022,323,873
PR_kwDOAbrxp86UCEky
50,947
refactor: rewrite Inspector from Java to Kotlin
{ "login": "Vin-Xi", "id": 45799230, "node_id": "MDQ6VXNlcjQ1Nzk5MjMw", "avatar_url": "https://avatars.githubusercontent.com/u/45799230?v=4", "gravatar_id": "", "url": "https://api.github.com/users/Vin-Xi", "html_url": "https://github.com/Vin-Xi", "followers_url": "https://api.github.com/users/Vin-Xi/followers", "following_url": "https://api.github.com/users/Vin-Xi/following{/other_user}", "gists_url": "https://api.github.com/users/Vin-Xi/gists{/gist_id}", "starred_url": "https://api.github.com/users/Vin-Xi/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/Vin-Xi/subscriptions", "organizations_url": "https://api.github.com/users/Vin-Xi/orgs", "repos_url": "https://api.github.com/users/Vin-Xi/repos", "events_url": "https://api.github.com/users/Vin-Xi/events{/privacy}", "received_events_url": "https://api.github.com/users/Vin-Xi/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 3253537094, "node_id": "MDU6TGFiZWwzMjUzNTM3MDk0", "url": "https://api.github.com/repos/facebook/react-native/labels/Shared%20with%20Meta", "name": "Shared with Meta", "color": "BFD4F2", "default": false, "description": "Applied via automation to indicate that an Issue or Pull Request has been shared with the team." } ]
closed
false
null
[]
null
3
2025-04-26T21:18:10
2025-04-28T16:24:29
2025-04-28T16:24:20
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50947", "html_url": "https://github.com/facebook/react-native/pull/50947", "diff_url": "https://github.com/facebook/react-native/pull/50947.diff", "patch_url": "https://github.com/facebook/react-native/pull/50947.patch", "merged_at": null }
## Summary: Rewrite of the Inspector class from Java to Kotlin in scope of #50513 ## Changelog: [ANDROID] [CHANGED] - Migrated Inspector to Kotlin ## Test Plan: Tested using RNTester app, on both old and new arch, and tested by navigating to multiple pages
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50947/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50947/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50946
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50946/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50946/comments
https://api.github.com/repos/facebook/react-native/issues/50946/events
https://github.com/facebook/react-native/pull/50946
3,022,315,016
PR_kwDOAbrxp86UCCnr
50,946
refactor: rewrite Inspector from Java to Kotlin
{ "login": "Vin-Xi", "id": 45799230, "node_id": "MDQ6VXNlcjQ1Nzk5MjMw", "avatar_url": "https://avatars.githubusercontent.com/u/45799230?v=4", "gravatar_id": "", "url": "https://api.github.com/users/Vin-Xi", "html_url": "https://github.com/Vin-Xi", "followers_url": "https://api.github.com/users/Vin-Xi/followers", "following_url": "https://api.github.com/users/Vin-Xi/following{/other_user}", "gists_url": "https://api.github.com/users/Vin-Xi/gists{/gist_id}", "starred_url": "https://api.github.com/users/Vin-Xi/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/Vin-Xi/subscriptions", "organizations_url": "https://api.github.com/users/Vin-Xi/orgs", "repos_url": "https://api.github.com/users/Vin-Xi/repos", "events_url": "https://api.github.com/users/Vin-Xi/events{/privacy}", "received_events_url": "https://api.github.com/users/Vin-Xi/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 3253537094, "node_id": "MDU6TGFiZWwzMjUzNTM3MDk0", "url": "https://api.github.com/repos/facebook/react-native/labels/Shared%20with%20Meta", "name": "Shared with Meta", "color": "BFD4F2", "default": false, "description": "Applied via automation to indicate that an Issue or Pull Request has been shared with the team." } ]
closed
false
null
[]
null
0
2025-04-26T21:09:23
2025-04-26T21:11:22
2025-04-26T21:11:22
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50946", "html_url": "https://github.com/facebook/react-native/pull/50946", "diff_url": "https://github.com/facebook/react-native/pull/50946.diff", "patch_url": "https://github.com/facebook/react-native/pull/50946.patch", "merged_at": null }
## Summary: Rewrite of the Inspector class from Java to Kotlin in scope of #50513 ## Changelog: [ANDROID] [CHANGED] - Migrated Inspector to Kotlin ## Test Plan: Tested using RNTester app, on both old and new arch, and tested by navigating to multiple pages
{ "login": "Vin-Xi", "id": 45799230, "node_id": "MDQ6VXNlcjQ1Nzk5MjMw", "avatar_url": "https://avatars.githubusercontent.com/u/45799230?v=4", "gravatar_id": "", "url": "https://api.github.com/users/Vin-Xi", "html_url": "https://github.com/Vin-Xi", "followers_url": "https://api.github.com/users/Vin-Xi/followers", "following_url": "https://api.github.com/users/Vin-Xi/following{/other_user}", "gists_url": "https://api.github.com/users/Vin-Xi/gists{/gist_id}", "starred_url": "https://api.github.com/users/Vin-Xi/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/Vin-Xi/subscriptions", "organizations_url": "https://api.github.com/users/Vin-Xi/orgs", "repos_url": "https://api.github.com/users/Vin-Xi/repos", "events_url": "https://api.github.com/users/Vin-Xi/events{/privacy}", "received_events_url": "https://api.github.com/users/Vin-Xi/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50946/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50946/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50945
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50945/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50945/comments
https://api.github.com/repos/facebook/react-native/issues/50945/events
https://github.com/facebook/react-native/pull/50945
3,022,271,157
PR_kwDOAbrxp86UB5dy
50,945
refactor: rewrite inspector class from java to kotlin
{ "login": "Vin-Xi", "id": 45799230, "node_id": "MDQ6VXNlcjQ1Nzk5MjMw", "avatar_url": "https://avatars.githubusercontent.com/u/45799230?v=4", "gravatar_id": "", "url": "https://api.github.com/users/Vin-Xi", "html_url": "https://github.com/Vin-Xi", "followers_url": "https://api.github.com/users/Vin-Xi/followers", "following_url": "https://api.github.com/users/Vin-Xi/following{/other_user}", "gists_url": "https://api.github.com/users/Vin-Xi/gists{/gist_id}", "starred_url": "https://api.github.com/users/Vin-Xi/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/Vin-Xi/subscriptions", "organizations_url": "https://api.github.com/users/Vin-Xi/orgs", "repos_url": "https://api.github.com/users/Vin-Xi/repos", "events_url": "https://api.github.com/users/Vin-Xi/events{/privacy}", "received_events_url": "https://api.github.com/users/Vin-Xi/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 3253537094, "node_id": "MDU6TGFiZWwzMjUzNTM3MDk0", "url": "https://api.github.com/repos/facebook/react-native/labels/Shared%20with%20Meta", "name": "Shared with Meta", "color": "BFD4F2", "default": false, "description": "Applied via automation to indicate that an Issue or Pull Request has been shared with the team." } ]
closed
false
null
[]
null
0
2025-04-26T20:06:50
2025-04-26T20:57:43
2025-04-26T20:57:43
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50945", "html_url": "https://github.com/facebook/react-native/pull/50945", "diff_url": "https://github.com/facebook/react-native/pull/50945.diff", "patch_url": "https://github.com/facebook/react-native/pull/50945.patch", "merged_at": null }
<!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. --> ## Summary: Rewrite of the Inspector class from Java to Kotlin in scope of #50513 ## Changelog: [ANDROID] [CHANGED] - Migrated Inspector to Kotlin ## Test Plan: Tested using RNTester app, on both old and new arch, and tested by navigating to multiple pages
{ "login": "Vin-Xi", "id": 45799230, "node_id": "MDQ6VXNlcjQ1Nzk5MjMw", "avatar_url": "https://avatars.githubusercontent.com/u/45799230?v=4", "gravatar_id": "", "url": "https://api.github.com/users/Vin-Xi", "html_url": "https://github.com/Vin-Xi", "followers_url": "https://api.github.com/users/Vin-Xi/followers", "following_url": "https://api.github.com/users/Vin-Xi/following{/other_user}", "gists_url": "https://api.github.com/users/Vin-Xi/gists{/gist_id}", "starred_url": "https://api.github.com/users/Vin-Xi/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/Vin-Xi/subscriptions", "organizations_url": "https://api.github.com/users/Vin-Xi/orgs", "repos_url": "https://api.github.com/users/Vin-Xi/repos", "events_url": "https://api.github.com/users/Vin-Xi/events{/privacy}", "received_events_url": "https://api.github.com/users/Vin-Xi/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50945/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50945/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50944
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50944/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50944/comments
https://api.github.com/repos/facebook/react-native/issues/50944/events
https://github.com/facebook/react-native/issues/50944
3,022,269,123
I_kwDOAbrxp860JCrD
50,944
Scrolling Freezes when CAMetalLayer is offscreen in iOS Simulator
{ "login": "wcandillon", "id": 306134, "node_id": "MDQ6VXNlcjMwNjEzNA==", "avatar_url": "https://avatars.githubusercontent.com/u/306134?v=4", "gravatar_id": "", "url": "https://api.github.com/users/wcandillon", "html_url": "https://github.com/wcandillon", "followers_url": "https://api.github.com/users/wcandillon/followers", "following_url": "https://api.github.com/users/wcandillon/following{/other_user}", "gists_url": "https://api.github.com/users/wcandillon/gists{/gist_id}", "starred_url": "https://api.github.com/users/wcandillon/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/wcandillon/subscriptions", "organizations_url": "https://api.github.com/users/wcandillon/orgs", "repos_url": "https://api.github.com/users/wcandillon/repos", "events_url": "https://api.github.com/users/wcandillon/events{/privacy}", "received_events_url": "https://api.github.com/users/wcandillon/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 257497884, "node_id": "MDU6TGFiZWwyNTc0OTc4ODQ=", "url": "https://api.github.com/repos/facebook/react-native/labels/Platform:%20iOS", "name": "Platform: iOS", "color": "1d76db", "default": false, "description": "iOS applications." }, { "id": 1794376073, "node_id": "MDU6TGFiZWwxNzk0Mzc2MDcz", "url": "https://api.github.com/repos/facebook/react-native/labels/Needs:%20Repro", "name": "Needs: Repro", "color": "d4c5f9", "default": false, "description": "This issue could be improved with a clear list of steps to reproduce the issue." }, { "id": 1877909121, "node_id": "MDU6TGFiZWwxODc3OTA5MTIx", "url": "https://api.github.com/repos/facebook/react-native/labels/Needs:%20Attention", "name": "Needs: Attention", "color": "f9c884", "default": false, "description": "Issues where the author has responded to feedback." }, { "id": 5191728962, "node_id": "LA_kwDOAbrxp88AAAABNXN_Qg", "url": "https://api.github.com/repos/facebook/react-native/labels/Needs:%20Version%20Info", "name": "Needs: Version Info", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
4
2025-04-26T20:02:50
2025-04-27T07:04:57
2025-04-27T07:04:46
CONTRIBUTOR
null
null
null
null
### Description Both modules are using a CAMetalView are affected by this issue: * Skia: https://github.com/Shopify/react-native-skia/issues/3112 * Rive: https://github.com/rive-app/rive-react-native/issues/294 When on simulator, invoking CAMetalLayer::nextDrawable can take up to 1 second if the canvas is offscreen due to the scrollview (e.g., presenting the surface doesn't change any pixels on screen). Doing gesture events while still having the canvas offscreen will result in having the correct framerate. ### Steps to reproduce Use the example based on React Native Skia or a simple View that uses a CAMetalLayer ### React Native Version 0.78 and above ### Affected Platforms Runtime - iOS ### Output of `npx @react-native-community/cli info` ```text This issue only happens on the iOS simulator ``` ### Stacktrace or Logs ```text no logs here ``` ### MANDATORY Reproducer https://gist.github.com/wcandillon/f921d5df359f35a6b504756ae981fcd5 ### Screenshots and Videos _No response_
{ "login": "wcandillon", "id": 306134, "node_id": "MDQ6VXNlcjMwNjEzNA==", "avatar_url": "https://avatars.githubusercontent.com/u/306134?v=4", "gravatar_id": "", "url": "https://api.github.com/users/wcandillon", "html_url": "https://github.com/wcandillon", "followers_url": "https://api.github.com/users/wcandillon/followers", "following_url": "https://api.github.com/users/wcandillon/following{/other_user}", "gists_url": "https://api.github.com/users/wcandillon/gists{/gist_id}", "starred_url": "https://api.github.com/users/wcandillon/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/wcandillon/subscriptions", "organizations_url": "https://api.github.com/users/wcandillon/orgs", "repos_url": "https://api.github.com/users/wcandillon/repos", "events_url": "https://api.github.com/users/wcandillon/events{/privacy}", "received_events_url": "https://api.github.com/users/wcandillon/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50944/reactions", "total_count": 1, "+1": 1, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50944/timeline
null
completed
{ "total": 0, "completed": 0, "percent_completed": 0 }
false
https://api.github.com/repos/facebook/react-native/issues/50943
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50943/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50943/comments
https://api.github.com/repos/facebook/react-native/issues/50943/events
https://github.com/facebook/react-native/pull/50943
3,022,235,426
PR_kwDOAbrxp86UBx-v
50,943
Refactor: Rewrite of the Inspector class from Java to Kotlin
{ "login": "Vin-Xi", "id": 45799230, "node_id": "MDQ6VXNlcjQ1Nzk5MjMw", "avatar_url": "https://avatars.githubusercontent.com/u/45799230?v=4", "gravatar_id": "", "url": "https://api.github.com/users/Vin-Xi", "html_url": "https://github.com/Vin-Xi", "followers_url": "https://api.github.com/users/Vin-Xi/followers", "following_url": "https://api.github.com/users/Vin-Xi/following{/other_user}", "gists_url": "https://api.github.com/users/Vin-Xi/gists{/gist_id}", "starred_url": "https://api.github.com/users/Vin-Xi/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/Vin-Xi/subscriptions", "organizations_url": "https://api.github.com/users/Vin-Xi/orgs", "repos_url": "https://api.github.com/users/Vin-Xi/repos", "events_url": "https://api.github.com/users/Vin-Xi/events{/privacy}", "received_events_url": "https://api.github.com/users/Vin-Xi/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 3253537094, "node_id": "MDU6TGFiZWwzMjUzNTM3MDk0", "url": "https://api.github.com/repos/facebook/react-native/labels/Shared%20with%20Meta", "name": "Shared with Meta", "color": "BFD4F2", "default": false, "description": "Applied via automation to indicate that an Issue or Pull Request has been shared with the team." } ]
closed
false
null
[]
null
0
2025-04-26T19:15:16
2025-04-26T19:32:46
2025-04-26T19:32:46
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50943", "html_url": "https://github.com/facebook/react-native/pull/50943", "diff_url": "https://github.com/facebook/react-native/pull/50943.diff", "patch_url": "https://github.com/facebook/react-native/pull/50943.patch", "merged_at": null }
<!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. --> ## Summary: Rewrite of the Inspector class from Java to Kotlin in scope of #50513 ## Changelog: <!-- Help reviewers and the release process by writing your own changelog entry. Pick one each for the category and type tags: [ANDROID] [CHANGED] - Migrated JSBundleLoader to Kotlin For more details, see: https://reactnative.dev/contributing/changelogs-in-pull-requests --> ## Test Plan: <!-- Demonstrate the code is solid. Example: The exact commands you ran and their output, screenshots / videos if the pull request changes the user interface. --> Tested using RNTester app, on both old and new arch, and tested by navigating to multiple pages
{ "login": "Vin-Xi", "id": 45799230, "node_id": "MDQ6VXNlcjQ1Nzk5MjMw", "avatar_url": "https://avatars.githubusercontent.com/u/45799230?v=4", "gravatar_id": "", "url": "https://api.github.com/users/Vin-Xi", "html_url": "https://github.com/Vin-Xi", "followers_url": "https://api.github.com/users/Vin-Xi/followers", "following_url": "https://api.github.com/users/Vin-Xi/following{/other_user}", "gists_url": "https://api.github.com/users/Vin-Xi/gists{/gist_id}", "starred_url": "https://api.github.com/users/Vin-Xi/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/Vin-Xi/subscriptions", "organizations_url": "https://api.github.com/users/Vin-Xi/orgs", "repos_url": "https://api.github.com/users/Vin-Xi/repos", "events_url": "https://api.github.com/users/Vin-Xi/events{/privacy}", "received_events_url": "https://api.github.com/users/Vin-Xi/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50943/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50943/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50942
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50942/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50942/comments
https://api.github.com/repos/facebook/react-native/issues/50942/events
https://github.com/facebook/react-native/pull/50942
3,021,780,464
PR_kwDOAbrxp86UAUnI
50,942
Add support for aria-invalid
{ "login": "yajihum", "id": 117247060, "node_id": "U_kgDOBv0MVA", "avatar_url": "https://avatars.githubusercontent.com/u/117247060?v=4", "gravatar_id": "", "url": "https://api.github.com/users/yajihum", "html_url": "https://github.com/yajihum", "followers_url": "https://api.github.com/users/yajihum/followers", "following_url": "https://api.github.com/users/yajihum/following{/other_user}", "gists_url": "https://api.github.com/users/yajihum/gists{/gist_id}", "starred_url": "https://api.github.com/users/yajihum/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/yajihum/subscriptions", "organizations_url": "https://api.github.com/users/yajihum/orgs", "repos_url": "https://api.github.com/users/yajihum/repos", "events_url": "https://api.github.com/users/yajihum/events{/privacy}", "received_events_url": "https://api.github.com/users/yajihum/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 3253537094, "node_id": "MDU6TGFiZWwzMjUzNTM3MDk0", "url": "https://api.github.com/repos/facebook/react-native/labels/Shared%20with%20Meta", "name": "Shared with Meta", "color": "BFD4F2", "default": false, "description": "Applied via automation to indicate that an Issue or Pull Request has been shared with the team." } ]
open
false
null
[]
null
3
2025-04-26T11:53:42
2025-04-26T20:06:52
null
NONE
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50942", "html_url": "https://github.com/facebook/react-native/pull/50942", "diff_url": "https://github.com/facebook/react-native/pull/50942.diff", "patch_url": "https://github.com/facebook/react-native/pull/50942.patch", "merged_at": null }
<!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. --> ## Summary: <!-- Explain the **motivation** for making this change. What existing problem does the pull request solve? --> I would like to add support for the aria-invalid property which exists in web but is not currently supported in React Native. Similar to aria-busy, this implementation will allow components to receive the following properties: - aria-invalid - accessibilityState.invalid I am proposing this enhancement for the following reasons: - [The RFC for React DOM for Native](https://github.com/react-native-community/discussions-and-proposals/pull/496) proposes support for the aria-invalid property, but it hasn't been implemented yet - This will enable form testing tools like Maestro and Jest to programmatically identify field errors beyond just string matching, making automated testing more robust - Maestro: [assertVisible](https://docs.maestro.dev/api-reference/commands/assertvisible) - React Native Testing Library: [Accessibility State](https://github.com/callstack/react-native-testing-library/wiki/Accessibility:-State) ## Changelog: <!-- Help reviewers and the release process by writing your own changelog entry. Pick one each for the category and type tags: [ANDROID|GENERAL|IOS|INTERNAL] [BREAKING|ADDED|CHANGED|DEPRECATED|REMOVED|FIXED|SECURITY] - Message For more details, see: https://reactnative.dev/contributing/changelogs-in-pull-requests --> [GENERAL] [ADDED] - Add `aria-invalid` and `accessibilityState.invalid` to some components ## Test Plan: <!-- Demonstrate the code is solid. Example: The exact commands you ran and their output, screenshots / videos if the pull request changes the user interface. --> - `yarn test` - `yarn lint`
null
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50942/reactions", "total_count": 2, "+1": 2, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50942/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50941
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50941/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50941/comments
https://api.github.com/repos/facebook/react-native/issues/50941/events
https://github.com/facebook/react-native/pull/50941
3,021,158,457
PR_kwDOAbrxp86T-P8q
50,941
Sync offset value to native immediately
{ "login": "martinbooth", "id": 4383362, "node_id": "MDQ6VXNlcjQzODMzNjI=", "avatar_url": "https://avatars.githubusercontent.com/u/4383362?v=4", "gravatar_id": "", "url": "https://api.github.com/users/martinbooth", "html_url": "https://github.com/martinbooth", "followers_url": "https://api.github.com/users/martinbooth/followers", "following_url": "https://api.github.com/users/martinbooth/following{/other_user}", "gists_url": "https://api.github.com/users/martinbooth/gists{/gist_id}", "starred_url": "https://api.github.com/users/martinbooth/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/martinbooth/subscriptions", "organizations_url": "https://api.github.com/users/martinbooth/orgs", "repos_url": "https://api.github.com/users/martinbooth/repos", "events_url": "https://api.github.com/users/martinbooth/events{/privacy}", "received_events_url": "https://api.github.com/users/martinbooth/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
6
2025-04-25T22:38:50
2025-04-28T21:10:10
2025-04-28T21:10:00
NONE
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50941", "html_url": "https://github.com/facebook/react-native/pull/50941", "diff_url": "https://github.com/facebook/react-native/pull/50941.diff", "patch_url": "https://github.com/facebook/react-native/pull/50941.patch", "merged_at": null }
Summary: Without doing this, using Animated.event to update a value with an offset causes the value to revert to not having an offset because the native side doesn't even know about the offset if it hasn't been synced. Don't think there's a better place to sync this for the cases where an animation is kicked off entirely from the native side Changelog: [Android][Fixed] - Ensure latest offset value is synced to native Reviewed By: javache Differential Revision: D73622302
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50941/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50941/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50940
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50940/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50940/comments
https://api.github.com/repos/facebook/react-native/issues/50940/events
https://github.com/facebook/react-native/pull/50940
3,020,149,979
PR_kwDOAbrxp86T61CW
50,940
[RN][Android] Fix RNTester running in the old architecture
{ "login": "cipolleschi", "id": 11162307, "node_id": "MDQ6VXNlcjExMTYyMzA3", "avatar_url": "https://avatars.githubusercontent.com/u/11162307?v=4", "gravatar_id": "", "url": "https://api.github.com/users/cipolleschi", "html_url": "https://github.com/cipolleschi", "followers_url": "https://api.github.com/users/cipolleschi/followers", "following_url": "https://api.github.com/users/cipolleschi/following{/other_user}", "gists_url": "https://api.github.com/users/cipolleschi/gists{/gist_id}", "starred_url": "https://api.github.com/users/cipolleschi/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cipolleschi/subscriptions", "organizations_url": "https://api.github.com/users/cipolleschi/orgs", "repos_url": "https://api.github.com/users/cipolleschi/repos", "events_url": "https://api.github.com/users/cipolleschi/events{/privacy}", "received_events_url": "https://api.github.com/users/cipolleschi/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" } ]
closed
false
null
[]
null
4
2025-04-25T13:58:10
2025-04-25T16:57:59
2025-04-25T16:57:46
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50940", "html_url": "https://github.com/facebook/react-native/pull/50940", "diff_url": "https://github.com/facebook/react-native/pull/50940.diff", "patch_url": "https://github.com/facebook/react-native/pull/50940.patch", "merged_at": null }
## Summary: We landed a PR that was importing a file available only in the New Architecture also when the app was running in the old architecture. This was creating a corrupted bundle for rntester. This PR fixes the issue ## Changelog: [Internal] - Fix RNTester on Android ## Test Plan: Tested locally by setting `newArchEnabled` to false in the gradle.properties file
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50940/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50940/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50939
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50939/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50939/comments
https://api.github.com/repos/facebook/react-native/issues/50939/events
https://github.com/facebook/react-native/pull/50939
3,020,147,129
PR_kwDOAbrxp86T60bE
50,939
Redesign New App Screen and move to package
{ "login": "huntie", "id": 2547783, "node_id": "MDQ6VXNlcjI1NDc3ODM=", "avatar_url": "https://avatars.githubusercontent.com/u/2547783?v=4", "gravatar_id": "", "url": "https://api.github.com/users/huntie", "html_url": "https://github.com/huntie", "followers_url": "https://api.github.com/users/huntie/followers", "following_url": "https://api.github.com/users/huntie/following{/other_user}", "gists_url": "https://api.github.com/users/huntie/gists{/gist_id}", "starred_url": "https://api.github.com/users/huntie/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/huntie/subscriptions", "organizations_url": "https://api.github.com/users/huntie/orgs", "repos_url": "https://api.github.com/users/huntie/repos", "events_url": "https://api.github.com/users/huntie/events{/privacy}", "received_events_url": "https://api.github.com/users/huntie/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
11
2025-04-25T13:57:00
2025-04-28T12:07:05
2025-04-28T11:21:00
MEMBER
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50939", "html_url": "https://github.com/facebook/react-native/pull/50939", "diff_url": "https://github.com/facebook/react-native/pull/50939.diff", "patch_url": "https://github.com/facebook/react-native/pull/50939.patch", "merged_at": null }
Summary: Redesigns React Native's `NewAppScreen` component, and moves it into a new `@react-native/new-app-screen` package with a single component export. Deletes the old New App Screen under `'react-native/Libraries/NewAppScreen/'`. <img width="1811" alt="image" src="https://github.com/user-attachments/assets/6fd47ca3-2206-480d-ac59-41925a2c79b6" /> ### Motivation - **Reduces our public API** (see https://github.com/react-native-community/discussions-and-proposals/pull/894) - Separates this screen from the main `react-native` package, where it was a number of subpath exports. - Reduces the size of the main `react-native` package, including image assets — which are redundant for consumers like Expo. - **Updated visual treatment** - Replace outdated logo, update to a responsive tablet/windowed layout. - Removes outdated guidance (e.g. "use cmd+R to reload"), and generally simplifies the layout (with the aim of reducing future maintenance). - **Simplifies template boilerplate** - `NewAppScreen` is now a fully encapsulated screen layout, avoiding the cruft of the previous modular design. ### Redesign notes As above, this is a refresh to our existing New App Screen — maintaining the same spirit/content, with some simplifications. We may want to strip this down further, or make use of more per-platform native UI in future. For now, I haven't pushed towards this. ### Integration plan When we cut the `0.80-stable` branch, we'll update [the template](https://github.com/react-native-community/template/blob/main/template/App.tsx) to import and use `<NewAppScreen />`. - This will cause an extra runtime dependency in the template `package.json`, which will require user cleanup. We are happy with this tradeoff, given the self-evident package name, reduction of template boilerplate, and size reduction on the main `react-native` package. Changelog: [General][Breaking] - The `NewAppScreen` component is redesigned and moved to the `@react-native/new-app-screen` package Differential Revision: D73657878
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50939/reactions", "total_count": 14, "+1": 5, "-1": 0, "laugh": 0, "hooray": 4, "confused": 0, "heart": 3, "rocket": 2, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50939/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50938
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50938/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50938/comments
https://api.github.com/repos/facebook/react-native/issues/50938/events
https://github.com/facebook/react-native/pull/50938
3,020,049,091
PR_kwDOAbrxp86T6fBe
50,938
Improve pattern to access host instances in tests
{ "login": "rubennorte", "id": 117921, "node_id": "MDQ6VXNlcjExNzkyMQ==", "avatar_url": "https://avatars.githubusercontent.com/u/117921?v=4", "gravatar_id": "", "url": "https://api.github.com/users/rubennorte", "html_url": "https://github.com/rubennorte", "followers_url": "https://api.github.com/users/rubennorte/followers", "following_url": "https://api.github.com/users/rubennorte/following{/other_user}", "gists_url": "https://api.github.com/users/rubennorte/gists{/gist_id}", "starred_url": "https://api.github.com/users/rubennorte/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/rubennorte/subscriptions", "organizations_url": "https://api.github.com/users/rubennorte/orgs", "repos_url": "https://api.github.com/users/rubennorte/repos", "events_url": "https://api.github.com/users/rubennorte/events{/privacy}", "received_events_url": "https://api.github.com/users/rubennorte/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
3
2025-04-25T13:20:05
2025-04-25T16:25:58
2025-04-25T16:25:47
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50938", "html_url": "https://github.com/facebook/react-native/pull/50938", "diff_url": "https://github.com/facebook/react-native/pull/50938.diff", "patch_url": "https://github.com/facebook/react-native/pull/50938.patch", "merged_at": null }
Summary: Changelog: [internal] No more `maybeNode`s. Using ref objects makes the tests cleaner and the JSX easier to read than injecting lambdas. Differential Revision: D73659018
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50938/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50938/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50937
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50937/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50937/comments
https://api.github.com/repos/facebook/react-native/issues/50937/events
https://github.com/facebook/react-native/pull/50937
3,019,989,588
PR_kwDOAbrxp86T6SGR
50,937
Back out "Bridgeless: Fix unstable_hasComponent"
{ "login": "sammy-SC", "id": 1733610, "node_id": "MDQ6VXNlcjE3MzM2MTA=", "avatar_url": "https://avatars.githubusercontent.com/u/1733610?v=4", "gravatar_id": "", "url": "https://api.github.com/users/sammy-SC", "html_url": "https://github.com/sammy-SC", "followers_url": "https://api.github.com/users/sammy-SC/followers", "following_url": "https://api.github.com/users/sammy-SC/following{/other_user}", "gists_url": "https://api.github.com/users/sammy-SC/gists{/gist_id}", "starred_url": "https://api.github.com/users/sammy-SC/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/sammy-SC/subscriptions", "organizations_url": "https://api.github.com/users/sammy-SC/orgs", "repos_url": "https://api.github.com/users/sammy-SC/repos", "events_url": "https://api.github.com/users/sammy-SC/events{/privacy}", "received_events_url": "https://api.github.com/users/sammy-SC/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
3
2025-04-25T12:56:09
2025-04-25T15:47:53
2025-04-25T15:47:41
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50937", "html_url": "https://github.com/facebook/react-native/pull/50937", "diff_url": "https://github.com/facebook/react-native/pull/50937.diff", "patch_url": "https://github.com/facebook/react-native/pull/50937.patch", "merged_at": null }
Summary: changelog: [internal] Reviewed By: yungsters Differential Revision: D73657804
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50937/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50937/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50936
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50936/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50936/comments
https://api.github.com/repos/facebook/react-native/issues/50936/events
https://github.com/facebook/react-native/pull/50936
3,019,951,331
PR_kwDOAbrxp86T6J1g
50,936
Replace hsr_core dependency for react profiling with hz_tracing dependency
{ "login": "metaadrianstone", "id": 204764348, "node_id": "U_kgDODDR0vA", "avatar_url": "https://avatars.githubusercontent.com/u/204764348?v=4", "gravatar_id": "", "url": "https://api.github.com/users/metaadrianstone", "html_url": "https://github.com/metaadrianstone", "followers_url": "https://api.github.com/users/metaadrianstone/followers", "following_url": "https://api.github.com/users/metaadrianstone/following{/other_user}", "gists_url": "https://api.github.com/users/metaadrianstone/gists{/gist_id}", "starred_url": "https://api.github.com/users/metaadrianstone/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/metaadrianstone/subscriptions", "organizations_url": "https://api.github.com/users/metaadrianstone/orgs", "repos_url": "https://api.github.com/users/metaadrianstone/repos", "events_url": "https://api.github.com/users/metaadrianstone/events{/privacy}", "received_events_url": "https://api.github.com/users/metaadrianstone/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
4
2025-04-25T12:39:25
2025-04-25T18:35:00
2025-04-25T18:34:49
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50936", "html_url": "https://github.com/facebook/react-native/pull/50936", "diff_url": "https://github.com/facebook/react-native/pull/50936.diff", "patch_url": "https://github.com/facebook/react-native/pull/50936.patch", "merged_at": null }
Summary: This PR replaces a one internal header dependency with another. This is only relevant to an unsupported build mode. Differential Revision: D73532803
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50936/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50936/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50935
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50935/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50935/comments
https://api.github.com/repos/facebook/react-native/issues/50935/events
https://github.com/facebook/react-native/pull/50935
3,019,808,030
PR_kwDOAbrxp86T5q4X
50,935
Removing internal ModalHostShadowNode and ModalHostHelper classes
{ "login": "cortinico", "id": 3001957, "node_id": "MDQ6VXNlcjMwMDE5NTc=", "avatar_url": "https://avatars.githubusercontent.com/u/3001957?v=4", "gravatar_id": "", "url": "https://api.github.com/users/cortinico", "html_url": "https://github.com/cortinico", "followers_url": "https://api.github.com/users/cortinico/followers", "following_url": "https://api.github.com/users/cortinico/following{/other_user}", "gists_url": "https://api.github.com/users/cortinico/gists{/gist_id}", "starred_url": "https://api.github.com/users/cortinico/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cortinico/subscriptions", "organizations_url": "https://api.github.com/users/cortinico/orgs", "repos_url": "https://api.github.com/users/cortinico/repos", "events_url": "https://api.github.com/users/cortinico/events{/privacy}", "received_events_url": "https://api.github.com/users/cortinico/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
3
2025-04-25T11:37:42
2025-04-25T15:25:30
2025-04-25T15:25:20
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50935", "html_url": "https://github.com/facebook/react-native/pull/50935", "diff_url": "https://github.com/facebook/react-native/pull/50935.diff", "patch_url": "https://github.com/facebook/react-native/pull/50935.patch", "merged_at": null }
Summary: Those classes are internal and deprecated since a while. It should now be safe to fully remove them. Changelog: [Internal] [Changed] - Differential Revision: D73655877
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50935/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50935/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50934
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50934/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50934/comments
https://api.github.com/repos/facebook/react-native/issues/50934/events
https://github.com/facebook/react-native/issues/50934
3,019,738,437
I_kwDOAbrxp86z_Y1F
50,934
Support minimumFontScale in paragraphAttributes
{ "login": "anupriya13", "id": 54227869, "node_id": "MDQ6VXNlcjU0MjI3ODY5", "avatar_url": "https://avatars.githubusercontent.com/u/54227869?v=4", "gravatar_id": "", "url": "https://api.github.com/users/anupriya13", "html_url": "https://github.com/anupriya13", "followers_url": "https://api.github.com/users/anupriya13/followers", "following_url": "https://api.github.com/users/anupriya13/following{/other_user}", "gists_url": "https://api.github.com/users/anupriya13/gists{/gist_id}", "starred_url": "https://api.github.com/users/anupriya13/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/anupriya13/subscriptions", "organizations_url": "https://api.github.com/users/anupriya13/orgs", "repos_url": "https://api.github.com/users/anupriya13/repos", "events_url": "https://api.github.com/users/anupriya13/events{/privacy}", "received_events_url": "https://api.github.com/users/anupriya13/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 856933610, "node_id": "MDU6TGFiZWw4NTY5MzM2MTA=", "url": "https://api.github.com/repos/facebook/react-native/labels/Resolution:%20PR%20Submitted", "name": "Resolution: PR Submitted", "color": "0052cc", "default": false, "description": "A pull request with a fix has been provided." }, { "id": 1794376073, "node_id": "MDU6TGFiZWwxNzk0Mzc2MDcz", "url": "https://api.github.com/repos/facebook/react-native/labels/Needs:%20Repro", "name": "Needs: Repro", "color": "d4c5f9", "default": false, "description": "This issue could be improved with a clear list of steps to reproduce the issue." }, { "id": 1877909121, "node_id": "MDU6TGFiZWwxODc3OTA5MTIx", "url": "https://api.github.com/repos/facebook/react-native/labels/Needs:%20Attention", "name": "Needs: Attention", "color": "f9c884", "default": false, "description": "Issues where the author has responded to feedback." }, { "id": 3815166274, "node_id": "LA_kwDOAbrxp87jZtFC", "url": "https://api.github.com/repos/facebook/react-native/labels/Type:%20New%20Architecture", "name": "Type: New Architecture", "color": "f9d0c4", "default": false, "description": "Issues and PRs related to new architecture (Fabric/Turbo Modules)" } ]
closed
false
null
[]
null
2
2025-04-25T11:08:11
2025-04-30T12:33:44
2025-04-30T12:33:44
CONTRIBUTOR
null
null
null
null
### Description https://github.com/facebook/react-native/pull/50933/files#diff-550c9f2b6cb86223d149099abcd8962db19196bdf078b3c27deedc5b16b6bea6 Need to add `minimumFontScale` as it's missing Related PR: https://github.com/microsoft/react-native-windows/pull/14617 https://github.com/facebook/react-native/pull/50933 Related Issue: https://github.com/microsoft/react-native-windows/issues/13829 ### Steps to reproduce Pass minimumFontScale in RNW for TEXT ### React Native Version 0.78.2 ### Affected Platforms Build - Windows ### Areas Fabric - The New Renderer ### Output of `npx @react-native-community/cli info` ```text info Fetching system and libraries information... System: OS: Windows 11 10.0.22631 CPU: (16) x64 Intel(R) Xeon(R) Platinum 8370C CPU @ 2.80GHz Memory: 24.59 GB / 63.95 GB Binaries: Node: version: 18.18.0 path: C:\Program Files\nodejs\node.EXE Yarn: version: 1.22.22 path: C:\Program Files (x86)\Yarn\bin\yarn.CMD npm: version: 9.8.1 path: C:\Program Files\nodejs\npm.CMD Watchman: Not Found SDKs: Android SDK: Not Found Windows SDK: AllowDevelopmentWithoutDevLicense: Enabled AllowAllTrustedApps: Enabled Versions: - 10.0.17763.0 - 10.0.18362.0 - 10.0.19041.0 - 10.0.22000.0 - 10.0.22621.0 - 10.0.26100.0 IDEs: Android Studio: Not Found Visual Studio: - 17.13.35828.75 (Visual Studio Enterprise 2022) - 17.13.35828.75 (Visual Studio Community 2022) Languages: Java: Not Found Ruby: Not Found npmPackages: "@react-native-community/cli": Not Found react: Not Found react-native: Not Found react-native-windows: Not Found npmGlobalPackages: "*react-native*": Not Found Android: hermesEnabled: Not found newArchEnabled: Not found iOS: hermesEnabled: Not found newArchEnabled: Not found ``` ### Stacktrace or Logs ```text info Fetching system and libraries information... System: OS: Windows 11 10.0.22631 CPU: (16) x64 Intel(R) Xeon(R) Platinum 8370C CPU @ 2.80GHz Memory: 24.59 GB / 63.95 GB Binaries: Node: version: 18.18.0 path: C:\Program Files\nodejs\node.EXE Yarn: version: 1.22.22 path: C:\Program Files (x86)\Yarn\bin\yarn.CMD npm: version: 9.8.1 path: C:\Program Files\nodejs\npm.CMD Watchman: Not Found SDKs: Android SDK: Not Found Windows SDK: AllowDevelopmentWithoutDevLicense: Enabled AllowAllTrustedApps: Enabled Versions: - 10.0.17763.0 - 10.0.18362.0 - 10.0.19041.0 - 10.0.22000.0 - 10.0.22621.0 - 10.0.26100.0 IDEs: Android Studio: Not Found Visual Studio: - 17.13.35828.75 (Visual Studio Enterprise 2022) - 17.13.35828.75 (Visual Studio Community 2022) Languages: Java: Not Found Ruby: Not Found npmPackages: "@react-native-community/cli": Not Found react: Not Found react-native: Not Found react-native-windows: Not Found npmGlobalPackages: "*react-native*": Not Found Android: hermesEnabled: Not found newArchEnabled: Not found iOS: hermesEnabled: Not found newArchEnabled: Not found ``` ### MANDATORY Reproducer https://github.com/microsoft/react-native-windows/pull/14617 ### Screenshots and Videos _No response_
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50934/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50934/timeline
null
completed
{ "total": 0, "completed": 0, "percent_completed": 0 }
false
https://api.github.com/repos/facebook/react-native/issues/50933
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50933/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50933/comments
https://api.github.com/repos/facebook/react-native/issues/50933/events
https://github.com/facebook/react-native/pull/50933
3,019,731,469
PR_kwDOAbrxp86T5Z2i
50,933
Support minimumFontScale in paragraphAttributes
{ "login": "anupriya13", "id": 54227869, "node_id": "MDQ6VXNlcjU0MjI3ODY5", "avatar_url": "https://avatars.githubusercontent.com/u/54227869?v=4", "gravatar_id": "", "url": "https://api.github.com/users/anupriya13", "html_url": "https://github.com/anupriya13", "followers_url": "https://api.github.com/users/anupriya13/followers", "following_url": "https://api.github.com/users/anupriya13/following{/other_user}", "gists_url": "https://api.github.com/users/anupriya13/gists{/gist_id}", "starred_url": "https://api.github.com/users/anupriya13/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/anupriya13/subscriptions", "organizations_url": "https://api.github.com/users/anupriya13/orgs", "repos_url": "https://api.github.com/users/anupriya13/repos", "events_url": "https://api.github.com/users/anupriya13/events{/privacy}", "received_events_url": "https://api.github.com/users/anupriya13/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 3253537094, "node_id": "MDU6TGFiZWwzMjUzNTM3MDk0", "url": "https://api.github.com/repos/facebook/react-native/labels/Shared%20with%20Meta", "name": "Shared with Meta", "color": "BFD4F2", "default": false, "description": "Applied via automation to indicate that an Issue or Pull Request has been shared with the team." } ]
closed
false
null
[]
null
7
2025-04-25T11:04:44
2025-04-30T12:33:59
2025-04-30T12:33:45
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50933", "html_url": "https://github.com/facebook/react-native/pull/50933", "diff_url": "https://github.com/facebook/react-native/pull/50933.diff", "patch_url": "https://github.com/facebook/react-native/pull/50933.patch", "merged_at": null }
<!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. --> ## Summary: <!-- Explain the **motivation** for making this change. What existing problem does the pull request solve? --> Support minimumFontScale in paragraphAttributes Resolves https://github.com/facebook/react-native/issues/50934 ## Changelog: <!-- Help reviewers and the release process by writing your own changelog entry. Pick one each for the category and type tags: [GENERAL] [ADDED] - Message For more details, see: https://reactnative.dev/contributing/changelogs-in-pull-requests --> Support minimumFontScale in paragraphAttributes ## Test Plan: <!-- Demonstrate the code is solid. Example: The exact commands you ran and their output, screenshots / videos if the pull request changes the user interface. --> Tested via this code here: https://github.com/microsoft/react-native-windows/pull/14617 Before: ![image](https://github.com/user-attachments/assets/76b94aa8-228b-4a7e-9ec0-c366c7bf38ac) After: ![image](https://github.com/user-attachments/assets/f9fbf8c2-9776-429f-8605-5663f9c7b7c9) https://github.com/user-attachments/assets/fb9ae889-7d01-4317-a6e6-61e6b0708bc4
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50933/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50933/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50932
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50932/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50932/comments
https://api.github.com/repos/facebook/react-native/issues/50932/events
https://github.com/facebook/react-native/pull/50932
3,019,688,259
PR_kwDOAbrxp86T5QYK
50,932
Implement LegacyArchitecture warning for ShadowNode measure()
{ "login": "cortinico", "id": 3001957, "node_id": "MDQ6VXNlcjMwMDE5NTc=", "avatar_url": "https://avatars.githubusercontent.com/u/3001957?v=4", "gravatar_id": "", "url": "https://api.github.com/users/cortinico", "html_url": "https://github.com/cortinico", "followers_url": "https://api.github.com/users/cortinico/followers", "following_url": "https://api.github.com/users/cortinico/following{/other_user}", "gists_url": "https://api.github.com/users/cortinico/gists{/gist_id}", "starred_url": "https://api.github.com/users/cortinico/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cortinico/subscriptions", "organizations_url": "https://api.github.com/users/cortinico/orgs", "repos_url": "https://api.github.com/users/cortinico/repos", "events_url": "https://api.github.com/users/cortinico/events{/privacy}", "received_events_url": "https://api.github.com/users/cortinico/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
6
2025-04-25T10:43:53
2025-04-28T11:31:21
2025-04-28T11:31:09
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50932", "html_url": "https://github.com/facebook/react-native/pull/50932", "diff_url": "https://github.com/facebook/react-native/pull/50932.diff", "patch_url": "https://github.com/facebook/react-native/pull/50932.patch", "merged_at": null }
Summary: Add a warning for LegacyArch users that are providing a ViewManager with a corresponding shadow node that implements the `YogaMeasureFunction`. For those users, we know that the ViewManager is most likely not working on the NewArch (unless they have a backward compat ViewManager with a C++ shadow node implementation). Changelog: [Android] [Added] - Warn Legacy Arch users if they use a Component with a ShadowNode with `YogaMeasureFunction.measure()` function. That Component will stop working on NewArch. Differential Revision: D73654273
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50932/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50932/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50931
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50931/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50931/comments
https://api.github.com/repos/facebook/react-native/issues/50931/events
https://github.com/facebook/react-native/pull/50931
3,019,688,230
PR_kwDOAbrxp86T5QXy
50,931
Cleanup LegacyArchitectureLogger.OSS_LEGACY_WARNINGS_ENABLED
{ "login": "cortinico", "id": 3001957, "node_id": "MDQ6VXNlcjMwMDE5NTc=", "avatar_url": "https://avatars.githubusercontent.com/u/3001957?v=4", "gravatar_id": "", "url": "https://api.github.com/users/cortinico", "html_url": "https://github.com/cortinico", "followers_url": "https://api.github.com/users/cortinico/followers", "following_url": "https://api.github.com/users/cortinico/following{/other_user}", "gists_url": "https://api.github.com/users/cortinico/gists{/gist_id}", "starred_url": "https://api.github.com/users/cortinico/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cortinico/subscriptions", "organizations_url": "https://api.github.com/users/cortinico/orgs", "repos_url": "https://api.github.com/users/cortinico/repos", "events_url": "https://api.github.com/users/cortinico/events{/privacy}", "received_events_url": "https://api.github.com/users/cortinico/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
2
2025-04-25T10:43:52
2025-04-25T14:54:04
2025-04-25T14:53:46
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50931", "html_url": "https://github.com/facebook/react-native/pull/50931", "diff_url": "https://github.com/facebook/react-native/pull/50931.diff", "patch_url": "https://github.com/facebook/react-native/pull/50931.patch", "merged_at": null }
Summary: This removes all the `OSS_LEGACY_WARNINGS_ENABLED` infrastructure from LegacyArchitectureLogger. We'll instead pivot to use ad-hoc functions for scenarios that don't work in LegacyArch + Interop Layers (see D73654273). Changelog: [Internal] [Changed] - Differential Revision: D73654272
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50931/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50931/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50930
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50930/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50930/comments
https://api.github.com/repos/facebook/react-native/issues/50930/events
https://github.com/facebook/react-native/pull/50930
3,019,688,209
PR_kwDOAbrxp86T5QXd
50,930
RNTester - Do not explicitely enable `legacyWarningsEnabled`
{ "login": "cortinico", "id": 3001957, "node_id": "MDQ6VXNlcjMwMDE5NTc=", "avatar_url": "https://avatars.githubusercontent.com/u/3001957?v=4", "gravatar_id": "", "url": "https://api.github.com/users/cortinico", "html_url": "https://github.com/cortinico", "followers_url": "https://api.github.com/users/cortinico/followers", "following_url": "https://api.github.com/users/cortinico/following{/other_user}", "gists_url": "https://api.github.com/users/cortinico/gists{/gist_id}", "starred_url": "https://api.github.com/users/cortinico/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cortinico/subscriptions", "organizations_url": "https://api.github.com/users/cortinico/orgs", "repos_url": "https://api.github.com/users/cortinico/repos", "events_url": "https://api.github.com/users/cortinico/events{/privacy}", "received_events_url": "https://api.github.com/users/cortinico/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
2
2025-04-25T10:43:51
2025-04-25T14:53:57
2025-04-25T14:53:45
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50930", "html_url": "https://github.com/facebook/react-native/pull/50930", "diff_url": "https://github.com/facebook/react-native/pull/50930.diff", "patch_url": "https://github.com/facebook/react-native/pull/50930.patch", "merged_at": null }
Summary: Due to D73591315, we don't need to specify the `legacyWarningsEnabled` for RNTester anymore as it's effectively ignored. Changelog: [Internal] [Changed] - Differential Revision: D73654270
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50930/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50930/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50929
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50929/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50929/comments
https://api.github.com/repos/facebook/react-native/issues/50929/events
https://github.com/facebook/react-native/pull/50929
3,019,688,189
PR_kwDOAbrxp86T5QXK
50,929
RNGP - Ignore the `legacyWarningsEnabled` property if provided
{ "login": "cortinico", "id": 3001957, "node_id": "MDQ6VXNlcjMwMDE5NTc=", "avatar_url": "https://avatars.githubusercontent.com/u/3001957?v=4", "gravatar_id": "", "url": "https://api.github.com/users/cortinico", "html_url": "https://github.com/cortinico", "followers_url": "https://api.github.com/users/cortinico/followers", "following_url": "https://api.github.com/users/cortinico/following{/other_user}", "gists_url": "https://api.github.com/users/cortinico/gists{/gist_id}", "starred_url": "https://api.github.com/users/cortinico/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/cortinico/subscriptions", "organizations_url": "https://api.github.com/users/cortinico/orgs", "repos_url": "https://api.github.com/users/cortinico/repos", "events_url": "https://api.github.com/users/cortinico/events{/privacy}", "received_events_url": "https://api.github.com/users/cortinico/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
3
2025-04-25T10:43:50
2025-04-25T14:53:52
2025-04-25T14:53:44
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50929", "html_url": "https://github.com/facebook/react-native/pull/50929", "diff_url": "https://github.com/facebook/react-native/pull/50929.diff", "patch_url": "https://github.com/facebook/react-native/pull/50929.patch", "merged_at": null }
Summary: We decided to change the warning model for LegacyArch/NewArch. I'm currently removing the infra to read the `legacyWarningsEnabled` Gradle property if provided. Warnings will be enabled by default for all Legacy Arch users in the new model. This change was never shipped in a numbered version, so that's not breaking. Changelog: [Internal] [Changed] - Differential Revision: D73591315
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50929/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50929/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50928
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50928/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50928/comments
https://api.github.com/repos/facebook/react-native/issues/50928/events
https://github.com/facebook/react-native/pull/50928
3,019,636,946
PR_kwDOAbrxp86T5FI0
50,928
Fix Switch broken as controlled component
{ "login": "javache", "id": 5676, "node_id": "MDQ6VXNlcjU2NzY=", "avatar_url": "https://avatars.githubusercontent.com/u/5676?v=4", "gravatar_id": "", "url": "https://api.github.com/users/javache", "html_url": "https://github.com/javache", "followers_url": "https://api.github.com/users/javache/followers", "following_url": "https://api.github.com/users/javache/following{/other_user}", "gists_url": "https://api.github.com/users/javache/gists{/gist_id}", "starred_url": "https://api.github.com/users/javache/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/javache/subscriptions", "organizations_url": "https://api.github.com/users/javache/orgs", "repos_url": "https://api.github.com/users/javache/repos", "events_url": "https://api.github.com/users/javache/events{/privacy}", "received_events_url": "https://api.github.com/users/javache/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
4
2025-04-25T10:19:52
2025-04-25T14:17:00
2025-04-25T13:16:48
MEMBER
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50928", "html_url": "https://github.com/facebook/react-native/pull/50928", "diff_url": "https://github.com/facebook/react-native/pull/50928.diff", "patch_url": "https://github.com/facebook/react-native/pull/50928.patch", "merged_at": null }
Summary: This broke in D72979663, since we relied on the object identify of `native` changing to correctly reset the native state back to the controlled JS state. Changelog: [General][Fixed] Fixed switches correctly reverting to controlled state Reviewed By: vzaidman Differential Revision: D73653323
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50928/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50928/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50927
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50927/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50927/comments
https://api.github.com/repos/facebook/react-native/issues/50927/events
https://github.com/facebook/react-native/pull/50927
3,018,885,967
PR_kwDOAbrxp86T2kpP
50,927
Annotate Interop Event APIs
{ "login": "mdvacca", "id": 515103, "node_id": "MDQ6VXNlcjUxNTEwMw==", "avatar_url": "https://avatars.githubusercontent.com/u/515103?v=4", "gravatar_id": "", "url": "https://api.github.com/users/mdvacca", "html_url": "https://github.com/mdvacca", "followers_url": "https://api.github.com/users/mdvacca/followers", "following_url": "https://api.github.com/users/mdvacca/following{/other_user}", "gists_url": "https://api.github.com/users/mdvacca/gists{/gist_id}", "starred_url": "https://api.github.com/users/mdvacca/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/mdvacca/subscriptions", "organizations_url": "https://api.github.com/users/mdvacca/orgs", "repos_url": "https://api.github.com/users/mdvacca/repos", "events_url": "https://api.github.com/users/mdvacca/events{/privacy}", "received_events_url": "https://api.github.com/users/mdvacca/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
2
2025-04-25T03:19:58
2025-04-25T05:10:32
2025-04-25T05:10:12
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50927", "html_url": "https://github.com/facebook/react-native/pull/50927", "diff_url": "https://github.com/facebook/react-native/pull/50927.diff", "patch_url": "https://github.com/facebook/react-native/pull/50927.patch", "merged_at": null }
Summary: Annotate Interop Event APIs changelog: [internal] internal Reviewed By: shwanton Differential Revision: D73407612
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50927/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50927/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50926
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50926/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50926/comments
https://api.github.com/repos/facebook/react-native/issues/50926/events
https://github.com/facebook/react-native/pull/50926
3,018,885,955
PR_kwDOAbrxp86T2kpE
50,926
Mark NativeModule interop classes with InteropLegacyArchitecture
{ "login": "mdvacca", "id": 515103, "node_id": "MDQ6VXNlcjUxNTEwMw==", "avatar_url": "https://avatars.githubusercontent.com/u/515103?v=4", "gravatar_id": "", "url": "https://api.github.com/users/mdvacca", "html_url": "https://github.com/mdvacca", "followers_url": "https://api.github.com/users/mdvacca/followers", "following_url": "https://api.github.com/users/mdvacca/following{/other_user}", "gists_url": "https://api.github.com/users/mdvacca/gists{/gist_id}", "starred_url": "https://api.github.com/users/mdvacca/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/mdvacca/subscriptions", "organizations_url": "https://api.github.com/users/mdvacca/orgs", "repos_url": "https://api.github.com/users/mdvacca/repos", "events_url": "https://api.github.com/users/mdvacca/events{/privacy}", "received_events_url": "https://api.github.com/users/mdvacca/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
2
2025-04-25T03:19:57
2025-04-25T05:10:26
2025-04-25T05:10:11
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50926", "html_url": "https://github.com/facebook/react-native/pull/50926", "diff_url": "https://github.com/facebook/react-native/pull/50926.diff", "patch_url": "https://github.com/facebook/react-native/pull/50926.patch", "merged_at": null }
Summary: Mark NativeModule interop classes with InteropLegacyArchitecture changelog: [internal] internal Reviewed By: shwanton Differential Revision: D73407611
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50926/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50926/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50925
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50925/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50925/comments
https://api.github.com/repos/facebook/react-native/issues/50925/events
https://github.com/facebook/react-native/pull/50925
3,018,659,483
PR_kwDOAbrxp86T11bi
50,925
getShadowNodeClass() impl in PreparedLayoutTextViewManager
{ "login": "joevilches", "id": 17124862, "node_id": "MDQ6VXNlcjE3MTI0ODYy", "avatar_url": "https://avatars.githubusercontent.com/u/17124862?v=4", "gravatar_id": "", "url": "https://api.github.com/users/joevilches", "html_url": "https://github.com/joevilches", "followers_url": "https://api.github.com/users/joevilches/followers", "following_url": "https://api.github.com/users/joevilches/following{/other_user}", "gists_url": "https://api.github.com/users/joevilches/gists{/gist_id}", "starred_url": "https://api.github.com/users/joevilches/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/joevilches/subscriptions", "organizations_url": "https://api.github.com/users/joevilches/orgs", "repos_url": "https://api.github.com/users/joevilches/repos", "events_url": "https://api.github.com/users/joevilches/events{/privacy}", "received_events_url": "https://api.github.com/users/joevilches/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
4
2025-04-24T23:35:24
2025-04-30T22:12:35
2025-04-30T22:12:26
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50925", "html_url": "https://github.com/facebook/react-native/pull/50925", "diff_url": "https://github.com/facebook/react-native/pull/50925.diff", "patch_url": "https://github.com/facebook/react-native/pull/50925.patch", "merged_at": null }
Summary: This crashes without this change, now it does not! Differential Revision: D73626930
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50925/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50925/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50924
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50924/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50924/comments
https://api.github.com/repos/facebook/react-native/issues/50924/events
https://github.com/facebook/react-native/pull/50924
3,018,508,426
PR_kwDOAbrxp86T1VhR
50,924
Remove unused com.facebook.react.bridge.MemoryPressure class
{ "login": "mateoguzmana", "id": 20783123, "node_id": "MDQ6VXNlcjIwNzgzMTIz", "avatar_url": "https://avatars.githubusercontent.com/u/20783123?v=4", "gravatar_id": "", "url": "https://api.github.com/users/mateoguzmana", "html_url": "https://github.com/mateoguzmana", "followers_url": "https://api.github.com/users/mateoguzmana/followers", "following_url": "https://api.github.com/users/mateoguzmana/following{/other_user}", "gists_url": "https://api.github.com/users/mateoguzmana/gists{/gist_id}", "starred_url": "https://api.github.com/users/mateoguzmana/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/mateoguzmana/subscriptions", "organizations_url": "https://api.github.com/users/mateoguzmana/orgs", "repos_url": "https://api.github.com/users/mateoguzmana/repos", "events_url": "https://api.github.com/users/mateoguzmana/events{/privacy}", "received_events_url": "https://api.github.com/users/mateoguzmana/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 3253537094, "node_id": "MDU6TGFiZWwzMjUzNTM3MDk0", "url": "https://api.github.com/repos/facebook/react-native/labels/Shared%20with%20Meta", "name": "Shared with Meta", "color": "BFD4F2", "default": false, "description": "Applied via automation to indicate that an Issue or Pull Request has been shared with the team." } ]
closed
false
null
[]
null
6
2025-04-24T21:34:02
2025-04-28T08:26:45
2025-04-28T08:26:23
COLLABORATOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50924", "html_url": "https://github.com/facebook/react-native/pull/50924", "diff_url": "https://github.com/facebook/react-native/pull/50924.diff", "patch_url": "https://github.com/facebook/react-native/pull/50924.patch", "merged_at": null }
## Summary: This class can be internalized as part of the initiative to reduce the public API surface. I've checked there are [no relevant OSS usages](https://github.com/search?type=code&q=NOT+is%3Afork+NOT+org%3Afacebook+NOT+repo%3Areact-native-tvos%2Freact-native-tvos+NOT+repo%3Anuagoz%2Freact-native+NOT+repo%3A2lambda123%2Freact-native+NOT+repo%3Abeanchips%2Ffacebookreactnative+NOT+repo%3AfabOnReact%2Freact-native-notes+NOT+user%3Ahuntie+NOT+user%3Acortinico+NOT+repo%3AMaxdev18%2Fpowersync_app+NOT+repo%3Acarter-0%2Finstagram-decompiled+NOT+repo%3Am0mosenpai%2Finstadamn+NOT+repo%3AA-Star100%2FA-Star100-AUG2-2024+NOT+repo%3Alclnrd%2Fdetox-scrollview-reproductible+NOT+repo%3ADionisisChytiris%2FWorldWiseTrivia_Main+NOT+repo%3Apast3l%2Fhi2+NOT+repo%3AoneDotpy%2FCaribouQuest+NOT+repo%3Abejayoharen%2Fdailytodo+NOT+repo%3Amolangning%2Freversing-discord+NOT+repo%3AScottPrzy%2Freact-native+NOT+repo%3Agabrieldonadel%2Freact-native-visionos+NOT+repo%3AGabriel2308%2FTestes-Soft+NOT+repo%3Adawnzs03%2FflakyBuild+NOT+repo%3Acga2351%2Fcode+NOT+repo%3Astreeg%2Ftcc+NOT+repo%3Asoftware-mansion-labs%2Freact-native-swiftui+NOT+repo%3Apkcsecurity%2Fdecompiled-lightbulb+com.facebook.react.bridge.MemoryPressure). Edit: we can remove it as has no usages ## Changelog: [INTERNAL] - Remove unused com.facebook.react.bridge.MemoryPressure class ## Test Plan: ```bash yarn test-android yarn android ```
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50924/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50924/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50923
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50923/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50923/comments
https://api.github.com/repos/facebook/react-native/issues/50923/events
https://github.com/facebook/react-native/pull/50923
3,018,507,091
PR_kwDOAbrxp86T1VO_
50,923
PreparedLayoutTextViewManager
{ "login": "NickGerleman", "id": 835219, "node_id": "MDQ6VXNlcjgzNTIxOQ==", "avatar_url": "https://avatars.githubusercontent.com/u/835219?v=4", "gravatar_id": "", "url": "https://api.github.com/users/NickGerleman", "html_url": "https://github.com/NickGerleman", "followers_url": "https://api.github.com/users/NickGerleman/followers", "following_url": "https://api.github.com/users/NickGerleman/following{/other_user}", "gists_url": "https://api.github.com/users/NickGerleman/gists{/gist_id}", "starred_url": "https://api.github.com/users/NickGerleman/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/NickGerleman/subscriptions", "organizations_url": "https://api.github.com/users/NickGerleman/orgs", "repos_url": "https://api.github.com/users/NickGerleman/repos", "events_url": "https://api.github.com/users/NickGerleman/events{/privacy}", "received_events_url": "https://api.github.com/users/NickGerleman/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
2
2025-04-24T21:33:14
2025-04-25T00:23:54
2025-04-25T00:23:36
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50923", "html_url": "https://github.com/facebook/react-native/pull/50923", "diff_url": "https://github.com/facebook/react-native/pull/50923.diff", "patch_url": "https://github.com/facebook/react-native/pull/50923.patch", "merged_at": null }
Summary: This implements the view manager for `PreparedLayoutTextView`, originating by taking the view managers composing `ReactTextView`, converting to Kotlin, and removing everything no longer needed. In Facsimile, anything influencing text appearance is applied earlier, when creating the Fabric layout, so there are many less setters here. Most visual attributes are instead present in the state we are presenting. We have tasks for some of these, that need to be reimplemented, as they do not currently influence the Spannable being measured. That includes e.g. `ReactTextViewManagerCallback`, used for injection, and `dataDetectorType` for linkifying Spannable. Changelog: [Internal] Reviewed By: rshest Differential Revision: D73287706
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50923/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50923/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50922
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50922/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50922/comments
https://api.github.com/repos/facebook/react-native/issues/50922/events
https://github.com/facebook/react-native/pull/50922
3,018,506,858
PR_kwDOAbrxp86T1VLu
50,922
PreparedLayoutTextView
{ "login": "NickGerleman", "id": 835219, "node_id": "MDQ6VXNlcjgzNTIxOQ==", "avatar_url": "https://avatars.githubusercontent.com/u/835219?v=4", "gravatar_id": "", "url": "https://api.github.com/users/NickGerleman", "html_url": "https://github.com/NickGerleman", "followers_url": "https://api.github.com/users/NickGerleman/followers", "following_url": "https://api.github.com/users/NickGerleman/following{/other_user}", "gists_url": "https://api.github.com/users/NickGerleman/gists{/gist_id}", "starred_url": "https://api.github.com/users/NickGerleman/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/NickGerleman/subscriptions", "organizations_url": "https://api.github.com/users/NickGerleman/orgs", "repos_url": "https://api.github.com/users/NickGerleman/repos", "events_url": "https://api.github.com/users/NickGerleman/events{/privacy}", "received_events_url": "https://api.github.com/users/NickGerleman/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
2
2025-04-24T21:33:05
2025-04-25T00:23:50
2025-04-25T00:23:36
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50922", "html_url": "https://github.com/facebook/react-native/pull/50922", "diff_url": "https://github.com/facebook/react-native/pull/50922.diff", "patch_url": "https://github.com/facebook/react-native/pull/50922.patch", "merged_at": null }
Summary: This forms the basis for a replacement of `TextView`. This started off with Litho's [`RCTextView`](https://github.com/facebook/litho/blob/master/litho-rendercore-text/src/main/java/com/facebook/rendercore/text/RCTextView.java), which is a simple view, for rendering a text layout, and providing some built-in keyboard navigation and a11y support. Many changes were made to it, including: 1. Removing many parts not relevant to RN, or which will be replaced by other RN infra. E.g. we will reuse existing a11y delegates, have existing ways of creating Spannables and text layouts, inline views, etc 2. Converting to Kotlin 3. Adding back in some changes required for RN's drawing, and expected view manager APIs (e.g. overflow/clipping customization) 4. Making it target a ViewGroup instead of a View, for correct inline view support down the line Because we rely on drawing text layout, with the same Spannable as before, most things "just work", because they are part of the layout we are drawing, generated by TextLayoutManager on the Fabric side. We don't offer much customization to what can be drawn, forcing it to have happened in the layout we are showing already. There are quite a few bits not implemented yet. Some of these are cases, like `textAlignVertical`, were previously incorrectly implemented just at the ReactTextView layer, so Fabric layout was unaware of them. Another similar class to this is any non-default fonts which we must load. `adjustsFontSizeToFit` (stubbed out in later diff) will also need some tweaking with the new assumption we don’t want to mutate Spans/layouts set in State. Fine grained selection support is the largest tbd. Changelog: [Internal] Reviewed By: Abbondanzo Differential Revision: D73282649
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50922/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50922/timeline
null
null
null
true
https://api.github.com/repos/facebook/react-native/issues/50921
https://api.github.com/repos/facebook/react-native
https://api.github.com/repos/facebook/react-native/issues/50921/labels{/name}
https://api.github.com/repos/facebook/react-native/issues/50921/comments
https://api.github.com/repos/facebook/react-native/issues/50921/events
https://github.com/facebook/react-native/pull/50921
3,018,506,672
PR_kwDOAbrxp86T1VJK
50,921
Add unstable `ReferenceStateWrapper` API
{ "login": "NickGerleman", "id": 835219, "node_id": "MDQ6VXNlcjgzNTIxOQ==", "avatar_url": "https://avatars.githubusercontent.com/u/835219?v=4", "gravatar_id": "", "url": "https://api.github.com/users/NickGerleman", "html_url": "https://github.com/NickGerleman", "followers_url": "https://api.github.com/users/NickGerleman/followers", "following_url": "https://api.github.com/users/NickGerleman/following{/other_user}", "gists_url": "https://api.github.com/users/NickGerleman/gists{/gist_id}", "starred_url": "https://api.github.com/users/NickGerleman/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/NickGerleman/subscriptions", "organizations_url": "https://api.github.com/users/NickGerleman/orgs", "repos_url": "https://api.github.com/users/NickGerleman/repos", "events_url": "https://api.github.com/users/NickGerleman/events{/privacy}", "received_events_url": "https://api.github.com/users/NickGerleman/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
[ { "id": 196858975, "node_id": "MDU6TGFiZWwxOTY4NTg5NzU=", "url": "https://api.github.com/repos/facebook/react-native/labels/CLA%20Signed", "name": "CLA Signed", "color": "ffffff", "default": false, "description": "This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed." }, { "id": 982010329, "node_id": "MDU6TGFiZWw5ODIwMTAzMjk=", "url": "https://api.github.com/repos/facebook/react-native/labels/Merged", "name": "Merged", "color": "6f42c1", "default": false, "description": "This PR has been merged." }, { "id": 1208510250, "node_id": "MDU6TGFiZWwxMjA4NTEwMjUw", "url": "https://api.github.com/repos/facebook/react-native/labels/p:%20Facebook", "name": "p: Facebook", "color": "0052cc", "default": false, "description": "Partner: Facebook" }, { "id": 1215208045, "node_id": "MDU6TGFiZWwxMjE1MjA4MDQ1", "url": "https://api.github.com/repos/facebook/react-native/labels/Partner", "name": "Partner", "color": "0052cc", "default": false, "description": "" }, { "id": 1690952236, "node_id": "MDU6TGFiZWwxNjkwOTUyMjM2", "url": "https://api.github.com/repos/facebook/react-native/labels/fb-exported", "name": "fb-exported", "color": "ededed", "default": false, "description": null } ]
closed
false
null
[]
null
2
2025-04-24T21:32:58
2025-04-25T00:23:46
2025-04-25T00:23:35
CONTRIBUTOR
null
null
false
{ "url": "https://api.github.com/repos/facebook/react-native/pulls/50921", "html_url": "https://github.com/facebook/react-native/pull/50921", "diff_url": "https://github.com/facebook/react-native/pull/50921.diff", "patch_url": "https://github.com/facebook/react-native/pull/50921.patch", "merged_at": null }
Summary: This adds the ability to represent Fabric State sent to Java View managers as a raw JNI reference. This is used by Facsimile to tell a component to mount a layout, previously generated during measurement. This API is consciously well hidden (in comparison to MapBuffer which is fairly public). To use it: 1. The concrete state data representation must implement a method named `getJNIReference()` that returns an fbjni ref 2. The Java view manager must cast the `StateWrapper` to an internal `ReferenceStateWrapper` type, not exposed outside of React Native internals Changelog: [Internal] Reviewed By: alanleedev Differential Revision: D73159146
{ "login": "facebook-github-bot", "id": 6422482, "node_id": "MDQ6VXNlcjY0MjI0ODI=", "avatar_url": "https://avatars.githubusercontent.com/u/6422482?v=4", "gravatar_id": "", "url": "https://api.github.com/users/facebook-github-bot", "html_url": "https://github.com/facebook-github-bot", "followers_url": "https://api.github.com/users/facebook-github-bot/followers", "following_url": "https://api.github.com/users/facebook-github-bot/following{/other_user}", "gists_url": "https://api.github.com/users/facebook-github-bot/gists{/gist_id}", "starred_url": "https://api.github.com/users/facebook-github-bot/starred{/owner}{/repo}", "subscriptions_url": "https://api.github.com/users/facebook-github-bot/subscriptions", "organizations_url": "https://api.github.com/users/facebook-github-bot/orgs", "repos_url": "https://api.github.com/users/facebook-github-bot/repos", "events_url": "https://api.github.com/users/facebook-github-bot/events{/privacy}", "received_events_url": "https://api.github.com/users/facebook-github-bot/received_events", "type": "User", "user_view_type": "public", "site_admin": false }
{ "url": "https://api.github.com/repos/facebook/react-native/issues/50921/reactions", "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 }
https://api.github.com/repos/facebook/react-native/issues/50921/timeline
null
null
null
true