Skip to content

Commit ad947f7

Browse files
committed
React Compiler v1
Updates our blog posts and docs for React Compiler 1.0
1 parent ef80db8 commit ad947f7

31 files changed

+207
-315
lines changed

src/content/blog/2024/10/21/react-compiler-beta-release.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ October 21, 2024 by [Lauren Tan](https://twitter.com/potetotes).
1212

1313
<Note>
1414

15-
### React Compiler is now in RC! {/*react-compiler-is-now-in-rc*/}
15+
### React Compiler is now stable! {/*react-compiler-is-now-in-rc*/}
1616

17-
Please see the [RC blog post](/blog/2025/04/21/react-compiler-rc) for details.
17+
Please see the [stable release blog post](/blog/2025/10/08/react-compiler-1) for details.
1818

1919
</Note>
2020

src/content/blog/2025/04/21/react-compiler-rc.md

Lines changed: 0 additions & 128 deletions
This file was deleted.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14310,7 +14310,7 @@ Our hope is that automatically inserting dependencies is not only easier to writ
1431014310
1431114311
## Compiler IDE Extension {/*compiler-ide-extension*/}
1431214312
14313-
Earlier this week [we shared](/blog/2025/04/21/react-compiler-rc) the React Compiler release candidate, and we're working towards shipping the first SemVer stable version of the compiler in the coming months.
14313+
Later in 2025 [we shared](/blog/2025/10/08/react-compiler-1) the first stable release of React Compiler, and we're continuing to invest in shipping more improvements.
1431414314
1431514315
We've also begun exploring ways to use the React Compiler to provide information that can improve understanding and debugging your code. One idea we've started exploring is a new experimental LSP-based React IDE extension powered by React Compiler, similar to the extension used in [Lauren Tan's React Conf talk](https://conf2024.react.dev/talks/5).
1431614316

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ function ChatRoom({ roomId, theme }) {
9898
9999
Similar to DOM events, Effect Events always “see” the latest props and state.
100100
101-
**Effect Events should _not_ be declared in the dependency array**. You'll need to upgrade to `eslint-plugin-react-hooks@6.1.1` so that the linter doesn't try to insert them as dependencies. Note that Effect Events can only be declared in the same component or Hook as "their" Effect. These restrictions are verified by the linter.
101+
**Effect Events should _not_ be declared in the dependency array**. You'll need to upgrade to `eslint-plugin-react-hooks@latest` so that the linter doesn't try to insert them as dependencies. Note that Effect Events can only be declared in the same component or Hook as "their" Effect. These restrictions are verified by the linter.
102102
103103
<Note>
104104
@@ -289,7 +289,7 @@ This is because Node Streams are much faster than Web Streams in Node, and Web S
289289
290290
### `eslint-plugin-react-hooks` v6 {/*eslint-plugin-react-hooks*/}
291291
292-
We also published `eslint-plugin-react-hooks@6.1.1` with flat config by default in the `recommended` preset, and opt-in for new React Compiler powered rules.
292+
We also published `eslint-plugin-react-hooks@latest` with flat config by default in the `recommended` preset, and opt-in for new React Compiler powered rules.
293293
294294
To continue using the legacy config, you can change to `recommended-legacy`:
295295
@@ -298,7 +298,7 @@ To continue using the legacy config, you can change to `recommended-legacy`:
298298
+ extends: ['plugin:react-hooks/recommended-legacy']
299299
```
300300
301-
For a full list of compiler enabled rules, [check out the linter docs](/reference/eslint-plugin-react-hooks#additional-rules).
301+
For a full list of compiler enabled rules, [check out the linter docs](/reference/eslint-plugin-react-hooks#recommended).
302302
303303
Check out the `eslint-plugin-react-hooks` [changelog for a full list of changes](https://github.com/facebook/react/blob/main/packages/eslint-plugin-react-hooks/CHANGELOG.md#610).
304304

0 commit comments

Comments
 (0)