Skip to content

Commit 0483387

Browse files
authored
[blog] Add 0.84 release post (facebook#4980)
1 parent 63f35b5 commit 0483387

2 files changed

Lines changed: 223 additions & 0 deletions

File tree

Lines changed: 216 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,216 @@
1+
---
2+
title: 'React Native 0.84 - Hermes V1 by Default'
3+
authors: [huntie, alanleedev, chrfalch, gabrieldonadel]
4+
tags: [announcement, release]
5+
date: 2026-02-11
6+
---
7+
8+
import Tabs from '@theme/Tabs';
9+
import TabItem from '@theme/TabItem';
10+
11+
# React Native 0.84 - Hermes V1 by Default
12+
13+
Today we're excited to release React Native 0.84!
14+
15+
This release makes Hermes V1 the default JavaScript engine, bringing significant performance improvements to all React Native apps. We've also continued removing the Legacy Architecture on both iOS and Android, and are shipping precompiled iOS binaries by default.
16+
17+
### Highlights
18+
19+
- [Hermes V1 as Default](/blog/2026/02/11/react-native-0.84#hermes-v1-as-default)
20+
- [Precompiled Binaries on iOS by Default](/blog/2026/02/11/react-native-0.84#precompiled-binaries-on-ios-by-default)
21+
- [Legacy Architecture Components Removed](/blog/2026/02/11/react-native-0.84#legacy-architecture-components-removed)
22+
- [Node.js 22 Minimum](/blog/2026/02/11/react-native-0.84#nodejs-22-minimum)
23+
24+
<!--truncate-->
25+
26+
## Hermes V1 as Default
27+
28+
**Hermes V1 is now the default JavaScript engine for React Native on both iOS and Android**, following the initial experimental opt-in in React Native 0.82.
29+
30+
Hermes V1 represents the next evolution of the Hermes engine, with significant improvements to both the compiler and VM that deliver measurably better JavaScript performance.
31+
32+
**What This Means for Your App**
33+
34+
- **Automatic performance gains**: All apps will use Hermes V1 by default, bringing improved execution speed and reduced memory usage.
35+
- **No migration required**: If you're already using Hermes (the default since 0.70), you'll automatically get Hermes V1. No configuration changes needed.
36+
37+
<details>
38+
<summary><strong>Opting out from Hermes V1</strong></summary>
39+
40+
**Package manager override**
41+
42+
Force the installation of the legacy `hermes-compiler` package in your `package.json`:
43+
44+
<Tabs>
45+
<TabItem value="npm">
46+
```json title="package.json"
47+
"overrides": { "hermes-compiler": "0.15.0" }
48+
```
49+
</TabItem>
50+
<TabItem value="yarn">
51+
```json title="package.json"
52+
"resolutions": { "hermes-compiler": "0.15.0" }
53+
```
54+
</TabItem>
55+
<TabItem value="pnpm">
56+
```json title="package.json"
57+
"pnpm": { "overrides": { "hermes-compiler": "0.15.0" } }
58+
```
59+
</TabItem>
60+
</Tabs>
61+
62+
**iOS**
63+
64+
When installing CocoaPods dependencies, pass the `RCT_HERMES_V1_ENABLED=0` and `RCT_USE_PREBUILT_RNCORE=0` environment variables.
65+
66+
**Android**
67+
68+
Add `hermesV1Enabled=false` inside the `android/gradle.properties` file, and configure the application to [build React Native from source](/contributing/how-to-build-from-source#update-your-project-to-build-from-source).
69+
70+
</details>
71+
72+
## Precompiled Binaries on iOS by Default
73+
74+
React Native 0.84 now ships precompiled binaries on iOS by default. Previously introduced as an opt-in, precompiled binaries are now enabled out of the box, significantly reducing build times for iOS apps.
75+
76+
This means you no longer need to compile React Native core from source every time you do a clean build. The precompiled `.xcframework` binaries are automatically downloaded and used during `pod install`.
77+
78+
:::info
79+
If you need to build React Native from source (for example, to opt out of Hermes V1), you can disable precompiled binaries by setting `RCT_USE_PREBUILT_RNCORE=0` when installing pods.
80+
:::
81+
82+
## Legacy Architecture Components Removed
83+
84+
Building on the work started in 0.82 (which made the New Architecture the only runtime option), React Native 0.84 continues removing Legacy Architecture code from both iOS and Android. As described in the [RFC](https://github.com/react-native-community/discussions-and-proposals/pull/929), we're removing several Legacy Architecture classes in each release.
85+
86+
#### iOS
87+
88+
In 0.83, we introduced the experimental `RCT_REMOVE_LEGACY_ARCH` flag to compile out Legacy Architecture code. In 0.84, this is now the default behaviour — Legacy Architecture code is no longer included in your iOS builds, reducing both build time and app size.
89+
90+
No breakages are expected for apps already on the New Architecture — the Interop Layer code required for compatibility remains in place.
91+
92+
<details>
93+
<summary><strong>Re-enabling Legacy Architecture code on iOS</strong></summary>
94+
95+
If you need to re-enable Legacy Architecture code in your iOS builds, you'll need to build from source. Install CocoaPods dependencies with the following flags:
96+
97+
```bash
98+
RCT_USE_PREBUILT_RNCORE=0 RCT_REMOVE_LEGACY_ARCH=0 bundle exec pod install
99+
```
100+
101+
</details>
102+
103+
#### Android
104+
105+
<details>
106+
<summary><strong>Removed Legacy Architecture classes</strong></summary>
107+
108+
The following classes have been removed in this release:
109+
110+
```
111+
com.facebook.react.LazyReactPackage
112+
com.facebook.react.bridge.CxxModuleWrapper
113+
com.facebook.react.bridge.CxxModuleWrapperBase
114+
com.facebook.react.bridge.CallbackImpl
115+
com.facebook.react.bridge.NotThreadSafeBridgeIdleDebugListener
116+
com.facebook.react.bridge.OnBatchCompleteListener
117+
com.facebook.react.bridge.ReactCxxErrorHandler
118+
com.facebook.react.bridge.ReactInstanceManagerInspectorTarget
119+
com.facebook.react.modules.debug.DidJSUpdateUiDuringFrameDetector
120+
com.facebook.react.devsupport.BridgeDevSupportManager
121+
com.facebook.react.uimanager.NativeKind
122+
com.facebook.react.uimanager.debug.NotThreadSafeViewHierarchyUpdateDebugListener
123+
com.facebook.react.uimanager.layoutanimation.LayoutAnimationController
124+
com.facebook.react.uimanager.layoutanimation.LayoutAnimationListener
125+
```
126+
127+
</details>
128+
129+
## Node.js 22 Minimum
130+
131+
React Native 0.84 requires **Node.js v22.11 or later**. This bump improves the availability of modern JavaScript features across the ecosystem of React Native tooling.
132+
133+
Make sure to update your Node.js version before upgrading. We recommend using a Node version manager like [nvm](https://github.com/nvm-sh/nvm) or [fnm](https://github.com/Schniz/fnm) to manage Node versions.
134+
135+
## Other Changes
136+
137+
### React 19.2.3
138+
139+
This release syncs React 19.2.3 into React Native, including the latest fixes and improvements from the React team.
140+
141+
### ESLint v9 Flat Config
142+
143+
React Native's ESLint config now supports [ESLint v9 Flat Config](https://eslint.org/docs/latest/use/configure/configuration-files), making it easier to adopt the latest ESLint tooling in your project.
144+
145+
### Platform Support
146+
147+
- **Image formats**: React Native 0.84 includes support for additional image formats (HEIC and HEIF), making it easier to work with modern camera outputs and image libraries.
148+
- **PlatformColor**: Enhanced testing and support for `PlatformColor` in animated interpolations and output ranges.
149+
- **Keyboard events on Android**: Added `onKeyDown`/`onKeyUp` support on Android, enabling keyboard event handling for hardware keyboards and TV remotes.
150+
151+
### Accessibility
152+
153+
Text components with `onPress` or `onLongPress` handlers now automatically receive `accessibilityRole="link"` for improved accessibility support, ensuring screen readers properly announce interactive text elements.
154+
155+
On Android, significant work has been done to fix accessibility state issues with recycled views — ensuring that `isClickable` and `OnClickListener` states are properly reset when views are recycled, preventing screen readers from announcing incorrect states.
156+
157+
### URL API Improvements
158+
159+
Added missing standard properties to `URL` (`hash`, `host`, `pathname`, etc.) and methods to `URLSearchParams` (`get`, `set`, `delete`, etc.), bringing React Native's URL implementation closer to the web standard. Also fixed a `URLSearchParams` duplicate entry issue.
160+
161+
### Other Breaking Changes
162+
163+
#### iOS
164+
165+
- Fixed a rare `EXC_BAD_ACCESS` crash in `ImageResponseObserverCoordinator` by wrapping observers in reference-counted pointers. This changes the object declarations in the `RCTImage` observer API, which may affect dependent libraries such as `react-native-svg`.
166+
167+
#### Android
168+
169+
- Removed `BridgeDevSupportManager`.
170+
171+
#### C++
172+
173+
- `JSBigString` now implements `jsi::Buffer` directly. The `BigStringBuffer` indirection has been removed (deprecated for now). Code directly subclassing or depending on `BigStringBuffer` may need updating.
174+
175+
#### JS
176+
177+
- The legacy Perf and Network tabs have been removed from the in-app Element Inspector, as these features are now available in [React Native DevTools](/docs/react-native-devtools).
178+
179+
Read the full list of breaking changes in the [CHANGELOG for 0.84](https://github.com/facebook/react-native/blob/main/CHANGELOG.md#v0840).
180+
181+
## Deprecations
182+
183+
This release ships two deprecations:
184+
185+
- **Networking:** The `XHRInterceptor` and `WebSocketInterceptor` APIs are deprecated. Developer tools should use the Chrome DevTools Protocol (CDP) `Network` domain instead.
186+
- **TurboModules**: `TurboModuleProviderFunctionType` is deprecated.
187+
188+
## Acknowledgements
189+
190+
React Native 0.84 contains over 650 commits from 95 contributors. Thank you for all your hard work!
191+
192+
We want to send a special thank you to those who shipped significant contributions in this release:
193+
194+
- [Riccardo Cipolleschi](https://github.com/cipolleschi) for precompiled iOS binaries by default and removing the Legacy Architecture on iOS.
195+
- [Rob Hogan](https://github.com/robhogan) for the Node.js 22 version bump.
196+
- [Fabrizio Cucci](https://github.com/fabriziocucci) for accessibility improvements on Android.
197+
- [@pipopotamasu](https://github.com/pipopotamasu) for ESLint v9 Flat Config support.
198+
199+
## Upgrade to 0.84
200+
201+
Please use the [React Native Upgrade Helper](https://react-native-community.github.io/upgrade-helper/) to view code changes between React Native versions for existing projects, in addition to the Upgrading docs.
202+
203+
To create a new project:
204+
205+
```sh
206+
npx @react-native-community/cli@latest init MyProject --version latest
207+
```
208+
209+
If you use Expo, React Native 0.84 will be available as part of the `expo@canary` releases.
210+
The next SDK, SDK 56, will be shipped with the next stable release of React Native: 0.85.
211+
212+
:::info
213+
214+
0.84 is now the latest stable version of React Native and 0.81.x moves to unsupported. For more information see [React Native's support policy](https://github.com/reactwg/react-native-releases/blob/main/docs/support.md).
215+
216+
:::

website/blog/authors.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -366,3 +366,10 @@ vzaidman:
366366
github: vzaidman
367367
threads: vzaidman
368368
image_url: https://github.com/vzaidman.png
369+
370+
alanleedev:
371+
name: Alan Lee
372+
title: Software Engineer @ Meta
373+
socials:
374+
github: alanleedev
375+
image_url: https://github.com/alanleedev.png

0 commit comments

Comments
 (0)