#
Migrate to v8.0
This major version remove the global variables deprecated in v7.0.
#
Breaking changes
#
Removed
- The
window.__WLP_HONEYCOMB_INSTRUMENTATION_IS_REGISTERED__global variable have been removed. Instead, provide a client instance to the third-party libraries. - The
window.__WLP_HONEYCOMB_REGISTER_DYNAMIC_FETCH_REQUEST_HOOK__global variable have been removed. Instead, provide a client instance to the third-party libraries. - The
window.__WLP_HONEYCOMB_REGISTER_DYNAMIC_FETCH_REQUEST_HOOK_AT_START__global variable have been removed. Instead, provide a client instance to the third-party libraries.
#
createTelemetryContext now requires a productFamily argument
The createTelemetryContext function signature has been updated to introduce a productFamily argument as the first parameter.
Before:
const context = createTelemetryContext();
Now:
const context = createTelemetryContext("sg");