Skip to content

Commit a07343d

Browse files
committed
tweaks
1 parent c1039b3 commit a07343d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/content/blog/2024/02/15/react-labs-what-we-have-been-working-on-february-2024.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,11 @@ React Server Components, Asset Loading, Document Metadata, and Actions have all
8080

8181
- **Actions**: As shared above, we've added Actions to manage sending data from the client to the server. You can add `action` to elements like [`<form/>`](/reference/react-dom/components/form), access the status with [`useFormStatus`](/reference/react-dom/hooks/useFormStatus), handle the result with [`useFormState`](/reference/react-dom/hooks/useFormState), and optimistically update the UI with [`useOptimistic`](/reference/react/useOptimistic).
8282

83-
We developed these features individually and released them incrementally for testing in the `canary` channel. This allowed us to build each feature in public, test them individually in production, and iterate on feedback until we reach a final design. Since all of these features work together, it’s difficult to release them individually. Releasing Actions without the complementary hooks for accessing form states would limit the practical usability of Actions. Introducing React Server Components without integrating Server Actions would complicate modifying data on the server. Before we can release a set of features to stable, we need to ensure they work cohesively and developers have everything they need to use them in production.
83+
Since all of these features work together, it’s difficult to release them in the Stable channel individually. Releasing Actions without the complementary hooks for accessing form states would limit the practical usability of Actions. Introducing React Server Components without integrating Server Actions would complicate modifying data on the server.
8484

85-
The current set of features in React Canary have everything needed to build in production are ready to release in the next semver stable version of React.
85+
Before we can release a set of features to the Stable channel, we need to ensure they work cohesively and developers have everything they need to use them in production. React Canaries allow us to develop these features individually, and release the stable APIs incrementally until the entire feature set is complete.
86+
87+
The current set of features in React Canary are complete and ready to release.
8688

8789
## The Next Major Version of React {/*the-next-major-version-of-react*/}
8890

0 commit comments

Comments
 (0)