mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/51840 Bumps the minimum version of Node.js in React Native to the current active LTS release (22.x, upgraded from 18.x which is now out of support). - CI configurations are reduced from `[22, 20, 18]` to `[24, 22]`. {F1978909878} See https://nodejs.org/en/about/previous-releases. Changelog: [General][Breaking] - Our new minimum Node version is Node.js 22 Reviewed By: yungsters, cortinico Differential Revision: D76037015 fbshipit-source-id: b6e4b3ee279a9a93d716a13297420bba73f45250
136 lines
5.4 KiB
YAML
136 lines
5.4 KiB
YAML
name: 💫 New Architecture - Bug Report
|
|
description: Report a reproducible bug or a build issue when using the New Architecture (Fabric & TurboModules) in React Native.
|
|
labels: ["Needs: Triage :mag:", "Type: New Architecture"]
|
|
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: "## New Architecture Related Bugs"
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
Thank you for taking the time to report an issue for [the New Architecture of React Native](https://reactnative.dev/docs/the-new-architecture/landing-page),
|
|
your contribution will help make the framework better for everyone.
|
|
|
|
If you're **NOT** using the New Architecture, please use this [other bug type](https://github.com/facebook/react-native/issues/new?template=bug_report.yml).
|
|
Do not attempt to open a bug in this category if you're not using the New Architecture as your bug will be closed.
|
|
|
|
Make sure that your issue:
|
|
* Have a **valid reproducer** (See [How to report a bug](https://reactnative.dev/contributing/how-to-report-a-bug)).
|
|
* Is tested against the [**latest stable**](https://github.com/facebook/react-native/releases/) of React Native.
|
|
|
|
🚨 IMPORTANT: Due to the extreme number of bugs we receive, issues **without a reproducer** or for an [**unsupported versions**](https://github.com/reactwg/react-native-releases#which-versions-are-currently-supported) of React Native **will be closed**.
|
|
- type: textarea
|
|
id: description
|
|
attributes:
|
|
label: Description
|
|
description: A clear and concise description of what the bug is.
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: reproduction
|
|
attributes:
|
|
label: Steps to reproduce
|
|
description: The list of steps that reproduce the issue.
|
|
placeholder: |
|
|
1. Install the application with `yarn android`
|
|
2. Click on the button on the Home
|
|
3. Notice the crash
|
|
validations:
|
|
required: true
|
|
- type: input
|
|
id: version
|
|
attributes:
|
|
label: React Native Version
|
|
description: The version of react-native that this issue reproduces on. Bear in mind that only issues on [supported versions](https://github.com/reactwg/react-native-releases#which-versions-are-currently-supported) will be looked into.
|
|
placeholder: "0.73.0"
|
|
validations:
|
|
required: true
|
|
- type: dropdown
|
|
id: platforms
|
|
attributes:
|
|
label: Affected Platforms
|
|
description: Please select which platform you're developing to, and which OS you're using for building.
|
|
multiple: true
|
|
options:
|
|
- Runtime - Android
|
|
- Runtime - iOS
|
|
- Runtime - Web
|
|
- Runtime - Desktop
|
|
- Build - MacOS
|
|
- Build - Windows
|
|
- Build - Linux
|
|
- Other (please specify)
|
|
validations:
|
|
required: true
|
|
- type: dropdown
|
|
id: areas
|
|
attributes:
|
|
label: Areas
|
|
description: Which areas of the New Architecture are affected by this bug report?
|
|
multiple: true
|
|
options:
|
|
- Fabric - The New Renderer
|
|
- TurboModule - The New Native Module System
|
|
- JSI - Javascript Interface
|
|
- Bridgeless - The New Initialization Flow
|
|
- Codegen
|
|
- Other (please specify)
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: react-native-info
|
|
attributes:
|
|
label: Output of `npx @react-native-community/cli info`
|
|
description: Run `npx @react-native-community/cli info` in your terminal, copy and paste the results here.
|
|
placeholder: |
|
|
Paste the output of `npx @react-native-community/cli info` here. The output looks like:
|
|
...
|
|
System:
|
|
OS: macOS 14.1.1
|
|
CPU: (10) arm64 Apple M1 Max
|
|
Memory: 417.81 MB / 64.00 GB
|
|
Shell:
|
|
version: "5.9"
|
|
path: /bin/zsh
|
|
Binaries:
|
|
Node: ...
|
|
version: 22.14.0
|
|
...
|
|
render: text
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: stacktrace
|
|
attributes:
|
|
label: Stacktrace or Logs
|
|
description: Please provide a stacktrace or a log of your crash or failure
|
|
render: text
|
|
placeholder: |
|
|
Paste your stacktraces and logs here. They might look like:
|
|
|
|
java.lang.UnsatisfiedLinkError: couldn't find DSO to load: libfabricjni.so caused by: com.facebook.react.fabric.StateWrapperImpl result: 0
|
|
at com.facebook.soloader.SoLoader.g(Unknown Source:341)
|
|
at com.facebook.soloader.SoLoader.t(Unknown Source:124)
|
|
at com.facebook.soloader.SoLoader.s(Unknown Source:2)
|
|
at com.facebook.soloader.SoLoader.q(Unknown Source:42)
|
|
at com.facebook.soloader.SoLoader.p(Unknown Source:1)
|
|
...
|
|
validations:
|
|
required: true
|
|
- type: input
|
|
id: reproducer
|
|
attributes:
|
|
label: MANDATORY Reproducer
|
|
description: A link to either a failing RNTesterPlayground.js file, an Expo Snack or a public repository from [this template](https://github.com/react-native-community/reproducer-react-native) that reproduces this bug. Reproducers are **mandatory**, issues without a reproducer will be closed.
|
|
placeholder: "https://github.com/<myuser>/<myreproducer>"
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: extra
|
|
attributes:
|
|
label: Screenshots and Videos
|
|
description: |
|
|
Please provide screenshot or a video of your bug if relevant.
|
|
Issues with videos and screenshots are more likely to **get prioritized**.
|