Skip to content

Commit 8ee516d

Browse files
Merge branch 'main' into fix/eslint-plugin-doc-clarification
2 parents 79c15bc + 37f862a commit 8ee516d

Some content is hidden

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

46 files changed

+1055
-222
lines changed
41.5 KB
Loading
41.8 KB
Loading
42.2 KB
Loading
42.5 KB
Loading
945 KB
Loading
929 KB
Loading

src/content/blog/2025/04/23/react-labs-view-transitions-activity-and-more.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,9 @@ In React Labs posts, we write about projects in active research and development.
1818

1919
<Note>
2020

21-
React Conf 2025 is scheduled for October 7–8 in Henderson, Nevada!
21+
React Conf 2025 is scheduled for October 7–8 in Henderson, Nevada!
2222

23-
We're looking for speakers to help us create talks about the features covered in this post. If you're interested in speaking at ReactConf, [please apply here](https://forms.reform.app/react-conf/call-for-speakers/) (no talk proposal required).
24-
25-
For more info on tickets, free streaming, sponsoring, and more, see [the React Conf website](https://conf.react.dev).
23+
Watch the livestream on [the React Conf website](https://conf.react.dev).
2624

2725
</Note>
2826

@@ -11544,7 +11542,7 @@ Try searching for a video, selecting it, and clicking "back":
1154411542
<Sandpack>
1154511543

1154611544
```js src/App.js
11547-
import { unstable_ViewTransition as ViewTransition, unstable_Activity as Activity } from "react"; import Details from "./Details"; import Home from "./Home"; import { useRouter } from "./router";
11545+
import { unstable_ViewTransition as ViewTransition } from "react"; import Details from "./Details"; import Home from "./Home"; import { useRouter } from "./router"; import { unstable_Activity, Activity as ActivityStable} from 'react'; let Activity = ActivityStable ?? unstable_Activity;
1154811546

1154911547
export default function App() {
1155011548
const { url } = useRouter();
@@ -12881,7 +12879,7 @@ With this update, if the content on the next page has time to pre-render, it wil
1288112879
<Sandpack>
1288212880
1288312881
```js src/App.js
12884-
import { unstable_ViewTransition as ViewTransition, unstable_Activity as Activity, use } from "react"; import Details from "./Details"; import Home from "./Home"; import { useRouter } from "./router"; import {fetchVideos} from './data'
12882+
import { unstable_ViewTransition as ViewTransition, use } from "react"; import Details from "./Details"; import Home from "./Home"; import { useRouter } from "./router"; import {fetchVideos} from './data'; import { unstable_Activity, Activity as ActivityStable} from 'react'; let Activity = ActivityStable ?? unstable_Activity;
1288512883

1288612884
export default function App() {
1288712885
const { url } = useRouter();

src/content/blog/2025/10/01/react-19-2.md

Lines changed: 339 additions & 0 deletions
Large diffs are not rendered by default.

src/content/blog/index.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@ You can also follow the [@react.dev](https://bsky.app/profile/react.dev) account
1212

1313
<div className="sm:-mx-5 flex flex-col gap-5 mt-12">
1414

15+
<BlogCard title="React 19.2" date="October 1, 2025" url="/blog/2025/10/01/react-19-2">
16+
17+
React 19.2 adds new features like Activity, React Performance Tracks, useEffectEvent, and more. In this post ...
18+
19+
</BlogCard>
20+
1521
<BlogCard title="React Labs: View Transitions, Activity, and more" date="April 23, 2025" url="/blog/2025/04/23/react-labs-view-transitions-activity-and-more">
1622

1723
In React Labs posts, we write about projects in active research and development. In this post, we're sharing two new experimental features that are ready to try today, and sharing other areas we're working on now ...

src/content/learn/removing-effect-dependencies.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -609,14 +609,6 @@ function ChatRoom({ roomId }) {
609609
610610
### Do you want to read a value without "reacting" to its changes? {/*do-you-want-to-read-a-value-without-reacting-to-its-changes*/}
611611
612-
<Canary>
613-
614-
**The `useEffectEvent` API is currently only available in React’s Canary and Experimental channels.**
615-
616-
[Learn more about React’s release channels here.](/community/versioning-policy#all-release-channels)
617-
618-
</Canary>
619-
620612
Suppose that you want to play a sound when the user receives a new message unless `isMuted` is `true`:
621613
622614
```js {3,10-12}

0 commit comments

Comments
 (0)