npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@sentry/migr8

v0.1.0

Published

Run migrations for the Sentry JavaScript SDKs.

Downloads

104

Readme

sentry-migr8

Migrate the usage of your Sentry SDK v7 to be v8 compatible.

Usage

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+.

Options

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.

Transformations

Add migration comments

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.

Use functional integrations instead of integration classes

This updates usage of class-based integrations to the new, functional style. For example:

  • new BrowserTracing()browserTracingIntegration()
  • new Sentry.Replay()Sentry.replayIntegration()

Replay Config v7>v8

This migrates deprecated replay configuration from v7 to v8. This includes:

  • blockSelectorblock
  • blockClassblock
  • ignoreClassignore
  • maskTextClassmask
  • maskTextSelectormask

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,
});

Remove deprecated packages

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.

Update SDK to latest version

Updates your used SDK to the latest version, and ensures all packages have the same version.

Next.js Wrapper Methods v7>v8

This migrates deprecated Next.js methods from v7 to v8. This includes:

  • withSentryAPIwrapApiHandlerWithSentry
  • withSentryServerSideGetInitialPropswrapGetInitialPropsWithSentry
  • withSentryServerSideAppGetInitialPropswrapAppGetInitialPropsWithSentry
  • withSentryServerSideDocumentGetInitialPropswrapDocumentGetInitialPropsWithSentry
  • withSentryServerSideErrorGetInitialPropswrapErrorGetInitialPropsWithSentry
  • withSentryGetServerSidePropswrapGetServerSidePropsWithSentry
  • withSentryGetStaticPropswrapGetStaticPropsWithSentry
  • withSentrywrapApiWithSentry
  • withSentryServerSideAppGetInitialPropswrapAppGetInitialPropsWithSentry

Node Handler Utils v7>v8

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.ExpressRequestPolymorphicRequest (Type export)
  • Handlers.extractRequestDataextractRequestData

Use getCurrentScope() instead of configureScope()

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' });
}

Tracing Config v7>v8

Rewrites tracePropagationTargets and tracingOrigins from Integration-level config to root config on Sentry.init().

Util Exports v7>v8

Rewrites some old exports from @sentry/utils to their newer formats:

  • severityFromStringseverityLevelFromString
  • getGlobalObject()GLOBAL_OBJ
  • timestampWithMstimestampInSeconds

Convert Enums to String Literals

Replaces the deprecated Sentry.Severity and Sentry.SpanStatus enums with their string literal values.

Remove @sentry/hub imports

Replaces imports from the deprecated @sentry/hub package with the newer imports.

Remove @sentry/replay imports

Replaces imports from the deprecated @sentry/replay package with the newer imports.

Remove @sentry/tracing imports

Replaces imports from the deprecated @sentry/tracing package with the newer imports.

Remove @sentry/integrations imports

Replaces imports from the deprecated @sentry/integrations package with the newer imports.