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/gatsby to ^8.30.0 #1325

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 9, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@sentry/gatsby (source) ^8.20.0 -> ^8.30.0 age adoption passing confidence

Release Notes

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

v8.30.0

Compare Source

Important Changes
  • feat(node): Add kafkajs integration (#​13528)

This release adds a new integration that instruments kafkajs library with spans and traces. This integration is
automatically enabled by default, but can be included with the Sentry.kafkaIntegration() import.

Sentry.init({
  integrations: [Sentry.kafkaIntegration()],
});
Other Changes
  • feat(core): Allow adding measurements without global client (#​13612)
  • feat(deps): Bump @​opentelemetry/instrumentation-undici from 0.5.0 to 0.6.0 (#​13622)
  • feat(deps): Bump @​sentry/cli from 2.33.0 to 2.35.0 (#​13624)
  • feat(node): Use @opentelemetry/instrumentation-undici for fetch tracing (#​13485)
  • feat(nuxt): Add server config to root folder (#​13583)
  • feat(otel): Upgrade @​opentelemetry/semantic-conventions to 1.26.0 (#​13631)
  • fix(browser): check supportedEntryTypes before caling the function (#​13541)
  • fix(browser): Ensure Standalone CLS span timestamps are correct (#​13649)
  • fix(nextjs): Widen removal of 404 transactions (#​13628)
  • fix(node): Remove ambiguity and race conditions when matching local variables to exceptions (#​13501)
  • fix(node): Update OpenTelemetry instrumentation package for solidstart and opentelemetry (#​13640)
  • fix(node): Update OpenTelemetry instrumentation package for solidstart and opentelemetry (#​13642)
  • fix(vue): Ensure Vue trackComponents list matches components with or without <> (#​13543)
  • ref(profiling): Conditionally shim cjs globals (#​13267)

Work in this release was contributed by @​Zen-cronic and @​odanado. Thank you for your contributions!

v8.29.0

Compare Source

Important Changes
  • Beta releases of official Solid and SolidStart Sentry SDKs

This release marks the beta releases of the @sentry/solid and @sentry/solidstart Sentry SDKs. For details on how to
use them, check out the
Sentry Solid SDK README and the
Sentry SolidStart SDK README
respectively. Please reach out on GitHub if you have
any feedback or concerns.

  • feat(node): Option to only wrap instrumented modules (#​13139)

Adds the SDK option to only wrap ES modules with import-in-the-middle that specifically need to be instrumented.

import * as Sentry from '@&#8203;sentry/node';

Sentry.init({
  dsn: '__PUBLIC_DSN__',
  registerEsmLoaderHooks: { onlyHookedModules: true },
});
  • feat(node): Update OpenTelemetry packages to instrumentation v0.53.0 (#​13587)

All internal OpenTelemetry instrumentation was updated to their latest version. This adds support for Mongoose v7 and v8
and fixes various bugs related to ESM mode.

Other Changes
  • feat(nextjs): Emit warning when using turbopack (#​13566)
  • feat(nextjs): Future-proof Next.js config options overriding (#​13586)
  • feat(node): Add generic-pool integration (#​13465)
  • feat(nuxt): Upload sourcemaps generated by Nitro (#​13382)
  • feat(solidstart): Add browserTracingIntegration by default (#​13561)
  • feat(solidstart): Add sentrySolidStartVite plugin to simplify source maps upload (#​13493)
  • feat(vue): Only start UI spans if parent is available (#​13568)
  • fix(cloudflare): Guard context.waitUntil call in request handler (#​13549)
  • fix(gatsby): Fix assets path for sourcemaps upload (#​13592)
  • fix(nextjs): Use posix paths for sourcemap uploads (#​13603)
  • fix(node-fetch): Use stringified origin url (#​13581)
  • fix(node): Replace dashes in generic-pool span origins with underscores (#​13579)
  • fix(replay): Fix types in WebVitalData (#​13573)
  • fix(replay): Improve replay web vital types (#​13602)
  • fix(utils): Keep logger on carrier (#​13570)

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

v8.28.0

Compare Source

Important Changes
  • Beta release of official NestJS SDK

This release contains the beta version of @sentry/nestjs! For details on how to use it, check out the
README. Any feedback/bug reports
are greatly appreciated, please reach out on GitHub.

  • fix(browser): Remove faulty LCP, FCP and FP normalization logic (#​13502)

This release fixes a bug in the @sentry/browser package and all SDKs depending on this package (e.g. @sentry/react
or @sentry/nextjs) that caused the SDK to send incorrect web vital values for the LCP, FCP and FP vitals. The SDK
previously incorrectly processed the original values as they were reported from the browser. When updating your SDK to
this version, you might experience an increase in LCP, FCP and FP values, which potentially leads to a decrease in your
performance score in the Web Vitals Insights module in Sentry. This is because the previously reported values were
smaller than the actually measured values. We apologize for the inconvenience!

Other Changes
  • feat(nestjs): Add SentryGlobalGraphQLFilter (#​13545)
  • feat(nestjs): Automatic instrumentation of nestjs interceptors after route execution (#​13264)
  • feat(nextjs): Add bundleSizeOptimizations to build options (#​13323)
  • feat(nextjs): Stabilize captureRequestError (#​13550)
  • feat(nuxt): Wrap config in nuxt context (#​13457)
  • feat(profiling): Expose profiler as top level primitive (#​13512)
  • feat(replay): Add layout shift to CLS replay data (#​13386)
  • feat(replay): Upgrade rrweb packages to 2.26.0 (#​13483)
  • fix(cdn): Do not mangle _metadata (#​13426)
  • fix(cdn): Fix SDK source for CDN bundles (#​13475)
  • fix(nestjs): Check arguments before instrumenting with @Injectable (#​13544)
  • fix(nestjs): Ensure exception and host are correctly passed on when using @​WithSentry (#​13564)
  • fix(node): Suppress tracing for transport request execution rather than transport creation (#​13491)
  • fix(replay): Consider more things as DOM mutations for dead clicks (#​13518)
  • fix(vue): Correctly obtain component name (#​13484)

Work in this release was contributed by @​leopoldkristjansson, @​mhuggins and @​filips123. Thank you for your
contributions!

v8.27.0

Compare Source

Important Changes
  • fix(nestjs): Exception filters in main app module are not being executed (#​13278)

    With this release nestjs error monitoring is no longer automatically set up after adding the SentryModule to your
    application, which led to issues in certain scenarios. You will now have to either add the SentryGlobalFilter to
    your main module providers or decorate the catch() method in your existing global exception filters with the newly
    released @WithSentry() decorator. See the docs for
    more details.

Other Changes
  • feat: Add options for passing nonces to feedback integration (#​13347)
  • feat: Add support for SENTRY_SPOTLIGHT env var in Node (#​13325)
  • feat(deps): bump @​prisma/instrumentation from 5.17.0 to 5.18.0 (#​13327)
  • feat(feedback): Improve error message for 403 errors (#​13441)
  • fix(deno): Don't rely on Deno.permissions.querySync (#​13378)
  • fix(replay): Ensure we publish replay CDN bundles (#​13437)

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

v8.26.0

Compare Source

Important Changes
  • feat(node): Add fsInstrumentation (#​13291)

    This release adds fsIntegration, an integration that instruments the fs API to the Sentry Node SDK. The
    integration creates spans with naming patterns of fs.readFile, fs.unlink, and so on.

    This integration is not enabled by default and needs to be registered in your Sentry.init call. You can configure
    via options whether to include path arguments or error messages as span attributes when an fs call fails:

    Sentry.init({
      integrations: [
        Sentry.fsIntegration({
          recordFilePaths: true,
          recordErrorMessagesAsSpanAttributes: true,
        }),
      ],
    });

    WARNING: This integration may add significant overhead to your application. Especially in scenarios with a lot of
    file I/O, like for example when running a framework dev server, including this integration can massively slow down
    your application.

Other Changes
  • feat(browser): Add spotlightBrowser integration (#​13263)

  • feat(browser): Allow sentry in safari extension background page (#​13209)

  • feat(browser): Send CLS as standalone span (experimental) (#​13056)

  • feat(core): Add OpenTelemetry-specific getTraceData implementation (#​13281)

  • feat(nextjs): Always add browserTracingIntegration (#​13324)

  • feat(nextjs): Always transmit trace data to the client (#​13337)

  • feat(nextjs): export SentryBuildOptions (#​13296)

  • feat(nextjs): Update experimental_captureRequestError to reflect RequestInfo.path change in Next.js canary
    (#​13344)

  • feat(nuxt): Always add tracing meta tags (#​13273)

  • feat(nuxt): Set transaction name for server error (#​13292)

  • feat(replay): Add a replay-specific logger (#​13256)

  • feat(sveltekit): Add bundle size optimizations to plugin options (#​13318)

  • feat(sveltekit): Always add browserTracingIntegration (#​13322)

  • feat(tracing): Make long animation frames opt-out (#​13255)

  • fix(astro): Correctly extract request data (#​13315)

  • fix(astro): Only track access request headers in dynamic page requests (#​13306)

  • fix(nuxt): Add import line for disabled autoImport (#​13342)

  • fix(nuxt): Add vue to excludeEsmLoaderHooks array (#​13346)

  • fix(opentelemetry): Do not overwrite http span name if kind is internal (#​13282)

  • fix(remix): Ensure origin is correctly set for remix server spans (#​13305)

Work in this release was contributed by @​MonstraG, @​undead-voron and @​Zen-cronic. Thank you for your contributions!

v8.25.0

Compare Source

Important Changes
  • Alpha release of Official Solid Start SDK

This release contains the alpha version of @sentry/solidstart, our SDK for Solid Start!
For details on how to use it, please see the README. Any feedback/bug reports are
greatly appreciated, please reach out on GitHub.

Other Changes
  • feat(astro): Add bundleSizeOptimizations vite options to integration (#​13250)
  • feat(astro): Always add BrowserTracing (#​13244)
  • feat(core): Add getTraceMetaTags function (#​13201)
  • feat(nestjs): Automatic instrumentation of nestjs exception filters (#​13230)
  • feat(node): Add useOperationNameForRootSpan tographqlIntegration (#​13248)
  • feat(sveltekit): Add wrapServerRouteWithSentry wrapper (#​13247)
  • fix(aws-serverless): Extract sentry trace data from handler context over event (#​13266)
  • fix(browser): Initialize default integration if defaultIntegrations: undefined (#​13261)
  • fix(utils): Streamline IP capturing on incoming requests (#​13272)

v8.24.0

Compare Source

  • feat(nestjs): Filter RPC exceptions (#​13227)
  • fix: Guard getReader function for other fetch implementations (#​13246)
  • fix(feedback): Ensure feedback can be lazy loaded in CDN bundles (#​13241)

v8.23.0

Compare Source

Important Changes
  • feat(cloudflare): Add Cloudflare D1 instrumentation (#​13142)

This release includes support for Cloudflare D1, Cloudflare's serverless SQL database. To instrument your Cloudflare D1
database, use the instrumentD1WithSentry method as follows:

// env.DB is the D1 DB binding configured in your `wrangler.toml`
const db = instrumentD1WithSentry(env.DB);
// Now you can use the database as usual
await db.prepare('SELECT * FROM table WHERE id = ?').bind(1).run();
Other Changes
  • feat(cloudflare): Allow users to pass handler to sentryPagesPlugin (#​13192)
  • feat(cloudflare): Instrument scheduled handler (#​13114)
  • feat(core): Add getTraceData function (#​13134)
  • feat(nestjs): Automatic instrumentation of nestjs interceptors before route execution (#​13153)
  • feat(nestjs): Automatic instrumentation of nestjs pipes (#​13137)
  • feat(nuxt): Filter out Nuxt build assets (#​13148)
  • feat(profiling): Attach sdk info to chunks (#​13145)
  • feat(solidstart): Add sentry onBeforeResponse middleware to enable distributed tracing (#​13221)
  • feat(solidstart): Filter out low quality transactions for build assets (#​13222)
  • fix(browser): Avoid showing browser extension error message in non-window global scopes (#​13156)
  • fix(feedback): Call dialog.close() in dialog close callbacks in \_loadAndRenderDialog (#​13203)
  • fix(nestjs): Inline Observable type to resolve missing 'rxjs' dependency (#​13166)
  • fix(nuxt): Detect pageload by adding flag in Vue router (#​13171)
  • fix(utils): Handle when requests get aborted in fetch instrumentation (#​13202)
  • ref(browser): Improve browserMetrics collection (#​13062)

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

v8.22.0

Compare Source

Important Changes
  • feat(cloudflare): Add plugin for cloudflare pages (#​13123)

This release adds support for Cloudflare Pages to @sentry/cloudflare, our SDK for the
Cloudflare Workers JavaScript Runtime! For details on how to use it,
please see the README. Any feedback/bug reports are greatly appreciated, please
reach out on GitHub.

// functions/_middleware.js
import * as Sentry from '@&#8203;sentry/cloudflare';

export const onRequest = Sentry.sentryPagesPlugin({
  dsn: __PUBLIC_DSN__,
  // Set tracesSampleRate to 1.0 to capture 100% of spans for tracing.
  tracesSampleRate: 1.0,
});
Other Changes
  • feat(meta-sdks): Remove runtime tags (#​13105)
  • feat(nestjs): Automatic instrumentation of nestjs guards (#​13129)
  • feat(nestjs): Filter all HttpExceptions (#​13120)
  • feat(replay): Capture exception when internal_sdk_error client report happens (#​13072)
  • fix: Use globalThis for code injection (#​13132)

v8.21.0

Compare Source

Important Changes
  • Alpha release of Official Cloudflare SDK
    • feat(cloudflare): Add withSentry method (#​13025)
    • feat(cloudflare): Add cloudflare sdk scaffolding (#​12953)
    • feat(cloudflare): Add basic cloudflare package and tests (#​12861)

This release contains the alpha version of @sentry/cloudflare, our SDK for the
Cloudflare Workers JavaScript Runtime! For details on how to use it,
please see the README. Any feedback/bug reports are greatly appreciated, please
reach out on GitHub.

Please note that only Cloudflare Workers are tested and supported - official Cloudflare Pages support will come in an
upcoming release.

Other Changes

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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the renovate label Aug 9, 2023
@codecov
Copy link

codecov bot commented Aug 9, 2023

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 0.00%. Comparing base (f38719f) to head (3fc3309).
Report is 14 commits behind head on master.

Current head 3fc3309 differs from pull request most recent head 169073f

Please upload reports for the commit 169073f to get more accurate results.

Additional details and impacted files
@@            Coverage Diff             @@
##           master   #1325       +/-   ##
==========================================
- Coverage   83.61%       0   -83.62%     
==========================================
  Files          64       0       -64     
  Lines        1422       0     -1422     
  Branches      311       0      -311     
==========================================
- Hits         1189       0     -1189     
+ Misses        232       0      -232     
+ Partials        1       0        -1     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@renovate renovate bot force-pushed the renovate/gatsby branch 3 times, most recently from 8a5c5ba to 89b58f5 Compare August 10, 2023 18:15
@renovate renovate bot changed the title fix(deps): update dependency @sentry/gatsby to ^7.62.0 fix(deps): update dependency @sentry/gatsby to ^7.63.0 Aug 10, 2023
@renovate renovate bot force-pushed the renovate/gatsby branch 3 times, most recently from 15292ff to e86e077 Compare August 13, 2023 13:35
@renovate renovate bot changed the title fix(deps): update dependency @sentry/gatsby to ^7.63.0 fix(deps): update dependency @sentry/gatsby to ^7.64.0 Aug 14, 2023
@renovate renovate bot force-pushed the renovate/gatsby branch 4 times, most recently from ee812d3 to 67837ff Compare August 18, 2023 21:36
@renovate renovate bot changed the title fix(deps): update dependency @sentry/gatsby to ^7.64.0 fix(deps): update dependency @sentry/gatsby to ^7.65.0 Aug 28, 2023
@renovate renovate bot force-pushed the renovate/gatsby branch 4 times, most recently from 23b7c0a to f7afd4f Compare August 30, 2023 14:08
@renovate renovate bot changed the title fix(deps): update dependency @sentry/gatsby to ^7.65.0 fix(deps): update dependency @sentry/gatsby to ^7.66.0 Aug 30, 2023
@renovate renovate bot changed the title fix(deps): update dependency @sentry/gatsby to ^7.66.0 fix(deps): update dependency @sentry/gatsby to ^7.67.0 Sep 5, 2023
@renovate renovate bot changed the title fix(deps): update dependency @sentry/gatsby to ^7.67.0 fix(deps): update dependency @sentry/gatsby to ^7.68.0 Sep 6, 2023
@renovate renovate bot force-pushed the renovate/gatsby branch 4 times, most recently from fc4179a to 3debb57 Compare September 12, 2023 10:29
@renovate renovate bot changed the title fix(deps): update dependency @sentry/gatsby to ^7.68.0 fix(deps): update dependency @sentry/gatsby to ^7.69.0 Sep 13, 2023
@renovate renovate bot changed the title fix(deps): update dependency @sentry/gatsby to ^7.118.0 - autoclosed fix(deps): update dependency @sentry/gatsby to ^7.118.0 Jul 31, 2024
@renovate renovate bot reopened this Jul 31, 2024
@renovate renovate bot restored the renovate/gatsby branch July 31, 2024 12:21
@renovate renovate bot changed the title fix(deps): update dependency @sentry/gatsby to ^7.118.0 fix(deps): update dependency @sentry/gatsby to ^8.21.0 Jul 31, 2024
@renovate renovate bot force-pushed the renovate/gatsby branch 2 times, most recently from 003b1fc to 1d801fc Compare August 1, 2024 09:12
@renovate renovate bot changed the title fix(deps): update dependency @sentry/gatsby to ^8.21.0 fix(deps): update dependency @sentry/gatsby to ^8.22.0 Aug 1, 2024
@renovate renovate bot force-pushed the renovate/gatsby branch 2 times, most recently from 5d6fc6a to 996c9ad Compare August 5, 2024 15:04
@renovate renovate bot changed the title fix(deps): update dependency @sentry/gatsby to ^8.22.0 fix(deps): update dependency @sentry/gatsby to ^8.23.0 Aug 5, 2024
@renovate renovate bot changed the title fix(deps): update dependency @sentry/gatsby to ^8.23.0 fix(deps): update dependency @sentry/gatsby to ^8.24.0 Aug 6, 2024
@renovate renovate bot force-pushed the renovate/gatsby branch 2 times, most recently from cab6221 to 3d9e4b4 Compare August 9, 2024 10:20
@renovate renovate bot changed the title fix(deps): update dependency @sentry/gatsby to ^8.24.0 fix(deps): update dependency @sentry/gatsby to ^8.25.0 Aug 9, 2024
@renovate renovate bot changed the title fix(deps): update dependency @sentry/gatsby to ^8.25.0 fix(deps): update dependency @sentry/gatsby to ^8.26.0 Aug 14, 2024
@renovate renovate bot force-pushed the renovate/gatsby branch 2 times, most recently from 248f1b5 to e2b4b0c Compare August 15, 2024 23:08
@renovate renovate bot changed the title fix(deps): update dependency @sentry/gatsby to ^8.26.0 fix(deps): update dependency @sentry/gatsby to ^8.27.0 Aug 27, 2024
@renovate renovate bot changed the title fix(deps): update dependency @sentry/gatsby to ^8.27.0 fix(deps): update dependency @sentry/gatsby to ^8.28.0 Sep 3, 2024
@renovate renovate bot force-pushed the renovate/gatsby branch 3 times, most recently from 26595cb to d3445d4 Compare September 9, 2024 11:13
@renovate renovate bot changed the title fix(deps): update dependency @sentry/gatsby to ^8.28.0 fix(deps): update dependency @sentry/gatsby to ^8.29.0 Sep 9, 2024
@renovate renovate bot changed the title fix(deps): update dependency @sentry/gatsby to ^8.29.0 fix(deps): update dependency @sentry/gatsby to ^8.30.0 Sep 10, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants