From bba65f667f4d9f2da9c0158c8888f840c3f278a7 Mon Sep 17 00:00:00 2001 From: Rick Hanlon Date: Thu, 2 Oct 2025 10:03:46 -0400 Subject: [PATCH] Few cleanups for 19.2 --- src/content/learn/escape-hatches.md | 6 ------ src/content/versions.md | 6 +++++- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/src/content/learn/escape-hatches.md b/src/content/learn/escape-hatches.md index baa0b25f5d2..ab5f666ad8c 100644 --- a/src/content/learn/escape-hatches.md +++ b/src/content/learn/escape-hatches.md @@ -312,12 +312,6 @@ Read **[Lifecycle of Reactive Events](/learn/lifecycle-of-reactive-effects)** to ## Separating events from Effects {/*separating-events-from-effects*/} - - -This section describes an **experimental API that has not yet been released** in a stable version of React. - - - 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. 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: diff --git a/src/content/versions.md b/src/content/versions.md index 046a558d924..57e0a0a5c2b 100644 --- a/src/content/versions.md +++ b/src/content/versions.md @@ -11,7 +11,8 @@ The React docs at [react.dev](https://react.dev) provide documentation for the l 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. You can find an archive of previous major versions below. -## Latest version: 19.2 {/*latest-version*/} + +## Latest version: 19.3 {/*latest-version*/} - [react.dev](https://react.dev) {/*docs-19*/} @@ -40,6 +41,8 @@ For versions older than React 15, see [15.react.dev](https://15.react.dev). - [React v19](/blog/2024/12/05/react-19) - [React 19 Upgrade Guide](/blog/2024/04/25/react-19-upgrade-guide) - [React Compiler Beta Release](/blog/2024/10/21/react-compiler-beta-release) +- [React Compiler RC](/blog/2025/04/21/react-compiler-rc) +- [React 19.2](/blog/2025/10/01/react-19-2) **Talks** - [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). - [React 19 Deep Dive: Coordinating HTML](https://www.youtube.com/watch?v=IBBN-s77YSI) **Releases** +- [v19.2.0 (October, 2025)](https://github.com/facebook/react/blob/main/CHANGELOG.md#1920-october-1st-2025) - [v19.1.0 (March, 2025)](https://github.com/facebook/react/blob/main/CHANGELOG.md#1910-march-28-2025) - [v19.0.0 (December, 2024)](https://github.com/facebook/react/blob/main/CHANGELOG.md#1900-december-5-2024)