Skip to content

Commit 1745a99

Browse files
committed
fixed lints
1 parent ee9cfe7 commit 1745a99

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

docs/virtualview.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ DevTools does not currently support debugging JavaScript on the main thread. Thi
4747
Debugging all other parts of your JavaScript code should work as expected. We are working on closing this gap before releasing `VirtualView` to stable channels of React Native.
4848
:::
4949

50-
5150
### Prerendering
5251

5352
`VirtualView` enables you to benefit from main thread rendering while mitigating the disadvantages of dropped frames by rendering earlier before it is needed. This is called “prerendering”.

website/blog/2025-10-08-react-native-0.82.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ This release is a crucial milestone for React Native: after multiple years of ro
1818

1919
- [Sunsetting the Legacy Architecture](/blog/2025/10/08/react-native-0.82#sunsetting-the-legacy-architecture)
2020
- [Experimental Hermes V1](/blog/2025/10/08/react-native-0.82#experimental-hermes-v1)
21-
- [React 19.1.1](/blog/2025/10/08/react-native-0.82#react-19.1.1)
21+
- [React 19.1.1](/blog/2025/10/08/react-native-0.82#react-1911)
2222
- [DOM Node APIs](/blog/2025/10/08/react-native-0.82#dom-node-apis)
2323

2424
<!--truncate-->
@@ -29,7 +29,7 @@ This release is a crucial milestone for React Native: after multiple years of ro
2929

3030
Starting with this version, [the New Architecture](https://reactnative.dev/blog/2024/10/23/the-new-architecture-is-here) will be the **only** architecture for React Native, there will no longer be an option to opt-out of the New Architecture.
3131

32-
The New Architecture has been tested and refined over a long period of time, and [has been the default architecture since version 0.76](/blog/2024/10/23/the-new-architecture-is-here). We're now confident in making it the only architecture.
32+
The New Architecture has been tested and refined over a long period of time, and [has been the default architecture since version 0.76](https://reactnative.dev/blog/2024/10/23/the-new-architecture-is-here). We're now confident in making it the only architecture.
3333

3434
In 0.82, if you try to set `newArchEnabled=false` on Android, or if you try to install Cocoapods with `RCT_NEW_ARCH_ENABLED=0` on iOS, these will be ignored and your app will still run with the New Architecture enabled.
3535

@@ -154,6 +154,8 @@ React 19.1.1 also improves the reliability of [`useDeferredValue`](https://react
154154

155155
Starting from React Native 0.82, native components will provide DOM-like nodes via refs.
156156

157+
<!--alex ignore just retext-equality-->
158+
157159
Before, native components provided React Native-specific objects with just a handful of methods like `measure` and `setNativeProps`. After this release, they will provide [nodes implementing a subset of the DOM API](https://reactnative.dev/docs/element-nodes) that allow traversing the UI tree, measuring layout, etc. as they do on Web, e.g.:
158160

159161
```jsx
@@ -292,11 +294,11 @@ React Native 0.82 contains over 868 commits from 93 contributors. Thanks for all
292294

293295
We want to send a special thank you to those community members that shipped significant contributions in this release:
294296

295-
- [Dawid Małecki](https://github.com/coado) and [Jakub Piasecki](https://github.com/j-piasecki) for their help in rolling out Hermes V1.
296-
- [Riccardo Cipolleschi](<[https://github.com/cipolleschi](https://github.com/cipolleschi)>) for his support with writing the React 19.1.1 and Hermes V1 paragraph.
297-
- [Rubén Norte](https://github.com/rubennorte) for his support with writing the DOM Api and Performance API paragraphs.
298-
- [Tomasz Zawadzki](https://github.com/tomekzaw/) for his support with the `debugOptimized` benchmarking.
299-
- [Krystof Woldrich](https://github.com/krystofwoldrich) for his support with fixing the swallowing of uncaught promise rejections.
297+
- [Dawid Małecki](https://github.com/coado) and [Jakub Piasecki](https://github.com/j-piasecki) for the help in rolling out Hermes V1.
298+
- [Krystof Woldrich](https://github.com/krystofwoldrich) for the support with fixing the swallowing of uncaught promise rejections.
299+
- [Riccardo Cipolleschi](<[https://github.com/cipolleschi](https://github.com/cipolleschi)>) for the support with writing the React 19.1.1 and Hermes V1 paragraph above.
300+
- [Rubén Norte](https://github.com/rubennorte) for the support with writing the DOM Api and Performance API paragraphs.
301+
- [Tomasz Zawadzki](https://github.com/tomekzaw/) for the support with the `debugOptimized` benchmarking.
300302

301303
## Upgrade to 0.82
302304

0 commit comments

Comments
 (0)