Skip to content

1.2.0

Compare
Choose a tag to compare
@louiszawadzki louiszawadzki released this 12 Jan 09:33
· 826 commits to develop since this release
9208125

What's changed

Initialize the SDK early with the DatadogProvider component

To simplify the code for initialization and reduce the likelihood of registering RUM events before the SDK is able to report them, we introduced the DatadogProvider component.

const config = new DatadogProviderConfiguration();
//...

export default function App() {
    return (
        <DatadogProvider configuration={config}>
            <Navigation />
        </DatadogProvider>
    );
}

The migration process only requires 3 steps, and is described in our docs.

Other improvements

Full Changelog: 1.1.5...1.2.0