React Native Blog Oct 8, 2025

React Native Version 0.82 Release

This article covers React Native v0.82.0 Release notes

Article Summary

React Native just dropped its most significant release ever. Version 0.82 completely removes the Legacy Architecture, marking what the team calls 'the start of a new era' for mobile development.

The React Native team at Meta has released version 0.82, a milestone that makes the New Architecture mandatory for all apps. This release also introduces experimental Hermes V1 with performance improvements, upgrades to React 19.1.1, and adds DOM-like APIs to native components.

Key Takeaways

Critical Insight

React Native 0.82 forces all apps onto the New Architecture while delivering measurable performance gains through Hermes V1 and better debugging tools.

The release notes hint at upcoming bundle size reductions and reveal what's still missing from Hermes V1 that developers are waiting for.

About This Article

Problem

React Native's Legacy Architecture made the codebase and install size unnecessarily large. The team had to figure out how to remove it safely across 868 commits from 93 contributors without breaking backward compatibility.

Solution

Meta's React Native team made the New Architecture mandatory starting in version 0.82. They did this by ignoring Legacy Architecture flags like newArchEnabled=false and RCT_NEW_ARCH_ENABLED=0, but kept the interop layers and APIs intact so third-party libraries wouldn't break.

Impact

Uncaught promise rejections now show up in console.error instead of disappearing silently. This lets developers find bugs that were hidden before. You might see a spike in JavaScript errors reported to your backend as these dormant issues get caught.