pathling
pathling copied to clipboard
Bump @sentry/node from 7.84.0 to 8.12.0 in /lib/import
Bumps @sentry/node from 7.84.0 to 8.12.0.
Release notes
Sourced from @sentry/node
's releases.
8.12.0
Important Changes
- feat(solid): Remove need to pass router hooks to solid integration (breaking)
This release introduces breaking changes to the
@sentry/solid
package (which is currently out in alpha).We've made it easier to get started with the solid router integration by removing the need to pass use* hooks explicitly to
solidRouterBrowserTracingIntegration
. ImportsolidRouterBrowserTracingIntegration
from@sentry/solid/solidrouter
and add it toSentry.init
import * as Sentry from '@sentry/solid'; import { solidRouterBrowserTracingIntegration, withSentryRouterRouting } from '@sentry/solid/solidrouter'; import { Router } from '@solidjs/router';
Sentry.init({ dsn: 'PUBLIC_DSN', integrations: [solidRouterBrowserTracingIntegration()], tracesSampleRate: 1.0, // Capture 100% of the transactions });
const SentryRouter = withSentryRouterRouting(Router);
- feat(core): Return client from init method (#12585)
Sentry.init()
now returns a client directly, so you don't need to explicitly callgetClient()
anymore:const client = Sentry.init();
- feat(nextjs): Add
deleteSourcemapsAfterUpload
option (#12457)This adds an easy way to delete sourcemaps immediately after uploading them:
module.exports = withSentryConfig(nextConfig, { sourcemaps: { deleteSourcemapsAfterUpload: true, }, });
- feat(node): Allow to configure
maxSpanWaitDuration
(#12610)Adds configuration option for the max. duration in seconds that the SDK will wait for parent spans to be finished before discarding a span. The SDK will automatically clean up spans that have no finished parent after this duration. This is necessary to prevent memory leaks in case of parent spans that are never finished or otherwise dropped/missing. However,
... (truncated)
Changelog
Sourced from @sentry/node
's changelog.
8.12.0
Important Changes
- feat(solid): Remove need to pass router hooks to solid integration (breaking)
This release introduces breaking changes to the
@sentry/solid
package (which is currently out in alpha).We've made it easier to get started with the solid router integration by removing the need to pass use* hooks explicitly to
solidRouterBrowserTracingIntegration
. ImportsolidRouterBrowserTracingIntegration
from@sentry/solid/solidrouter
and add it toSentry.init
import * as Sentry from '@sentry/solid'; import { solidRouterBrowserTracingIntegration, withSentryRouterRouting } from '@sentry/solid/solidrouter'; import { Router } from '@solidjs/router';
Sentry.init({ dsn: 'PUBLIC_DSN', integrations: [solidRouterBrowserTracingIntegration()], tracesSampleRate: 1.0, // Capture 100% of the transactions });
const SentryRouter = withSentryRouterRouting(Router);
- feat(core): Return client from init method (#12585)
Sentry.init()
now returns a client directly, so you don't need to explicitly callgetClient()
anymore:const client = Sentry.init();
- feat(nextjs): Add
deleteSourcemapsAfterUpload
option (#12457)This adds an easy way to delete sourcemaps immediately after uploading them:
module.exports = withSentryConfig(nextConfig, { sourcemaps: { deleteSourcemapsAfterUpload: true, }, });
- feat(node): Allow to configure
maxSpanWaitDuration
(#12610)Adds configuration option for the max. duration in seconds that the SDK will wait for parent spans to be finished before discarding a span. The SDK will automatically clean up spans that have no finished parent after this duration. This is
... (truncated)
Commits
a38ac88
release: 8.12.0a5cd091
Merge pull request #12637 from getsentry/prepare-release/8.12.0944e1ea
meta(changelog): Remove non user facing changebb85a02
Merge branch 'master' into prepare-release/8.12.012072b8
meta(changelog): Update changelog for 8.12.0dd4a7d7
feat(solid): Remove need to pass router hooks to solid integration (#12617)c49c9f3
fix(feedback): Inject preact from feedbackModal into feedbackScreenshot integ...70e942d
fix(build) upgrade deprecated runners (#12624)b23171b
docs: Update slack issue-feed channel for triaging docs (#12618)8b8febb
feat(node): Allow to configuremaxSpanWaitDuration
(#12610)- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
-
@dependabot rebase
will rebase this PR -
@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it -
@dependabot merge
will merge this PR after your CI passes on it -
@dependabot squash and merge
will squash and merge this PR after your CI passes on it -
@dependabot cancel merge
will cancel a previously requested merge and block automerging -
@dependabot reopen
will reopen this PR if it is closed -
@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually -
@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency -
@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) -
@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) -
@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)