Socket
Socket
Sign inDemoInstall

@sentry/hub

Package Overview
Dependencies
3
Maintainers
11
Versions
423
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install
2345
โ€ฆ
43Next

7.112.2

Diff

Changelog

Source

7.112.2

  • fix(nextjs|sveltekit): Ensure we can pass browserTracingIntegration (#11765)
sentry-bot
published 7.112.1 โ€ข

Changelog

Source

7.112.1

  • fix(ember/v7): Do not create rendering spans without transaction (#11750)
sentry-bot
published 7.112.0 โ€ข

Changelog

Source

7.112.0

Important Changes

  • feat: Export pluggable integrations from SDK packages (#11723)

Instead of installing @sentry/integrations, you can now import the pluggable integrations directly from your SDK package:

// Before
import * as Sentry fromv '@sentry/browser';
import { dedupeIntegration } from '@sentry/integrations';

Sentry.init({
  integrations: [dedupeIntegration()],
});

// After
import * as Sentry from '@sentry/browser';

Sentry.init({
  integrations: [Sentry.dedupeIntegration()],
});

Note that only the functional integrations (e.g. xxxIntegration()) are re-exported.

Other Changes

  • feat(replay): Add "maxCanvasSize" option for replay canvases (#11732)
  • fix(serverless): [v7] Check if cloud event callback is a function (#11734)
sentry-bot
published 7.111.0 โ€ข

Changelog

Source

7.111.0

  • feat(core): Add server.address to browser http.client spans (#11663)
  • fix: Ensure next & sveltekit correctly handle browserTracingIntegration (#11647)
  • fix(browser): Don't assume window.document is available (#11598)
sentry-bot
published 7.110.1 โ€ข

Changelog

Source

7.110.1

  • fix(nextjs): Fix tunnelRoute matching logic for hybrid cloud (#11577)
sentry-bot
published 7.110.0 โ€ข

Changelog

Source

7.110.0

Important Changes

  • feat(tracing): Add interactions sample rate to browser tracing integrations (#11382)

You can now use a interactionsSampleRate to control the sample rate of INP spans. interactionsSampleRate is applied on top of the global tracesSampleRate. Therefore if interactionsSampleRate is 0.5 and tracesSampleRate is 0.1, then the actual sample rate for interactions is 0.05.

Sentry.init({
  tracesSampleRate: 0.1,
  integrations: [
    Sentry.browserTracingIntegration({
      interactionsSampleRate: 0.5,
    }),
  ],
});
  • Deprecations

This release deprecates the Hub class, as well as the addRequestDataToTransaction method. The trpcMiddleware method is no longer on the Handlers export, but instead is a standalone export.

Please see the detailed Migration docs on how to migrate to the new APIs.

  • feat: Deprecate and relocate trpcMiddleware (#11389)
  • feat(core): Deprecate Hub class (#11528)
  • feat(types): Deprecate Hub interface (#11530)
  • ref: Deprecate addRequestDataToTransaction (#11368)

Other Changes

  • feat(core): Update metric normalization (#11519)
  • feat(feedback): Customize feedback placeholder text color (#11521)
  • feat(remix): Skip span creation for OPTIONS and HEAD request. (#11485)
  • feat(utils): Add metric buckets rate limit (#11506)
  • fix(core): unref timer to not block node exit (#11483)
  • fix(metrics): Map statsd to metric_bucket (#11505)
  • fix(spans): Allow zero exclusive time for INP spans (#11408)
  • ref(feedback): Configure feedback fonts (#11520)
sentry-bot
published 7.109.0 โ€ข

Changelog

Source

7.109.0

This release deprecates some exports from the @sentry/replay package. These exports have been moved to the browser SDK (or related framework SDKs like @sentry/react).

  • feat(feedback): Make "required" text for input elements configurable (#11287)
  • feat(node): Add scope to ANR events (#11267)
  • feat(replay): Bump rrweb to 2.12.0 (#11317)
  • fix(node): Local variables skipped after Promise (#11248)
  • fix(node): Skip capturing Hapi Boom error responses (#11324)
  • fix(web-vitals): Check for undefined navigation entry (#11312)
  • ref(replay): Deprecate @sentry/replay exports (#11242)

Work in this release contributed by @soerface. Thank you for your contribution!

sentry-bot
published 7.108.0 โ€ข

Changelog

Source

7.108.0

This release fixes issues with Time to First Byte (TTFB) calculation in the SDK that was introduced with 7.95.0. It also fixes some bugs with Interaction to First Paint (INP) instrumentation. This may impact your Sentry Performance Score calculation.

  • feat(serverless): Add Node.js 20 to compatible runtimes (#11104)
  • feat(core): Backport ResizeObserver and googletag default filters (#11210)
  • feat(webvitals): Adds event entry names for INP handler. Also guard against empty metric value
  • fix(metrics): use correct statsd data category (#11187)
  • fix(node): Record local variables with falsy values (v7) (#11190)
  • fix(node): Use unique variable for ANR context transfer (v7) (#11162)
  • fix(node): Time zone handling for cron (#11225)
  • fix(tracing): use web-vitals ttfb calculation (#11231)
  • fix(types): Fix incorrect sampled type on Transaction (#11146)
  • fix(webvitals): Fix mapping not being maintained properly and sometimes not sending INP spans (#11183)

Work in this release contributed by @quisido and @joshkel. Thank you for your contributions!

sentry-bot
published 7.107.0 โ€ข

Changelog

Source

7.107.0

This release fixes issues with INP instrumentation with the Next.js SDK and adds support for the enableInp option in the deprecated BrowserTracing integration for backwards compatibility.

  • feat(performance): Port INP span instrumentation to old browser tracing (#11085)
  • fix(ember): Ensure browser tracing is correctly lazy loaded (#11027)
  • fix(node): Do not assert in vendored proxy code (v7 backport) (#11009)
  • fix(react): Set handled value in ErrorBoundary depending on fallback [v7] (#11037)
sentry-bot
published 7.106.1 โ€ข

Changelog

Source

7.106.1

  • fix(nextjs/v7): Use passthrough createReduxEnhancer on server (#11010)
2345
โ€ฆ
43Next
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with โšก๏ธ by Socket Inc