Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update dependency @sentry/node to v8.9.2 #408

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 24, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@sentry/node (source) 8.4.0 -> 8.9.2 age adoption passing confidence

Release Notes

getsentry/sentry-javascript (@​sentry/node)

v8.9.2

Compare Source

  • fix(profiling): Update exports so types generate properly (#​12469)

v8.9.1

Important changes
  • feat(solid): Add Solid SDK

    This release adds a dedicated SDK for Solid JS in alpha state with instrumentation for
    Solid Router and a custom ErrorBoundary. See the
    package README for how to use
    the SDK.

Other changes

Work in this release was contributed by @​soch4n. Thank you for your contribution!

v8.9.0

This release failed to publish correctly, please use 8.9.1 instead.

v8.8.0

Compare Source

  • feat: Upgrade OTEL dependencies (#​12388)

This upgrades the OpenTelemetry dependencies to the latest versions and makes OTEL use import-in-the-middle v1.8.0.
This should fix numerous issues with using OTEL instrumentation with ESM.

High level issues fixed with OTEL + ESM:

  • incompatibilities with using multiple loaders, commonly encountered while using tsx or similar libraries.
  • incompatibilities with libraries that use duplicate namespace exports like date-fns.
  • incompatibilities with libraries that use self-referencing namespace imports like openai.
  • incompatibilities with dynamic export patterns like exports with function calls.
  • ENOENT: no such file or directory bugs that libraries like discord.js
    surface.

If you are still encountering issues with OpenTelemetry instrumentation and ESM, please let us know.

  • deps: Bump Sentry bundler plugins to version 2.18.0 (#​12381)
  • feat: Add thirdPartyErrorFilterIntegration (#​12267)
  • feat(core): Filter out error events with exception values and no stacktraces, values, or types (#​12387)
  • feat(core): Ignore additional common but inactionable errors (#​12384)
  • feat(deps): Bump @​opentelemetry/propagator-aws-xray from 1.3.1 to 1.24.1 (#​12333)
  • feat(deps): Bump @​sentry/cli from 2.31.2 to 2.32.1 (#​12332)
  • feat(redis): Support mget command in caching functionality (#​12380)
  • feat(vercel-edge): Export core integrations from Vercel edge SDK (#​12308)
  • fix(browser): Fix idle span ending (#​12306)
  • fix(browser): Fix parenthesis parsing logic for chromium (#​12373)
  • fix(browser): Fix types export path for CJS (#​12305)
  • fix(feedback): Override TriggerLabel Option (#​12316)
  • fix(feedback): Wait for document to be ready before doing autoinject (#​12294)
  • fix(nextjs): Fix memory leak (#​12335)
  • fix(nextjs): Fix version detection and option insertion logic for clientTraceMetadata option (#​12323)
  • fix(nextjs): Update argument name in log message about sentry property on Next.js config object (#​12366)
  • fix(node): Do not manually finish / update root Hapi spans. (#​12287)
  • fix(node): Fix virtual parent span ID handling & update create-next-app E2E test (#​12368)
  • fix(node): Skip capturing Hapi Boom responses v8. (#​12288)
  • fix(performance): Fix LCP not getting picked up on initial pageload transaction by setting reportAllChanges to true
    (#​12360)
  • fix(replay): Avoid infinite loop of logs (#​12309)
  • fix(replay): Ignore old events when manually starting replay (#​12349)
  • ref(browser): Ensure idle span ending is consistent (#​12310)
  • ref(profiling): unref timer (#​12340)

v8.7.0

Important Changes
  • feat(react): Add TanStack Router integration (#​12095)

    This release adds instrumentation for TanStack router with a new tanstackRouterBrowserTracingIntegration in the
    @sentry/react SDK:

    import * as Sentry from '@​sentry/react';
    import { createRouter } from '@​tanstack/react-router';
    
    const router = createRouter({
      // Your router options...
    });
    
    Sentry.init({
      dsn: '___PUBLIC_DSN___',
      integrations: [Sentry.tanstackRouterBrowserTracingIntegration(router)],
      tracesSampleRate: 1.0,
    });
Other Changes
  • fix(nextjs): Do not hide sourceMappingURL comment on client when nextConfig.productionBrowserSourceMaps: true is
    set (#​12278)

v8.6.0

Important Changes
  • feat(metrics): Add timings method to metrics (#​12226)

    This introduces a new method, metrics.timing(), which can be used in two ways:

    1. With a numeric value, to simplify creating a distribution metric. This will default to second as unit:
    Sentry.metrics.timing('myMetric', 100);
    1. With a callback, which will wrap the duration of the callback. This can accept a sync or async callback. It will
      create an inactive span around the callback and at the end emit a metric with the duration of the span in seconds:
    const returnValue = Sentry.metrics.timing('myMetric', measureThisFunction);
  • feat(react): Add Sentry.reactErrorHandler (#​12147)

    This PR introduces Sentry.reactErrorHandler, which you can use in React 19 as follows:

    import * as Sentry from '@​sentry/react';
    import { hydrateRoot } from 'react-dom/client';
    
    ReactDOM.hydrateRoot(
      document.getElementById('root'),
      <React.StrictMode>
        <App />
      </React.StrictMode>,
      {
        onUncaughtError: Sentry.reactErrorHandler(),
        onCaughtError: Sentry.reactErrorHandler((error, errorInfo) => {
          // optional callback if users want custom config.
        }),
      },
    );

    For more details, take a look at the PR. Our
    documentation will be updated soon!

Other Changes
  • feat(sveltekit): Add request data to server-side events (#​12254)
  • fix(core): Pass in cron monitor config correctly (#​12248)
  • fix(nextjs): Don't capture suspense errors in server components (#​12261)
  • fix(tracing): Ensure sent spans are limited to 1000 (#​12252)
  • ref(core): Use versioned carrier on global object (#​12206)

v8.5.0

Compare Source

Important Changes
  • feat(react): Add React 19 to peer deps (#​12207)

This release adds support for React 19 in the @sentry/react SDK package.

  • feat(node): Add @sentry/node/preload hook (#​12213)

This release adds a new way to initialize @sentry/node, which allows you to use the SDK with performance
instrumentation even if you cannot call Sentry.init() at the very start of your app.

First, run the SDK like this:

node --require @&#8203;sentry/node/preload ./app.js

Now, you can initialize and import the rest of the SDK later or asynchronously:

const express = require('express');
const Sentry = require('@&#8203;sentry/node');

const dsn = await getSentryDsn();
Sentry.init({ dsn });

For more details, head over to the
PR Description of the new feature. Our docs will be updated
soon with a new guide.

Other Changes
  • feat(browser): Do not include metrics in base CDN bundle (#​12230)
  • feat(core): Add startNewTrace API (#​12138)
  • feat(core): Allow to pass custom scope to captureFeedback() (#​12216)
  • feat(core): Only allow SerializedSession in session envelope items (#​11979)
  • feat(nextjs): Use Vercel's waitUntil to defer freezing of Vercel Lambdas (#​12133)
  • feat(node): Ensure manual OTEL setup works (#​12214)
  • fix(aws-serverless): Avoid minifying Module._resolveFilename in Lambda layer bundle (#​12232)
  • fix(aws-serverless): Ensure lambda layer uses default export from ImportInTheMiddle (#​12233)
  • fix(browser): Improve browser extension error message check (#​12146)
  • fix(browser): Remove optional chaining in INP code (#​12196)
  • fix(nextjs): Don't report React postpone errors (#​12194)
  • fix(nextjs): Use global scope for generic event filters (#​12205)
  • fix(node): Add origin to redis span (#​12201)
  • fix(node): Change import of @prisma/instrumentation to use default import (#​12185)
  • fix(node): Only import inspector asynchronously (#​12231)
  • fix(replay): Update matcher for hydration error detection to new React docs (#​12209)
  • ref(profiling-node): Add warning when using non-LTS node (#​12211)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot changed the title fix(deps): update dependency @sentry/node to v7.75.0 fix(deps): update dependency @sentry/node to v7.75.1 Oct 25, 2023
@renovate renovate bot force-pushed the renovate/sentry-javascript-monorepo branch from 061b314 to f838050 Compare October 25, 2023 13:31
@renovate renovate bot changed the title fix(deps): update dependency @sentry/node to v7.75.1 fix(deps): update dependency @sentry/node to v7.76.0 Oct 27, 2023
@renovate renovate bot force-pushed the renovate/sentry-javascript-monorepo branch from f838050 to 1c59aec Compare October 27, 2023 19:09
@renovate renovate bot changed the title fix(deps): update dependency @sentry/node to v7.76.0 fix(deps): update dependency @sentry/node to v7.77.0 Oct 31, 2023
@renovate renovate bot force-pushed the renovate/sentry-javascript-monorepo branch from 1c59aec to 922a695 Compare October 31, 2023 12:51
@renovate renovate bot changed the title fix(deps): update dependency @sentry/node to v7.77.0 fix(deps): update dependency @sentry/node to v7.78.0 Nov 8, 2023
@renovate renovate bot force-pushed the renovate/sentry-javascript-monorepo branch from 922a695 to 601092c Compare November 8, 2023 11:06
@renovate renovate bot changed the title fix(deps): update dependency @sentry/node to v7.78.0 fix(deps): update dependency @sentry/node to v7.79.0 Nov 8, 2023
@renovate renovate bot force-pushed the renovate/sentry-javascript-monorepo branch from 601092c to 680923f Compare November 8, 2023 17:27
@renovate renovate bot changed the title fix(deps): update dependency @sentry/node to v7.79.0 fix(deps): update dependency @sentry/node to v7.80.0 Nov 9, 2023
@renovate renovate bot force-pushed the renovate/sentry-javascript-monorepo branch from 680923f to 77da3fe Compare November 9, 2023 19:37
@renovate renovate bot changed the title fix(deps): update dependency @sentry/node to v7.80.0 fix(deps): update dependency @sentry/node to v7.80.1 Nov 14, 2023
@renovate renovate bot force-pushed the renovate/sentry-javascript-monorepo branch from 77da3fe to 53686d4 Compare November 14, 2023 13:48
@renovate renovate bot changed the title fix(deps): update dependency @sentry/node to v7.80.1 fix(deps): update dependency @sentry/node to v7.81.0 Nov 20, 2023
@renovate renovate bot force-pushed the renovate/sentry-javascript-monorepo branch from 53686d4 to 0e6b6c9 Compare November 20, 2023 16:19
@renovate renovate bot changed the title fix(deps): update dependency @sentry/node to v7.81.0 fix(deps): update dependency @sentry/node to v7.81.1 Nov 21, 2023
@renovate renovate bot force-pushed the renovate/sentry-javascript-monorepo branch from 0e6b6c9 to b17ab36 Compare November 21, 2023 14:32
@renovate renovate bot changed the title fix(deps): update dependency @sentry/node to v7.81.1 fix(deps): update dependency @sentry/node to v7.82.0 Nov 27, 2023
@renovate renovate bot force-pushed the renovate/sentry-javascript-monorepo branch from b17ab36 to 55bf35a Compare November 27, 2023 20:20
@renovate renovate bot changed the title fix(deps): update dependency @sentry/node to v7.82.0 fix(deps): update dependency @sentry/node to v7.83.0 Nov 28, 2023
@renovate renovate bot force-pushed the renovate/sentry-javascript-monorepo branch from 55bf35a to e116244 Compare November 28, 2023 12:38
@renovate renovate bot changed the title fix(deps): update dependency @sentry/node to v7.83.0 fix(deps): update dependency @sentry/node to v7.84.0 Nov 30, 2023
@renovate renovate bot force-pushed the renovate/sentry-javascript-monorepo branch from e116244 to bd04ed7 Compare November 30, 2023 14:17
@renovate renovate bot changed the title fix(deps): update dependency @sentry/node to v7.84.0 fix(deps): update dependency @sentry/node to v7.85.0 Dec 4, 2023
@renovate renovate bot force-pushed the renovate/sentry-javascript-monorepo branch 2 times, most recently from 0c86d4a to e65e1da Compare December 7, 2023 13:15
@renovate renovate bot changed the title fix(deps): update dependency @sentry/node to v7.85.0 fix(deps): update dependency @sentry/node to v7.86.0 Dec 7, 2023
@renovate renovate bot force-pushed the renovate/sentry-javascript-monorepo branch from e65e1da to c81cf6a Compare December 13, 2023 17:10
@renovate renovate bot changed the title fix(deps): update dependency @sentry/node to v7.86.0 fix(deps): update dependency @sentry/node to v7.87.0 Dec 13, 2023
@renovate renovate bot changed the title fix(deps): update dependency @sentry/node to v7.112.0 fix(deps): update dependency @sentry/node to v7.112.1 Apr 23, 2024
@renovate renovate bot force-pushed the renovate/sentry-javascript-monorepo branch from 29911c9 to 335cb16 Compare April 24, 2024 12:53
@renovate renovate bot changed the title fix(deps): update dependency @sentry/node to v7.112.1 fix(deps): update dependency @sentry/node to v7.112.2 Apr 24, 2024
@renovate renovate bot force-pushed the renovate/sentry-javascript-monorepo branch from 335cb16 to 34f7cf7 Compare May 2, 2024 12:37
@renovate renovate bot changed the title fix(deps): update dependency @sentry/node to v7.112.2 fix(deps): update dependency @sentry/node to v7.113.0 May 2, 2024
@renovate renovate bot force-pushed the renovate/sentry-javascript-monorepo branch from 34f7cf7 to a7c3835 Compare May 8, 2024 09:52
@renovate renovate bot changed the title fix(deps): update dependency @sentry/node to v7.113.0 fix(deps): update dependency @sentry/node to v7.114.0 May 8, 2024
@renovate renovate bot force-pushed the renovate/sentry-javascript-monorepo branch from a7c3835 to 70b5fcd Compare May 16, 2024 15:43
@renovate renovate bot changed the title fix(deps): update dependency @sentry/node to v7.114.0 fix(deps): update dependency @sentry/node to v7.115.0 May 16, 2024
@renovate renovate bot force-pushed the renovate/sentry-javascript-monorepo branch from 70b5fcd to e1dc93a Compare May 17, 2024 19:05
@renovate renovate bot changed the title fix(deps): update dependency @sentry/node to v7.115.0 fix(deps): update dependency @sentry/node to v7.116.0 May 17, 2024
@renovate renovate bot changed the title fix(deps): update dependency @sentry/node to v7.116.0 fix(deps): update dependency @sentry/node to v7.116.0 - autoclosed May 25, 2024
@renovate renovate bot closed this May 25, 2024
@renovate renovate bot deleted the renovate/sentry-javascript-monorepo branch May 25, 2024 10:16
@renovate renovate bot changed the title fix(deps): update dependency @sentry/node to v7.116.0 - autoclosed fix(deps): update dependency @sentry/node to v7.116.0 May 27, 2024
@renovate renovate bot restored the renovate/sentry-javascript-monorepo branch May 27, 2024 18:29
@renovate renovate bot reopened this May 27, 2024
@renovate renovate bot force-pushed the renovate/sentry-javascript-monorepo branch from e1dc93a to d628f3b Compare May 27, 2024 18:30
@renovate renovate bot changed the title fix(deps): update dependency @sentry/node to v7.116.0 fix(deps): update dependency @sentry/node to v8.5.0 May 27, 2024
@renovate renovate bot changed the title fix(deps): update dependency @sentry/node to v8.5.0 fix(deps): update dependency @sentry/node to v8.7.0 May 29, 2024
@renovate renovate bot force-pushed the renovate/sentry-javascript-monorepo branch from d628f3b to 57a9e11 Compare May 29, 2024 17:09
@renovate renovate bot force-pushed the renovate/sentry-javascript-monorepo branch from 57a9e11 to a00a676 Compare June 7, 2024 11:03
@renovate renovate bot changed the title fix(deps): update dependency @sentry/node to v8.7.0 fix(deps): update dependency @sentry/node to v8.8.0 Jun 7, 2024
@renovate renovate bot changed the title fix(deps): update dependency @sentry/node to v8.8.0 fix(deps): update dependency @sentry/node to v8.9.0 Jun 11, 2024
@renovate renovate bot force-pushed the renovate/sentry-javascript-monorepo branch 2 times, most recently from f8244cb to 602e200 Compare June 11, 2024 16:54
@renovate renovate bot changed the title fix(deps): update dependency @sentry/node to v8.9.0 fix(deps): update dependency @sentry/node to v8.9.1 Jun 11, 2024
@renovate renovate bot force-pushed the renovate/sentry-javascript-monorepo branch from 602e200 to 41f0dfb Compare June 12, 2024 10:38
@renovate renovate bot changed the title fix(deps): update dependency @sentry/node to v8.9.1 fix(deps): update dependency @sentry/node to v8.9.2 Jun 12, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants