From d4d65e31fe572a013e0aa166f824bba9ccc2cf48 Mon Sep 17 00:00:00 2001 From: Simek Date: Tue, 2 Sep 2025 19:10:28 +0200 Subject: [PATCH 1/3] Add releases page --- docs/releases.md | 39 +++++++++++++++++++++++++++++++++++++++ website/sidebars.ts | 1 + 2 files changed, 40 insertions(+) create mode 100644 docs/releases.md diff --git a/docs/releases.md b/docs/releases.md new file mode 100644 index 00000000000..a798b994ed5 --- /dev/null +++ b/docs/releases.md @@ -0,0 +1,39 @@ +--- +id: releases +title: Releases +--- + +New React Native releases are shipped **every two months**, usually resulting in six (6) new minors per year. + +Below is the schedule and current status of recent and upcoming React Native releases: + +| Version | Branch-cut Date | Release Date | Support | Blogpost | +| -------- | --------------- | ------------ | ------------ | --------------------------------------------- | +| `0.83.x` | 2025-11-03 | 2025-12-08 | Future | | +| `0.82.x` | 2025-09-01 | 2025-10-06 | Future | | +| `0.81.x` | 2025-07-10 | 2025-08-12 | Active | [Details](/blog/2025/08/12/react-native-0.81) | +| `0.80.x` | 2025-05-07 | 2025-06-12 | Active | [Details](/blog/2025/06/12/react-native-0.80) | +| `0.79.x` | 2025-03-04 | 2025-04-08 | End of Cycle | [Details](/blog/2025/04/08/react-native-0.79) | +| `0.78.x` | 2025-01-15 | 2025-02-19 | Unsupported | [Details](/blog/2025/02/19/react-native-0.78) | +| `0.77.x` | 2024-11-26 | 2025-01-21 | Unsupported | [Details](/blog/2025/01/21/version-0.77) | + +The different support level presented in the table are defined as such: + +- Future + - After a new version branch gets cut, creating new Release Candidates to allow the community to test the upcoming version is very important. New RC releases are done at a high pace, as soon as viable. +- Active + - Stable releases in active support receive frequent updates. Latest stable has the highest priority, and at the start of its stable cycle (right after .0 is released) multiple patches will be done as soon as possible to stabilize the version and ensure a good upgrade experience to the community. +- End of Cycle + - A version in this support bracket will receive less patches, unless some important regressions need to be addressed. Once a next version becomes the new latest stable, before the version in EoC moves over into Unsupported one last patch released will be produced with the latest receive pick requests. +- Unsupported + - When a version is in the unsupported stage, no new released are to be expected. Only very important regressions might create exceptions to this rule; it is recommended that codebases using an unsupported version upgrade as soon as possible. + +## Commitment to Stability + +In order to support users upgrading React Native versions, we’re committed to maintain the **latest 3 minor series** (e.g. 0.78.x, 0.77.x and 0.76.x when 0.78 is the latest release). + +For those releases we’ll be publishing regular updates and bug fixes. + +You can read more about our support policy on [the react-native-releases working group](https://github.com/reactwg/react-native-releases/blob/main/docs/support.md). + +More information on our versioning, and what we consider a breaking change is available in our [versioning policy](/contributing/versioning-policy) page. diff --git a/website/sidebars.ts b/website/sidebars.ts index c6e61c2fa8d..c70d5d2d1c9 100644 --- a/website/sidebars.ts +++ b/website/sidebars.ts @@ -11,6 +11,7 @@ export default { 'using-a-listview', 'troubleshooting', 'platform-specific-code', + 'releases', 'more-resources', ], 'Environment setup': [ From 0f6224b90cabd934de0d8a262b8e0d24cfccdc0a Mon Sep 17 00:00:00 2001 From: Simek Date: Tue, 2 Sep 2025 19:20:05 +0200 Subject: [PATCH 2/3] Move table to the reusable components --- docs/releases.md | 12 +++--------- website/src/components/releases/ReleasesTable.tsx | 5 +++++ website/src/components/releases/_releases-table.md | 9 +++++++++ 3 files changed, 17 insertions(+), 9 deletions(-) create mode 100644 website/src/components/releases/ReleasesTable.tsx create mode 100644 website/src/components/releases/_releases-table.md diff --git a/docs/releases.md b/docs/releases.md index a798b994ed5..c7d465d7f7d 100644 --- a/docs/releases.md +++ b/docs/releases.md @@ -3,19 +3,13 @@ id: releases title: Releases --- +import ReleasesTable from '@site/src/components/releases/ReleasesTable'; + New React Native releases are shipped **every two months**, usually resulting in six (6) new minors per year. Below is the schedule and current status of recent and upcoming React Native releases: -| Version | Branch-cut Date | Release Date | Support | Blogpost | -| -------- | --------------- | ------------ | ------------ | --------------------------------------------- | -| `0.83.x` | 2025-11-03 | 2025-12-08 | Future | | -| `0.82.x` | 2025-09-01 | 2025-10-06 | Future | | -| `0.81.x` | 2025-07-10 | 2025-08-12 | Active | [Details](/blog/2025/08/12/react-native-0.81) | -| `0.80.x` | 2025-05-07 | 2025-06-12 | Active | [Details](/blog/2025/06/12/react-native-0.80) | -| `0.79.x` | 2025-03-04 | 2025-04-08 | End of Cycle | [Details](/blog/2025/04/08/react-native-0.79) | -| `0.78.x` | 2025-01-15 | 2025-02-19 | Unsupported | [Details](/blog/2025/02/19/react-native-0.78) | -| `0.77.x` | 2024-11-26 | 2025-01-21 | Unsupported | [Details](/blog/2025/01/21/version-0.77) | + The different support level presented in the table are defined as such: diff --git a/website/src/components/releases/ReleasesTable.tsx b/website/src/components/releases/ReleasesTable.tsx new file mode 100644 index 00000000000..d1022b3d822 --- /dev/null +++ b/website/src/components/releases/ReleasesTable.tsx @@ -0,0 +1,5 @@ +import ReleasesTableMD from './_releases-table.md'; + +export default function ReleasesTable() { + return ; +} diff --git a/website/src/components/releases/_releases-table.md b/website/src/components/releases/_releases-table.md new file mode 100644 index 00000000000..8e698827753 --- /dev/null +++ b/website/src/components/releases/_releases-table.md @@ -0,0 +1,9 @@ +| Version | Branch-cut Date | Release Date | Support | Blogpost | +| -------- | --------------- | ------------ | ------------ | --------------------------------------------- | +| `0.83.x` | 2025-11-03 | 2025-12-08 | Future | | +| `0.82.x` | 2025-09-01 | 2025-10-06 | Future | | +| `0.81.x` | 2025-07-10 | 2025-08-12 | Active | [Details](/blog/2025/08/12/react-native-0.81) | +| `0.80.x` | 2025-05-07 | 2025-06-12 | Active | [Details](/blog/2025/06/12/react-native-0.80) | +| `0.79.x` | 2025-03-04 | 2025-04-08 | End of Cycle | [Details](/blog/2025/04/08/react-native-0.79) | +| `0.78.x` | 2025-01-15 | 2025-02-19 | Unsupported | [Details](/blog/2025/02/19/react-native-0.78) | +| `0.77.x` | 2024-11-26 | 2025-01-21 | Unsupported | [Details](/blog/2025/01/21/version-0.77) | From 0b1ba67d445fe6ede52c4abf440cc44c47f3f726 Mon Sep 17 00:00:00 2001 From: Simek Date: Tue, 2 Sep 2025 19:25:24 +0200 Subject: [PATCH 3/3] Update versioning policy page --- website/contributing/versioning-policy.md | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/website/contributing/versioning-policy.md b/website/contributing/versioning-policy.md index d1898e867b3..0a74805437c 100644 --- a/website/contributing/versioning-policy.md +++ b/website/contributing/versioning-policy.md @@ -26,13 +26,7 @@ Stable releases are shipped regularly, with the latest tagged as `latest` on NPM A series of releases under the same minor number is called a **minor series** (e.g. 0.76.x is the minor series for 0.76.0, 0.76.1, 0.76.2, etc.). -## Commitment to Stability - -In order to support users upgrading React Native versions, we’re committed to maintain the latest 3 minor series (e.g. 0.78.x, 0.77.x and 0.76.x when 0.78 is the latest release). - -For those releases we’ll be publishing regular updates and bug fixes. - -You can read more about our support policy on [the react-native-releases working group](https://github.com/reactwg/react-native-releases/blob/main/docs/support.md). +You can read more about our **commitment to stability** in [the releases page](/docs/next/releases). ### Breaking changes