Skip to content

Commit 359e998

Browse files
committed
update latest blog post and 0.85 docs
1 parent 8321afc commit 359e998

47 files changed

Lines changed: 71 additions & 64 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

website/blog/2026-04-07-react-native-0.85.md renamed to website/blog/2026-04-07-react-native-0.85.mdx

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ This release includes the New Animation Backend, moves the Jest preset to a dedi
3434
- [`StyleSheet.absoluteFillObject` Removed](/blog/2026/04/07/react-native-0.85#stylesheetabsolutefillobject-removed)
3535
- [Other Breaking Changes](/blog/2026/04/07/react-native-0.85#other-breaking-changes)
3636

37-
<!--truncate-->
37+
{/* truncate */}
3838

3939
## Highlights
4040

@@ -101,7 +101,10 @@ React Native DevTools received several improvements in this release:
101101
- **Multiple CDP connections**: React Native now supports multiple simultaneous Chrome DevTools Protocol connections, enabling clients such as React Native DevTools, VS Code, and AI agents to connect at the same time. This unlocks richer, composable tooling workflows without unexpectedly ending sessions.
102102
- **Native tabs on macOS**: We've updated the desktop app to compile for macOS 26, and have also enabled system-level tab handling for power users. Access via **Window > Merge All Windows**, when multiple DevTools windows are open.
103103

104-
<img src="/blog/assets/0.85-devtools-macos-tabs.png" alt="DevTools native tabs on macOS" />
104+
<img
105+
src="/blog/assets/0.85-devtools-macos-tabs.png"
106+
alt="DevTools native tabs on macOS"
107+
/>
105108

106109
- **Request payload previews**: After being disabled due to a regression, request body previews in the Network Panel are now restored on Android.
107110

@@ -121,7 +124,7 @@ config.server.tls = {
121124
};
122125
```
123126

124-
<!-- alex ignore simple -->
127+
{/* alex ignore simple */}
125128

126129
For local development, [mkcert](https://github.com/FiloSottile/mkcert) is a simple way to generate a locally-trusted certificate without browser warnings.
127130

@@ -193,7 +196,7 @@ The deprecated `StyleSheet.absoluteFillObject` API has been removed. Use `StyleS
193196

194197
React Native 0.85 contains over 604 commits from 58 contributors. Thanks for all your hard work!
195198

196-
<!--alex ignore special white-->
199+
{/* alex ignore special white */}
197200

198201
We want to send a special thank you to those community members that shipped significant contributions in this release.
199202

@@ -204,7 +207,7 @@ We want to send a special thank you to those community members that shipped sign
204207

205208
Moreover, we also want to thank the additional authors that worked on documenting features in this release post:
206209

207-
<!-- TODO: Add blog post co-authors -->
210+
{/* TODO: Add blog post co-authors */}
208211

209212
## Upgrade to 0.85
210213

website/versioned_docs/version-0.85/_canary-channel-api-warning.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
:::tip Canary 🧪
1+
:::tip[Canary 🧪]
22

33
**This API is currently only available in React Native’s Canary and Experimental channels.**
44

website/versioned_docs/version-0.85/_experimental-channel-api-warning.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
:::tip Experimental Feature 🧪
1+
:::tip[Experimental Feature 🧪]
22

33
**This API is currently only available in React Native’s Experimental channels.**
44

website/versioned_docs/version-0.85/accessibilityinfo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ Query whether reduce motion and prefer cross-fade transitions settings are curre
256256

257257
### 🗑️ `setAccessibilityFocus()`
258258

259-
:::warning Deprecated
259+
:::warning[Deprecated]
260260
Prefer using `sendAccessibilityEvent` with eventType `focus` instead.
261261
:::
262262

website/versioned_docs/version-0.85/alertios.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ id: alertios
33
title: '❌ AlertIOS'
44
---
55

6-
:::danger Removed from React Native
6+
:::danger[Removed from React Native]
77
Use [`Alert`](alert) instead.
88
:::

website/versioned_docs/version-0.85/asyncstorage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ id: asyncstorage
33
title: '❌ AsyncStorage'
44
---
55

6-
:::danger Removed from React Native
6+
:::danger[Removed from React Native]
77
Use one of the [community packages](https://reactnative.directory/?search=storage) instead.
88
:::

website/versioned_docs/version-0.85/backhandler.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The event subscriptions are called in reverse order (i.e. the last registered su
1010
- **If one subscription returns true,** then subscriptions registered earlier will not be called.
1111
- **If no subscription returns true or none are registered,** it programmatically invokes the default back button functionality to exit the app.
1212

13-
:::warning Warning for modal users
13+
:::warning[Warning for modal users]
1414
If your app shows an opened `Modal`, `BackHandler` will not publish any events ([see `Modal` docs](modal#onrequestclose)).
1515
:::
1616

website/versioned_docs/version-0.85/building-for-tv.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ hide_table_of_contents: true
66

77
TV devices support has been implemented with the intention of making existing React Native applications work on Apple TV and Android TV, with few or no changes needed in the JavaScript code for the applications.
88

9-
:::warning Deprecated
9+
:::warning[Deprecated]
1010
TV support has moved to the [React Native for TV](https://github.com/react-native-tvos/react-native-tvos#readme) repository. Please see the **README** there for information on projects for Apple TV or Android TV.
1111
:::

website/versioned_docs/version-0.85/checkbox.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ id: checkbox
33
title: '❌ CheckBox'
44
---
55

6-
:::danger Removed from React Native
6+
:::danger[Removed from React Native]
77
Use one of the [community packages](https://reactnative.directory/?search=checkbox) instead.
88
:::

website/versioned_docs/version-0.85/clipboard.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ id: clipboard
33
title: '❌ Clipboard'
44
---
55

6-
:::danger Removed from React Native
6+
:::danger[Removed from React Native]
77
Use one of the [community packages](https://reactnative.directory/?search=clipboard) instead.
88
:::

0 commit comments

Comments
 (0)