mirror of
https://github.com/zebrajr/react.git
synced 2026-01-15 12:15:22 +00:00
The following APIs have been added to the `react` stable entry point: * `SuspenseList` * `startTransition` * `unstable_createMutableSource` * `unstable_useMutableSource` * `useDeferredValue` * `useTransition` The following APIs have been added or removed from the `react-dom` stable entry point: * `createRoot` * `unstable_createPortal` (removed) The following APIs have been added to the `react-is` stable entry point: * `SuspenseList` * `isSuspenseList` The following feature flags have been changed from experimental to true: * `enableLazyElements` * `enableSelectiveHydration` * `enableSuspenseServerRenderer`
Experimental React Concurrent Mode Profiler
https://react-devtools-scheduling-profiler.vercel.app/
Setting up continuous deployment with CircleCI and Vercel
These instructions are intended for internal use, but may be useful if you are setting up a custom production deployment of the scheduling profiler.
- Create a Vercel token at https://vercel.com/account/tokens.
- Configure CircleCI:
- In CircleCI, navigate to the repository's Project Settings.
- In the Advanced tab, ensure that "Pass secrets to builds from forked pull requests" is set to false.
- In the Environment Variables tab, add the Vercel token as a new
SCHEDULING_PROFILER_DEPLOY_VERCEL_TOKENenvironment variable.
The Vercel project will be created when the deploy job runs.