Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/content/blog/2024/10/21/react-compiler-beta-release.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ October 21, 2024 by [Lauren Tan](https://twitter.com/potetotes).

<Note>

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

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

</Note>

Expand Down
128 changes: 0 additions & 128 deletions src/content/blog/2025/04/21/react-compiler-rc.md

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -14310,7 +14310,7 @@ Our hope is that automatically inserting dependencies is not only easier to writ
## Compiler IDE Extension {/*compiler-ide-extension*/}
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.
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.
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).
Expand Down
6 changes: 3 additions & 3 deletions src/content/blog/2025/10/01/react-19-2.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ function ChatRoom({ roomId, theme }) {

Similar to DOM events, Effect Events always “see” the latest props and state.

**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.
**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.

<Note>

Expand Down Expand Up @@ -289,7 +289,7 @@ This is because Node Streams are much faster than Web Streams in Node, and Web S

### `eslint-plugin-react-hooks` v6 {/*eslint-plugin-react-hooks*/}

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.
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.

To continue using the legacy config, you can change to `recommended-legacy`:

Expand All @@ -298,7 +298,7 @@ To continue using the legacy config, you can change to `recommended-legacy`:
+ extends: ['plugin:react-hooks/recommended-legacy']
```

For a full list of compiler enabled rules, [check out the linter docs](/reference/eslint-plugin-react-hooks#additional-rules).
For a full list of compiler enabled rules, [check out the linter docs](/reference/eslint-plugin-react-hooks#recommended).

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).

Expand Down
Loading