Skip to content

Commit 42037e2

Browse files
authored
Few cleanups for 19.2 (#8046)
1 parent 9850724 commit 42037e2

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

src/content/learn/escape-hatches.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -312,12 +312,6 @@ Read **[Lifecycle of Reactive Events](/learn/lifecycle-of-reactive-effects)** to
312312

313313
## Separating events from Effects {/*separating-events-from-effects*/}
314314

315-
<Wip>
316-
317-
This section describes an **experimental API that has not yet been released** in a stable version of React.
318-
319-
</Wip>
320-
321315
Event handlers only re-run when you perform the same interaction again. Unlike event handlers, Effects re-synchronize if any of the values they read, like props or state, are different than during last render. Sometimes, you want a mix of both behaviors: an Effect that re-runs in response to some values but not others.
322316

323317
All code inside Effects is *reactive.* It will run again if some reactive value it reads has changed due to a re-render. For example, this Effect will re-connect to the chat if either `roomId` or `theme` have changed:

src/content/versions.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ The React docs at [react.dev](https://react.dev) provide documentation for the l
1111
We aim to keep the docs updated within major versions, and do not publish versions for each minor or patch version. When a new major is released, we archive the docs for the previous version as `x.react.dev`. See our [versioning policy](/community/versioning-policy) for more info.
1212

1313
You can find an archive of previous major versions below.
14-
## Latest version: 19.2 {/*latest-version*/}
14+
15+
## Latest version: 19.3 {/*latest-version*/}
1516

1617
- [react.dev](https://react.dev) {/*docs-19*/}
1718

@@ -40,6 +41,8 @@ For versions older than React 15, see [15.react.dev](https://15.react.dev).
4041
- [React v19](/blog/2024/12/05/react-19)
4142
- [React 19 Upgrade Guide](/blog/2024/04/25/react-19-upgrade-guide)
4243
- [React Compiler Beta Release](/blog/2024/10/21/react-compiler-beta-release)
44+
- [React Compiler RC](/blog/2025/04/21/react-compiler-rc)
45+
- [React 19.2](/blog/2025/10/01/react-19-2)
4346

4447
**Talks**
4548
- [React 19 Keynote](https://www.youtube.com/watch?v=lyEKhv8-3n0)
@@ -51,6 +54,7 @@ For versions older than React 15, see [15.react.dev](https://15.react.dev).
5154
- [React 19 Deep Dive: Coordinating HTML](https://www.youtube.com/watch?v=IBBN-s77YSI)
5255

5356
**Releases**
57+
- [v19.2.0 (October, 2025)](https://github.com/facebook/react/blob/main/CHANGELOG.md#1920-october-1st-2025)
5458
- [v19.1.0 (March, 2025)](https://github.com/facebook/react/blob/main/CHANGELOG.md#1910-march-28-2025)
5559
- [v19.0.0 (December, 2024)](https://github.com/facebook/react/blob/main/CHANGELOG.md#1900-december-5-2024)
5660

0 commit comments

Comments
 (0)