For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Sign inTry it free
DocsGuidesSDKsIntegrationsAPI docsTutorialsFlagship blog
DocsGuidesSDKsIntegrationsAPI docsTutorialsFlagship blog
  • SDKs
    • SDK concepts
    • SDK features
    • Client-side SDKs
      • .NET SDK reference
      • Android SDK reference
      • C++ SDK reference
      • Electron SDK reference
      • Flutter SDK reference
      • iOS SDK reference
      • JavaScript SDK reference
      • Node.js SDK reference
      • React SDK reference
        • React Web SDK reference
          • React Web SDK 2.x to 3.0 migration guide
          • React Web SDK 3.x to 4.0 migration guide
        • React Native SDK reference
        • Gatsby plugin
      • Roku SDK reference
      • Vue SDK reference
    • Server-side SDKs
    • AI SDKs
    • Edge SDKs
    • OpenFeature providers
    • Observability SDKs
    • Relay Proxy
Sign inTry it free
LogoLogo
On this page
  • Overview
  • Identifying supported React versions and dependencies for the v3 SDK
  • Understanding changes to provider configuration
  • Using this migration guide
SDKsClient-side SDKsReact SDK referenceReact Web SDK reference

React Web SDK 2.x to 3.0 migration guide

Was this page helpful?
Previous

React Web SDK 3.x to 4.0 migration guide

Next
Built with

Overview

This topic explains the changes in the React Web SDK 3.0 release and how to adapt code that uses a 2.28 version of the React Web SDK to use version 3 or later.

Version 3 includes several breaking changes. Additionally, if you use the Relay Proxy, you must update your Relay Proxy to version 7.0 before you update your SDK to version 3. To learn more, read the Relay Proxy 7.0 release notes. To upgrade to the latest Relay Proxy version, visit Relay Proxy releases on GitHub.

Before you migrate to version 3, update to the latest 2.28 version. Some of the changes that are mandatory in 3 were originally added in a 2.28 version and made optional.

If you update to the latest 2.28 version, deprecation warnings appear in areas of your code that need to be changed for 3. You can update them at your own pace while still using 2.28, rather than migrating everything simultaneously. To learn more about updating to the latest 2.28 version, visit the SDK’s GitHub repository.

Identifying supported React versions and dependencies for the v3 SDK

The minimum React version for the LaunchDarkly React Web v3 SDK is 16.3.3. If you want to use hooks, the minimum version is 16.8. LaunchDarkly no longer supports earlier React Web SDK versions, as stated in the End of Life policy.

The React Web SDK version 3.0.0 uses optional chaining. If you encounter an error related to optional chaining during transpiling, bundling, or running tests, updating to version 3.0.2 should resolve the error.

Understanding changes to provider configuration

Version 3 of this SDK lets you use contexts. When you migrate from version 2.x, replace the user provider configuration option with context. If you do not replace it, version 3 of the React Web SDK will look for the user configuration option as a fallback. This fallback may be removed in a future major release.

Here’s how with asyncWithLDProvider:

1const user = {
2 key: "example-user-key",
3}
4
5const LDProvider = await asyncWithLDProvider({
6 clientSideID: "example-client-side-id",
7 user: user,
8})

Here’s how with withLDProvider:

1const user = {
2 key: "example-user-key",
3}
4
5export default withLDProvider({
6 clientSideID: "example-client-side-id",
7 user: user,
8})(App)

If you use the jest-launchdarkly-mock package, update it to version 2.0.

To learn more, read the unit tests migration guide.

Using this migration guide

The React Web client-side SDK is a wrapper of LaunchDarkly’s JavaScript SDK. The updates necessary to migrate to version 3 of the JavaScript SDK are available in the JavaScript SDK migration guide.