Skip to content

Commit 6e01944

Browse files
Merge branch 'main' into fix/escape-hatches-sandbox
2 parents 291b676 + ae584af commit 6e01944

Some content is hidden

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

50 files changed

+1180
-592
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/components/MDX/Sandpack/template.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ root.render(
3535
eject: 'react-scripts eject',
3636
},
3737
dependencies: {
38-
react: '^19.1.0',
39-
'react-dom': '^19.1.0',
38+
react: '^19.2.0',
39+
'react-dom': '^19.2.0',
4040
'react-scripts': '^5.0.0',
4141
},
4242
},

src/components/MDX/SandpackWithHTMLOutput.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ export default function formatHTML(markup) {
5656
const packageJSON = `
5757
{
5858
"dependencies": {
59-
"react": "18.3.0-canary-6db7f4209-20231021",
60-
"react-dom": "18.3.0-canary-6db7f4209-20231021",
59+
"react": "^19.2.0",
60+
"react-dom": "^19.2.0",
6161
"react-scripts": "^5.0.0",
6262
"html-format": "^1.1.2"
6363
},

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.

0 commit comments

Comments
 (0)