Migrate the usage of your Sentry SDK v7 to be v8 compatible.
This Repository was archived. Sentry Migr8 was created for version 8 of the Sentry JavaScript SDKs to aid migrating to the various new APIs introduced with v8. Given we're working on version 9 of the SDK already, which will include way less breaking changes, @sentry/migr8 has been archived and is unlikely to experience further releases.
Run @sentry/migr8
in your application directory:
npx @sentry/migr8
By default we run all transformations on all files in the directory, ignoring any gitignored files.
If you work in a monorepo, make sure to run @sentry/migr8
in each subpackage instead of the monorepo root, as
otherwise we cannot update dependencies etc. correctly.
migr8 runs on Node 18+.
You can run npx @sentry/migr8 --help
to get a list of available options.
--filePatterns
: Glob pattern(s) which files should be transformed. Defaults to**/*.{js,jsx,ts,tsx,mjs,cjs,mts,.vue,.svele}
--ignoreFilePatterns
: Glob pattern(s) which files should be ignored. This overwrites files matched by--filePatterns
.--debug
: Enable verbose logging--sdk
: We try to detect the used Sentry SDK package, e.g.@sentry/browser
. You can overwrite this and provide the SDK package you're using.--cwd
: You can overwrite the cwd dir to run commands in.
When using @sentry/node
in v8, it is required to call Sentry.init()
before anything else is required/imported.
Because of this, the recommended way to initialize Sentry is in a separate file (e.g. instrument.js
) which is
required/imported at the very top of your application file.
This transform will try to detect this case and create a standalone instrumentation file for you.
There are certain things that migr8 cannot auto-fix for you. This is the case for things like startTransaction()
,
which cannot be replaced 1:1. This transform will try to identify the most common of these scenarios, and put comments
into your code in places where you need to do something manually.
This updates usage of class-based integrations to the new, functional style. For example:
new BrowserTracing()
→browserTracingIntegration()
new Sentry.Replay()
→Sentry.replayIntegration()
This migrates deprecated replay configuration from v7 to v8. This includes:
blockSelector
→block
blockClass
→block
ignoreClass
→ignore
maskTextClass
→mask
maskTextSelector
→mask
It also migrates old sample rate config from new Replay()
to Sentry.init()
:
Sentry.init({
integrations: [
new Replay({
sessionSampleRate: 0.1,
errorSampleRate: 0.8
})
]
});
// Becomes...
Sentry.init({
integrations: [
new Replay({})
],
replaysSessionSampleRate: 0.1,
replaysOnErrorSampleRate: 0.8,
});
Removes deprecated packages (@sentry/hub
, @sentry/tracing
, @sentry/integrations
, and @sentry/replay
) from your
application. These are not needed anymore, and their exports can just be imported from your main SDK package instead.
Updates your used SDK to the latest version, and ensures all packages have the same version.
This migrates deprecated Next.js methods from v7 to v8. This includes:
withSentryAPI
→wrapApiHandlerWithSentry
withSentryServerSideGetInitialProps
→wrapGetInitialPropsWithSentry
withSentryServerSideAppGetInitialProps
→wrapAppGetInitialPropsWithSentry
withSentryServerSideDocumentGetInitialProps
→wrapDocumentGetInitialPropsWithSentry
withSentryServerSideErrorGetInitialProps
→wrapErrorGetInitialPropsWithSentry
withSentryGetServerSideProps
→wrapGetServerSidePropsWithSentry
withSentryGetStaticProps
→wrapGetStaticPropsWithSentry
withSentry
→wrapApiWithSentry
withSentryServerSideAppGetInitialProps
→wrapAppGetInitialPropsWithSentry
Rewrite moved utility functions from Sentry.Handlers.xxx
. Note that this does not migrate all methods on Handlers
,
but only a few that have been deprecated:
Handlers.ExpressRequest
→PolymorphicRequest
(Type export)Handlers.extractRequestData
→extractRequestData
Rewrites usages of configureScope()
to use getCurrentScope()
instead. Note that this will rewrite this to code
blocks, which may not be the preferred syntax in all cases, but it's the only way to make this work somewhat reliably
with avoiding variable clashes etc.
This will rewrite:
Sentry.configureScope(scope => {
scope.setTag('ccc', 'ccc');
scope.setExtra('ddd', { ddd: 'ddd' });
});
to
{
const scope = Sentry.getCurrentScope();
scope.setTag('ccc', 'ccc');
scope.setExtra('ddd', { ddd: 'ddd' });
}
Rewrites tracePropagationTargets
and tracingOrigins
from Integration-level config to root config on Sentry.init()
.
Rewrites some old exports from @sentry/utils
to their newer formats:
severityFromString
→severityLevelFromString
getGlobalObject()
→GLOBAL_OBJ
timestampWithMs
→timestampInSeconds
Replaces the deprecated Sentry.Severity
and Sentry.SpanStatus
enums with their string literal values.
Replaces imports from the deprecated @sentry/hub
package with the newer imports.
Replaces imports from the deprecated @sentry/replay
package with the newer imports.
Replaces imports from the deprecated @sentry/tracing
package with the newer imports.
Replaces imports from the deprecated @sentry/integrations
package with the newer imports.