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

chore(deps): update JavaScript SDK to v7.99.0 #3426

Closed
wants to merge 2 commits into from

Conversation

github-actions[bot]
Copy link
Contributor

@github-actions github-actions bot commented Nov 28, 2023

Bumps scripts/update-javascript.sh from 7.81.1 to 7.99.0.

Auto-generated by a dependency updater.

Changelog

7.99.0

Important Changes

Deprecations

This release includes some deprecations for span related methods and integrations in our Deno SDK, sentry/deno. For
more details please look at our
migration guide.

  • feat(core): Deprecate Span.setHttpStatus in favor of setHttpStatus (#10268)
  • feat(core): Deprecate spanStatusfromHttpCode in favour of getSpanStatusFromHttpCode (#10361)
  • feat(core): Deprecate StartSpanOptions.origin in favour of passing attribute (#10274)
  • feat(deno): Expose functional integrations to replace classes (#10355)

Other Changes

  • feat(bun): Add missing sentry/node re-exports (#10396)
  • feat(core): Add afterAllSetup hook for integrations (#10345)
  • feat(core): Ensure startSpan() can handle spans that require parent (#10386)
  • feat(core): Read propagation context off scopes in startSpan APIs (#10300)
  • feat(remix): Export missing sentry/node functions (#10385, #10391)
  • feat(serverless): Add missing sentry/node re-exports (#10390)
  • feat(sveltekit): Add more missing sentry/node re-exports (#10392)
  • feat(tracing): Export proper type for browser tracing (#10411)
  • feat(tracing): Expose new browserTracingIntegration (#10351)
  • fix: Ensure afterAllSetup is called when using addIntegration() (#10372)
  • fix(core): Export spanToTraceContext function from span utils (#10364)
  • fix(core): Make FunctionToString integration use SETUP_CLIENTS weakmap (#10358)
  • fix(deno): Call function if client is not setup (#10354)
  • fix(react): Fix attachReduxState option (#10381)
  • fix(spotlight): Use unpatched http.request (#10369)
  • fix(tracing): Only create request span if there is active span (#10375)
  • ref: Read propagation context off of scope and isolation scope when propagating and applying trace context (#10297)

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

7.98.0

This release primarily fixes some type declaration errors:

  • feat(core): Export IntegrationIndex type (#10337)
  • fix(nextjs): Fix Http integration type declaration (#10338)
  • fix(node): Fix type definitions (#10339)

7.97.0

Note: The 7.96.0 release was incomplete. This release is partially encompassing changes from 7.96.0.

  • feat(react): Add stripBasename option for React Router 6 (#10314)

7.96.0

Note: This release was incomplete. Not all Sentry SDK packages were released for this version. Please upgrade to 7.98.0
directly.

Important Changes

Deprecations

This release includes some deprecations for integrations in sentry/browser and frontend framework SDKs
(sentry/react, sentry/vue, etc.). Please take a look at our
migration guide for more details.

  • feat(browser): Export functional integrations & deprecate classes (#10267)
Web Vitals Fix for LCP and CLS

This release fixes an issue with the Web Vitals integration where LCP and CLS were not being captured correctly,
increasing capture rate by 10-30% for some apps. LCP and CLS capturing issues were introduced with version 7.75.0.

  • fix(tracing): Ensure web vitals are correctly stopped/captured (#10323)

Other Changes

  • fix(node): Fix node-cron types and add test (#10315)
  • fix(node): Fix downleveled types entry point (#10321)
  • fix(node): LocalVariables integration should use setupOnce (#10307)
  • fix(replay): Fix type for options of replayIntegration (#10325)

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

7.95.0

Important Changes

Deprecations

This release includes some deprecations in preparation for v8.

Most notably, it deprecates the Replay & Feedback classes in favor of a functional replacement:

import * as Sentry from 'sentry/browser';

Sentry.init({
  integrations: [
    // Instead of
    new Sentry.Replay(),
    new Sentry.Feedback(),
    // Use the functional replacement:
    Sentry.replayIntegration(),
    Sentry.feedbackIntegration(),
  ],
});
  • feat(core): Deprecate Span.origin in favor of sentry.origin attribute (#10260)
  • feat(core): Deprecate Span.parentSpanId (#10244)
  • feat(core): Expose isInitialized() to replace checking via getClient (#10296)
  • feat(replay): Deprecate Replay, ReplayCanvas, Feedback classes (#10270)
  • feat(wasm): Deprecate Wasm integration class (#10230)

Other Changes

  • feat: Make parameterize function available through browser and node API (#10085)
  • feat(feedback): Configure feedback border radius (#10289)
  • feat(sveltekit): Update default integration handling & deprecate addOrUpdateIntegration (#10263)
  • fix(replay-canvas): Add missing dependency on sentry/utils (#10279)
  • fix(tracing): Don't send negative ttfb (#10286)

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

7.94.1

This release fixes a publishing issue.

7.94.0

Important Changes

Deprecations

As we're moving closer to the next major version of the SDK, more public APIs were deprecated.

To get a head start on migrating to the replacement APIs, please take a look at our
migration guide.

  • feat: Deprecate user segment field (#10210)
  • feat(core): Deprecate finish on Span interface in favour of end (#10161)
  • feat(core): Deprecate getCurrentHub() (#10200)
  • feat(core): Deprecate hub.bindClient() & makeMain() (#10188)
  • feat(core): Deprecate Span.instrumenter (#10139)
  • feat(core): Deprecate Span.isSuccess() in favor of reading span status (#10213)
  • feat(core): Deprecate Span.op in favor of op attribute (#10189)
  • feat(core): Deprecate Span.spanRecorder (#10199)
  • feat(core): Deprecate Span.status (#10208)
  • feat(core): Deprecate Span.transaction in favor of getRootSpan (#10134)
  • feat(core): Deprecate Transaction.instrumenter (#10162)
  • feat(core): Deprecate Transaction.setMeasurement in favor of setMeasurement (#10182)
  • feat(core): Deprecate integration classes & Integrations.X (#10198)
  • feat(core): Deprecate methods on Hub (#10124)
  • feat(core): Deprecate remaining setName declarations on Transaction and Span (#10164)
  • feat(core): Deprecate span startTimestamp & endTimestamp (#10192)
  • feat(core): Deprecate hub.bindClient() and makeMain() (#10118)
  • feat(types): Deprecate op on Span interface (#10217)
  • feat(integrations): Deprecate Transaction integration (#10178)
  • feat(integrations): Deprecate pluggable integration classes (#10211)
Replay & Canvas

We have added a new ReplayCanvas integration (#10112), which you can add to capture the contents of canvas elements
with Replay.

Just add it in addition to the regular replay integration:

Sentry.init({
  integrations: [new Sentry.Replay(), new Sentry.ReplayCanvas()],
});

Other Changes

  • feat(core): Add client.getIntegrationByName() (#10130)
  • feat(core): Add client.init() to replace client.setupIntegrations() (#10118)
  • feat(core): Add withActiveSpan (#10195)
  • feat(core): Add withIsolationScope (#10141)
  • feat(core): Streamline integration function results to be compatible (#10135)
  • feat(core): Write data from setUser, setTags, setExtras, setTag, setExtra, and setContext to isolation
    scope (#10163)
  • feat(core): Add domain information to resource span data #10205
  • feat(feedback): Export sendFeedback from sentry/browser (#10231)
  • feat(node): Update and vendor https-proxy-agent (#10088)
  • feat(node-experimental): Add withActiveSpan (#10194)
  • feat(replays): Add snapshot function to replay canvas integration (#10066)
  • feat(types): Add SerializedEvent interface (pre v8) (#10240)
  • feat(types): Add support for new monitor config thresholds (#10225)
  • fix: Ensure all integration classes have correct types (#10183)
  • fix(astro): Fix import path when using external init files with default path (#10214)
  • fix(cdn): Emit console warning instead of error for integration shims (#10193)
  • fix(core): Take user from current scope when starting a session (#10153)
  • fix(node-experimental): Ensure http.status_code is always a string (#10177)
  • fix(node): Guard against process.argv[1] being undefined (#10155)
  • fix(node): Module name resolution (#10144)
  • fix(node): Remove leading slash in Windows filenames (#10147)
  • fix(remix): Capture thrown fetch responses. (#10166)
  • fix(tracing): Gate mongo operation span data behind sendDefaultPii (#10227)
  • fix(tracing-internal): Delay pageload transaction finish until document is interactive (#10215)
  • fix(tracing-internal): Only collect request/response spans when browser performance timing is available (#10207)
  • fix(tracing-internal): Prefer fetch init headers over fetch input headers (#10176)
  • fix(utils): Ensure dropUndefinedKeys() does not break class instances (#10245)

7.93.0

Important Changes

Deprecations

As we're moving closer to the next major version of the SDK, more public APIs were deprecated.

To get a head start on migrating to the replacement APIs, please take a look at our
migration guide.

  • feat(core): Deprecate getActiveTransaction() & scope.getTransaction() (#10098)
  • feat(core): Deprecate Hub.shouldSendDefaultPii (#10062)
  • feat(core): Deprecate new Transaction() (#10125)
  • feat(core): Deprecate scope.getSpan() & scope.setSpan() (#10114)
  • feat(core): Deprecate scope.setTransactionName() (#10113)
  • feat(core): Deprecate span.startChild() (#10091)
  • feat(core): Deprecate startTransaction() (#10073)
  • feat(core): Deprecate Transaction.getDynamicSamplingContext in favor of getDynamicSamplingContextFromSpan (#10094)
  • feat(core): Deprecate arguments for startSpan() (#10101)
  • feat(core): Deprecate hub capture APIs and add them to Scope (#10039)
  • feat(core): Deprecate session APIs on hub and add global replacements (#10054)
  • feat(core): Deprecate span name and description (#10056)
  • feat(core): Deprecate span tags, data, context & setters (#10053)
  • feat(core): Deprecate transaction metadata in favor of attributes (#10097)
  • feat(core): Deprecate span.sampled in favor of span.isRecording() (#10034)
  • ref(node-experimental): Deprecate lastEventId on scope (#10093)
Cron Monitoring Support for node-schedule library

This release adds auto instrumented check-ins for the node-schedule library.

import * as Sentry from 'sentry/node';
import * as schedule from 'node-schedule';

const scheduleWithCheckIn = Sentry.cron.instrumentNodeSchedule(schedule);

const job = scheduleWithCheckIn.scheduleJob('my-cron-job', '* * * * *', () => {
  console.log('You will see this message every minute');
});
  • feat(node): Instrumentation for node-schedule library (#10086)

Other Changes

  • feat(core): Add span.spanContext() (#10037)
  • feat(core): Add spanToJSON() method to get span properties (#10074)
  • feat(core): Allow to pass scope to startSpan APIs (#10076)
  • feat(core): Allow to pass start/end timestamp for spans flexibly (#10060)
  • feat(node): Make getModuleFromFilename compatible with ESM (#10061)
  • feat(replay): Update rrweb to 2.7.3 (#10072)
  • feat(utils): Add parameterize function (#9145)
  • fix(astro): Use correct package name for CF (#10099)
  • fix(core): Do not run setup for integration on client multiple times (#10116)
  • fix(core): Ensure we copy passed in span data/tags/attributes (#10105)
  • fix(cron): Make name required for instrumentNodeCron option (#10070)
  • fix(nextjs): Don't capture not-found and redirect errors in generation functions (#10057)
  • fix(node): LocalVariables integration should have correct name (#10084)
  • fix(node): Anr events should have an event_id (#10068)
  • fix(node): Revert to only use sync debugger for LocalVariables (#10077)
  • fix(node): Update ANR min node version to v16.17.0 (#10107)

7.92.0

Important Changes

Deprecations
  • feat(core): Add span.updateName() and deprecate span.setName() (#10018)
  • feat(core): Deprecate span.getTraceContext() (#10032)
  • feat(core): Deprecate span.toTraceparent() in favor of spanToTraceHeader() util (#10031)
  • feat(core): Deprecate trace in favor of startSpan (#10012)
  • feat(core): Deprecate span toContext() and updateWithContext() (#10030)
  • ref: Deprecate deepReadDirSync (#10016)
  • ref: Deprecate lastEventId() (#10043)

Please take a look at the Migration docs for more details. These methods will be removed in the
upcoming v8 major release.

Cron Monitoring Support for cron and node-cron libraries
  • feat(node): Instrumentation for cron library (#9999)
  • feat(node): Instrumentation for node-cron library (#9904)

This release adds instrumentation for the cron and node-cron libraries. This allows you to monitor your cron jobs
with Sentry cron monitors.

For cron:

import * as Sentry from 'sentry/node';
import { CronJob } from 'cron';

const CronJobWithCheckIn = Sentry.cron.instrumentCron(CronJob, 'my-cron-job');

// use the constructor
const job = new CronJobWithCheckIn('* * * * *', () => {
  console.log('You will see this message every minute');
});

// or from
const job = CronJobWithCheckIn.from({
  cronTime: '* * * * *',
  onTick: () => {
    console.log('You will see this message every minute');
  },
});

For node-cron:

import * as Sentry from 'sentry/node';
import cron from 'node-cron';

const cronWithCheckIn = Sentry.cron.instrumentNodeCron(cron);

cronWithCheckIn.schedule(
  '* * * * *',
  () => {
    console.log('running a task every minute');
  },
  { name: 'my-cron-job' },
);

Other Changes

  • feat(astro): Add enabled option to Astro integration options (#10007)
  • feat(core): Add attributes to Span (#10008)
  • feat(core): Add setClient() and getClient() to Scope (#10055)
  • feat(integrations): Capture error cause with captureErrorCause in ExtraErrorData integration (#9914)
  • feat(node-experimental): Allow to pass base span options to trace methods (#10006)
  • feat(node): Local variables via async inspector in node 19+ (#9962)
  • fix(astro): handle commonjs related issues (#10042)
  • fix(astro): Handle non-utf8 encoded streams in middleware (#9989)
  • fix(astro): prevent sentry from externalized (#9994)
  • fix(core): Ensure withScope sets current scope correctly with async callbacks (#9974)
  • fix(node): ANR fixes and additions (#9998)
  • fix(node): Anr should not block exit (#10035)
  • fix(node): Correctly resolve module name (#10001)
  • fix(node): Handle inspector already open (#10025)
  • fix(node): Make NODE_VERSION properties required (#9964)
  • fix(node): Anr doesn't block exit (#10064)
  • fix(utils): use correct typeof URL validation (#10028)
  • perf(astro): reduce unnecessary path resolutions (#10021)
  • ref(astro): Use astro logger instead of console (#9995)
  • ref(remix): Isolate Express instrumentation from server auto-instrumentation. (#9966)

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

7.91.0

Important Changes

  • feat: Add server runtime metrics aggregator (#9894)

The release adds alpha support for Sentry developer metrics in
the server runtime SDKs (sentry/node, sentry/deno, sentry/nextjs server-side, etc.). Via the newly introduced
APIs, you can now flush metrics directly to Sentry.

To enable capturing metrics, you first need to add the metricsAggregator experiment to your Sentry.init call.

Sentry.init({
  dsn: '__DSN__',
  _experiments: {
    metricsAggregator: true,
  },
});

Then you'll be able to add counters, sets, distributions, and gauges under the Sentry.metrics namespace.

// Add 4 to a counter named `hits`
Sentry.metrics.increment('hits', 4);

// Add 2 to gauge named `parallel_requests`, tagged with `type: "a"`
Sentry.metrics.gauge('parallel_requests', 2, { tags: { type: 'a' } });

// Add 4.6 to a distribution named `response_time` with unit seconds
Sentry.metrics.distribution('response_time', 4.6, { unit: 'seconds' });

// Add 2 to a set named `valuable.ids`
Sentry.metrics.set('valuable.ids', 2);
  • feat(node): Rework ANR to use worker script via an integration (#9945)

The ANR tracking integration for Node
has been reworked to use an integration. ANR tracking now requires a minimum Node version of 16 or higher. Previously
you had to call Sentry.enableANRDetection before running your application, now you can simply add the Anr
integration to your Sentry.init call.

import * as Sentry from 'sentry/node';

Sentry.init({
  dsn: 'https://publicdsn.ingest.sentry.io/1337',
  integrations: [new Sentry.Integrations.Anr({ captureStackTrace: true, anrThreshold: 200 })],
});

Other Changes

  • feat(breadcrumbs): Send component names on UI breadcrumbs (#9946)
  • feat(core): Add getGlobalScope() method (#9920)
  • feat(core): Add getIsolationScope() method (#9957)
  • feat(core): Add span.end() to replace span.finish() (#9954)
  • feat(core): Ensure startSpan & startSpanManual fork scope (#9955)
  • feat(react): Send component name on spans (#9949)
  • feat(replay): Send component names in replay breadcrumbs (#9947)
  • feat(sveltekit): Add options to configure fetch instrumentation script for CSP (#9969)
  • feat(tracing): Send component name on interaction spans (#9948)
  • feat(utils): Add function to extract relevant component name (#9921)
  • fix(core): Rethrow caught promise rejections in startSpan, startSpanManual, trace (#9958)

7.90.0

  • feat(replay): Change to use preset quality values (#9903)
  • fix(replay): Adjust development hydration error messages (#9922)
  • fix(sveltekit): Add types field to package.json exports (#9926)

7.89.0

Important Changes

Deprecations
  • feat(core): Deprecate configureScope (#9887)
  • feat(core): Deprecate pushScope & popScope (#9890)

This release deprecates configureScope, pushScope, and popScope, which will be removed in the upcoming v8 major
release.

Hapi Integration
  • feat(node): Add Hapi Integration (#9539)

This release adds an integration for Hapi. It can be used as follows:

const Sentry = require('sentry/node');
const Hapi = require('hapi/hapi');

const init = async () => {
  const server = Hapi.server({
    // your server configuration ...
  });

  Sentry.init({
    dsn: '__DSN__',
    tracesSampleRate: 1.0,
    integrations: [new Sentry.Integrations.Hapi({ server })],
  });

  server.route({
    // your route configuration ...
  });

  await server.start();
};
SvelteKit 2.0
  • chore(sveltekit): Add SvelteKit 2.0 to peer dependencies (#9861)

This release adds support for SvelteKit 2.0 in the sentry/sveltekit package. If you're upgrading from SvelteKit 1.x
to 2.x and already use the Sentry SvelteKit SDK, no changes apart from upgrading to this (or a newer) version are
necessary.

Other Changes

  • feat(core): Add type & utility for function-based integrations (#9818)
  • feat(core): Update withScope to return callback return value (#9866)
  • feat(deno): Support Deno.CronSchedule for cron jobs (#9880)
  • feat(nextjs): Auto instrument generation functions (#9781)
  • feat(nextjs): Connect server component transactions if there is no incoming trace (#9845)
  • feat(node-experimental): Update to new Scope APIs (#9799)
  • feat(replay): Add canvas.type setting (#9877)
  • fix(nextjs): Export createReduxEnhancer (#9854)
  • fix(remix): Do not capture thrown redirect responses. (#9909)
  • fix(sveltekit): Add conditional exports (#9872)
  • fix(sveltekit): Avoid capturing 404 errors on client side (#9902)
  • fix(utils): Do not use Event type in worldwide (#9864)
  • fix(utils): Support crypto.getRandomValues in old Chromium versions (#9251)
  • fix(utils): Update eventFromUnknownInput to avoid scope pollution & getCurrentHub (#9868)
  • ref: Use addBreadcrumb directly & allow to pass hint (#9867)

Work in this release contributed by adam187, and jghinestrosa. Thank you for your contributions!

7.88.0

Important Changes

  • feat(browser): Add browser metrics sdk (#9794)

The release adds alpha support for Sentry developer metrics in
the Browser SDKs (sentry/browser and related framework SDKs). Via the newly introduced APIs, you can now flush
metrics directly to Sentry.

To enable capturing metrics, you first need to add the MetricsAggregator integration.

Sentry.init({
  dsn: '__DSN__',
  integrations: [new Sentry.metrics.MetricsAggregator()],
});

Then you'll be able to add counters, sets, distributions, and gauges under the Sentry.metrics namespace.

// Add 4 to a counter named `hits`
Sentry.metrics.increment('hits', 4);

// Add 2 to gauge named `parallel_requests`, tagged with `happy: "no"`
Sentry.metrics.gauge('parallel_requests', 2, { tags: { happy: 'no' } });

// Add 4.6 to a distribution named `response_time` with unit seconds
Sentry.metrics.distribution('response_time', 4.6, { unit: 'seconds' });

// Add 2 to a set named `valuable.ids`
Sentry.metrics.set('valuable.ids', 2);

In a future release we'll add support for server runtimes (Node, Deno, Bun, Vercel Edge, etc.)

  • feat(deno): Optionally instrument Deno.cron (#9808)

This releases add support for instrumenting Deno cron's with
Sentry cron monitors. This requires v1.38 of Deno run with the --unstable
flag and the usage of the DenoCron Sentry integration.

// Import from the Deno registry
import * as Sentry from 'https://deno.land/x/sentry/index.mjs';

Sentry.init({
  dsn: '__DSN__',
  integrations: [new Sentry.DenoCron()],
});

Other Changes

  • feat(replay): Bump rrweb to 2.6.0 (#9847)
  • fix(nextjs): Guard against injecting multiple times (#9807)
  • ref(remix): Bump Sentry CLI to ^2.23.0 (#9773)

7.87.0

  • feat: Add top level getCurrentScope() method (#9800)
  • feat(replay): Bump rrweb to 2.5.0 (#9803)
  • feat(replay): Capture hydration error breadcrumb (#9759)
  • feat(types): Add profile envelope types (#9798)
  • fix(astro): Avoid RegExp creation during route interpolation (#9815)
  • fix(browser): Avoid importing from ./exports (#9775)
  • fix(nextjs): Catch rejecting flushes (#9811)
  • fix(nextjs): Fix devserver CORS blockage when assetPrefix is defined (#9766)
  • fix(node): Capture errors in tRPC middleware (#9782)

7.86.0

  • feat(core): Use SDK_VERSION for hub API version (#9732)
  • feat(nextjs): Emit warning if your app directory doesn't have a global-error.js file (#9753)
  • feat(node): Add cloudflare pages commit sha (#9751)
  • feat(remix): Bump sentry/cli to 2.22.3 (#9741)
  • fix(nextjs): Don't accidentally trigger static generation bailout (#9749)
  • fix(node): Guard process.env.NODE_ENV access in Spotlight integration (#9748)
  • fix(utils): Fix XHR instrumentation early return (#9770)
  • ref(remix): Rework Error Handling (#9725)

7.85.0

  • feat(core): Add addEventProcessor method (#9554)
  • feat(crons): Add interface for heartbeat checkin (#9706)
  • feat(feedback): Include Feedback package in browser SDK (#9586)
  • fix(astro): Isolate request instrumentation in middleware (#9709)
  • fix(replay): Capture JSON XHR response bodies (#9623)
  • ref(feedback): Change form box-shadow to use CSS var (#9630)

7.84.0

Important Changes

  • ref(nextjs): Set automaticVercelMonitors to be false by default (#9697)

From this version onwards the default for the automaticVercelMonitors option in the Next.js SDK is set to false.
Previously, if you made use of Vercel Crons the SDK automatically instrumented the relevant routes to create Sentry
monitors. Because this feature will soon be generally available, we are now flipping the default to avoid situations
where quota is used unexpectedly.

If you want to continue using this feature, make sure to set the automaticVercelMonitors flag to true in your
next.config.js Sentry settings.

Other Changes

  • chore(astro): Add 4.0.0 preview versions to astro peer dependency range (#9696)
  • feat(metrics): Add interfaces for metrics (#9698)
  • feat(web-vitals): Vendor in INP from web-vitals library (#9690)
  • fix(astro): Avoid adding the Sentry Vite plugin in dev mode (#9688)
  • fix(nextjs): Don't match files called middleware in node_modules (#9686)
  • fix(remix): Don't capture error responses that are not 5xx on Remix v2. (#9655)
  • fix(tracing): Don't attach resource size if null (#9669)
  • fix(utils): Regex match port to stop accidental replace (#9676)
  • fix(utils): Try catch new URL when extracting query params (#9675)

7.83.0

  • chore(astro): Allow Astro 4.0 in peer dependencies (#9683)
  • feat(astro): Add assets option to source maps upload options (#9668)
  • feat(react): Support exactOptionalPropertyTypes on ErrorBoundary (#9098)
  • fix: Don't depend on browser types in types (#9682)
  • fix(astro): Configure sourcemap assets directory for Vercel adapter (#9665)
  • fix(remix): Check the error data before spreading. (#9664)

7.82.0

  • feat(astro): Automatically add Sentry middleware in Astro integration (#9532)
  • feat(core): Add optional setup hook to integrations (#9556)
  • feat(core): Add top level getClient() method (#9638)
  • feat(core): Allow to pass mechanism as event hint (#9590)
  • feat(core): Allow to use continueTrace without callback (#9615)
  • feat(feedback): Add onClose callback to showReportDialog (#9433) (#9550)
  • feat(nextjs): Add request data to all edge-capable functionalities (#9636)
  • feat(node): Add Spotlight option to Node SDK (#9629)
  • feat(utils): Refactor addInstrumentationHandler to dedicated methods (#9542)
  • fix: Make full url customizable for Spotlight (#9652)
  • fix(astro): Remove Auth Token existence check (#9651)
  • fix(nextjs): Fix middleware detection logic (#9637)
  • fix(remix): Skip capturing aborted requests (#9659)
  • fix(replay): Add BODY_PARSE_ERROR warning & time out fetch response load (#9622)
  • fix(tracing): Filter out invalid resource sizes (#9641)
  • ref: Hoist RequestData integration to sentry/core (#9597)
  • ref(feedback): Rename onDialog* to onForm*, remove onActorClick (#9625)

Work in this release contributed by arya-s. Thank you for your contribution!

@github-actions github-actions bot added the dependencies Pull requests that update a dependency file label Nov 28, 2023
@bruno-garcia bruno-garcia force-pushed the deps/scripts/update-javascript.sh branch from 64df111 to 6079e75 Compare November 28, 2023 03:03
@github-actions github-actions bot changed the title chore(deps): update JavaScript SDK to v7.82.0 chore(deps): update JavaScript SDK to v7.83.0 Nov 29, 2023
@bruno-garcia bruno-garcia force-pushed the deps/scripts/update-javascript.sh branch from 6079e75 to eeba647 Compare November 29, 2023 03:03
Copy link
Contributor Author

github-actions bot commented Nov 29, 2023

Android (new) Performance metrics 🚀

  Plain With Sentry Diff
Startup time 346.35 ms 358.48 ms 12.13 ms
Size 7.15 MiB 8.16 MiB 1.01 MiB

Baseline results on branch: main

Startup times

Revision Plain With Sentry Diff
abb7058+dirty 320.78 ms 324.08 ms 3.30 ms
dadc233+dirty 363.19 ms 370.37 ms 7.18 ms
ad6c299+dirty 336.47 ms 362.89 ms 26.42 ms
d361d38+dirty 257.72 ms 318.76 ms 61.04 ms
e2b64fe+dirty 258.82 ms 304.26 ms 45.44 ms
e5c9b8b+dirty 335.40 ms 360.06 ms 24.67 ms
457e29f+dirty 591.49 ms 612.96 ms 21.47 ms
2534337+dirty 597.14 ms 665.04 ms 67.90 ms
70caa60+dirty 308.83 ms 393.06 ms 84.23 ms
5446992+dirty 371.61 ms 390.00 ms 18.39 ms

App size

Revision Plain With Sentry Diff
abb7058+dirty 7.15 MiB 8.10 MiB 980.40 KiB
dadc233+dirty 7.15 MiB 8.04 MiB 910.84 KiB
ad6c299+dirty 7.15 MiB 8.04 MiB 912.17 KiB
d361d38+dirty 7.15 MiB 8.08 MiB 959.34 KiB
e2b64fe+dirty 7.15 MiB 8.07 MiB 947.16 KiB
e5c9b8b+dirty 7.15 MiB 8.10 MiB 980.41 KiB
457e29f+dirty 7.15 MiB 8.10 MiB 981.29 KiB
2534337+dirty 7.15 MiB 8.11 MiB 988.68 KiB
70caa60+dirty 7.15 MiB 8.03 MiB 901.79 KiB
5446992+dirty 7.15 MiB 8.12 MiB 999.45 KiB

Previous results on branch: deps/scripts/update-javascript.sh

Startup times

Revision Plain With Sentry Diff
45b1e94+dirty 337.71 ms 358.25 ms 20.54 ms
2f190d7+dirty 363.63 ms 370.58 ms 6.95 ms
d70b1d5+dirty 351.40 ms 383.04 ms 31.64 ms
04349b0+dirty 333.83 ms 366.86 ms 33.02 ms
6750c69+dirty 277.10 ms 322.10 ms 45.00 ms
0e781a5+dirty 267.70 ms 357.64 ms 89.94 ms
ac92119+dirty 361.96 ms 387.59 ms 25.63 ms
6f9eae7+dirty 346.26 ms 417.65 ms 71.40 ms
8a5e51c+dirty 264.02 ms 308.77 ms 44.75 ms
de7c573+dirty 276.68 ms 349.70 ms 73.02 ms

App size

Revision Plain With Sentry Diff
45b1e94+dirty 7.15 MiB 8.12 MiB 997.81 KiB
2f190d7+dirty 7.15 MiB 8.12 MiB 1000.73 KiB
d70b1d5+dirty 7.15 MiB 8.10 MiB 979.85 KiB
04349b0+dirty 7.15 MiB 8.10 MiB 977.92 KiB
6750c69+dirty 7.15 MiB 8.10 MiB 971.75 KiB
0e781a5+dirty 7.15 MiB 8.07 MiB 946.50 KiB
ac92119+dirty 7.15 MiB 8.13 MiB 1001.74 KiB
6f9eae7+dirty 7.15 MiB 8.04 MiB 913.76 KiB
8a5e51c+dirty 7.15 MiB 8.07 MiB 947.35 KiB
de7c573+dirty 7.15 MiB 8.09 MiB 970.82 KiB

@bruno-garcia bruno-garcia force-pushed the deps/scripts/update-javascript.sh branch from eeba647 to 74293eb Compare November 29, 2023 16:09
@github-actions github-actions bot changed the title chore(deps): update JavaScript SDK to v7.83.0 chore(deps): update JavaScript SDK to v7.84.0 Nov 30, 2023
@bruno-garcia bruno-garcia force-pushed the deps/scripts/update-javascript.sh branch 6 times, most recently from 1bc192a to 5de96c8 Compare December 4, 2023 12:59
Copy link
Member

@krystofwoldrich krystofwoldrich left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Causes

TypeError: Cannot read property 'prototype' of undefined, js engine: hermes

@github-actions github-actions bot changed the title chore(deps): update JavaScript SDK to v7.84.0 chore(deps): update JavaScript SDK to v7.85.0 Dec 5, 2023
@bruno-garcia bruno-garcia force-pushed the deps/scripts/update-javascript.sh branch 5 times, most recently from 879940d to f7c216e Compare December 7, 2023 10:51
@github-actions github-actions bot changed the title chore(deps): update JavaScript SDK to v7.85.0 chore(deps): update JavaScript SDK to v7.86.0 Dec 8, 2023
@bruno-garcia bruno-garcia force-pushed the deps/scripts/update-javascript.sh branch from f7c216e to 332bc8a Compare December 8, 2023 03:02
@github-actions github-actions bot changed the title chore(deps): update JavaScript SDK to v7.86.0 chore(deps): update JavaScript SDK to v7.87.0 Dec 14, 2023
@bruno-garcia bruno-garcia force-pushed the deps/scripts/update-javascript.sh branch from 332bc8a to a7f17d3 Compare December 14, 2023 03:02
Copy link
Contributor Author

github-actions bot commented Dec 14, 2023

Android (legacy) Performance metrics 🚀

  Plain With Sentry Diff
Startup time 399.53 ms 419.70 ms 20.16 ms
Size 17.73 MiB 19.89 MiB 2.16 MiB

Baseline results on branch: main

Startup times

Revision Plain With Sentry Diff
728164b 414.34 ms 449.22 ms 34.88 ms
34aba08 328.10 ms 342.84 ms 14.74 ms
b1e8712 462.11 ms 465.71 ms 3.60 ms
e73f4ed+dirty 332.96 ms 354.33 ms 21.37 ms
9433f35 347.64 ms 356.22 ms 8.58 ms
457e29f 398.10 ms 421.39 ms 23.29 ms
86d6d2c+dirty 332.90 ms 352.45 ms 19.55 ms
3853f43 329.68 ms 346.32 ms 16.64 ms
2534337 394.15 ms 415.12 ms 20.97 ms
3ffcddd 302.92 ms 315.80 ms 12.88 ms

App size

Revision Plain With Sentry Diff
728164b 17.73 MiB 19.85 MiB 2.12 MiB
34aba08 17.73 MiB 19.80 MiB 2.07 MiB
b1e8712 17.73 MiB 19.75 MiB 2.02 MiB
e73f4ed+dirty 17.73 MiB 20.04 MiB 2.31 MiB
9433f35 17.73 MiB 19.81 MiB 2.08 MiB
457e29f 17.73 MiB 19.84 MiB 2.10 MiB
86d6d2c+dirty 17.73 MiB 20.04 MiB 2.31 MiB
3853f43 17.73 MiB 19.81 MiB 2.08 MiB
2534337 17.73 MiB 19.84 MiB 2.11 MiB
3ffcddd 17.73 MiB 19.75 MiB 2.02 MiB

Previous results on branch: deps/scripts/update-javascript.sh

Startup times

Revision Plain With Sentry Diff
d70b1d5 370.98 ms 385.73 ms 14.75 ms
98fe518+dirty 334.39 ms 349.35 ms 14.96 ms
60ceb06 329.83 ms 336.19 ms 6.36 ms
ac92119 437.77 ms 465.12 ms 27.35 ms
de7c573 349.67 ms 369.54 ms 19.87 ms
8a5e51c 340.25 ms 347.10 ms 6.85 ms
6f9eae7 353.08 ms 360.29 ms 7.21 ms
dd975cb 365.80 ms 365.90 ms 0.10 ms
04349b0+dirty 347.00 ms 354.78 ms 7.78 ms
6750c69+dirty 393.45 ms 434.06 ms 40.62 ms

App size

Revision Plain With Sentry Diff
d70b1d5 17.73 MiB 19.83 MiB 2.10 MiB
98fe518+dirty 17.73 MiB 19.75 MiB 2.02 MiB
60ceb06 17.73 MiB 19.77 MiB 2.03 MiB
ac92119 17.73 MiB 19.86 MiB 2.12 MiB
de7c573 17.73 MiB 19.83 MiB 2.09 MiB
8a5e51c 17.73 MiB 19.80 MiB 2.07 MiB
6f9eae7 17.73 MiB 19.76 MiB 2.02 MiB
dd975cb 17.73 MiB 19.84 MiB 2.10 MiB
04349b0+dirty 17.73 MiB 20.06 MiB 2.32 MiB
6750c69+dirty 17.73 MiB 20.05 MiB 2.32 MiB

@github-actions github-actions bot changed the title chore(deps): update JavaScript SDK to v7.87.0 chore(deps): update JavaScript SDK to v7.88.0 Dec 15, 2023
@bruno-garcia bruno-garcia force-pushed the deps/scripts/update-javascript.sh branch from a7f17d3 to a5ccb08 Compare December 15, 2023 03:02
Copy link
Contributor Author

github-actions bot commented Dec 15, 2023

iOS (legacy) Performance metrics 🚀

  Plain With Sentry Diff
Startup time 1192.47 ms 1199.29 ms 6.82 ms
Size 2.36 MiB 2.90 MiB 552.90 KiB

Baseline results on branch: main

Startup times

Revision Plain With Sentry Diff
9433f35+dirty 1246.94 ms 1271.45 ms 24.52 ms
9c48b2c+dirty 1246.96 ms 1255.73 ms 8.77 ms
1d86dd6+dirty 1249.71 ms 1279.16 ms 29.45 ms
d361d38+dirty 1246.04 ms 1267.12 ms 21.08 ms
12427f4+dirty 1267.15 ms 1271.30 ms 4.15 ms
6e8584e+dirty 1274.50 ms 1296.82 ms 22.32 ms
3ffcddd+dirty 1244.47 ms 1264.14 ms 19.67 ms
22e31b6+dirty 1253.62 ms 1265.96 ms 12.34 ms
0677344+dirty 1276.70 ms 1300.07 ms 23.37 ms
3853f43+dirty 1221.82 ms 1242.64 ms 20.82 ms

App size

Revision Plain With Sentry Diff
9433f35+dirty 2.36 MiB 2.85 MiB 499.80 KiB
9c48b2c+dirty 2.36 MiB 2.85 MiB 495.77 KiB
1d86dd6+dirty 2.36 MiB 2.89 MiB 535.43 KiB
d361d38+dirty 2.36 MiB 2.85 MiB 499.84 KiB
12427f4+dirty 2.36 MiB 2.88 MiB 530.38 KiB
6e8584e+dirty 2.36 MiB 2.88 MiB 533.17 KiB
3ffcddd+dirty 2.36 MiB 2.84 MiB 489.60 KiB
22e31b6+dirty 2.36 MiB 2.87 MiB 520.67 KiB
0677344+dirty 2.36 MiB 2.85 MiB 496.81 KiB
3853f43+dirty 2.36 MiB 2.85 MiB 499.81 KiB

Previous results on branch: deps/scripts/update-javascript.sh

Startup times

Revision Plain With Sentry Diff
45b1e94+dirty 1247.84 ms 1262.72 ms 14.88 ms
6750c69+dirty 1242.69 ms 1256.00 ms 13.31 ms
6f9eae7+dirty 1266.06 ms 1271.48 ms 5.42 ms
ac92119+dirty 1251.82 ms 1264.60 ms 12.78 ms
0e781a5+dirty 1244.59 ms 1256.72 ms 12.13 ms
d70b1d5+dirty 1246.45 ms 1271.20 ms 24.75 ms
de7c573+dirty 1263.92 ms 1268.14 ms 4.22 ms
8a5e51c+dirty 1275.38 ms 1307.88 ms 32.49 ms
60ceb06+dirty 1230.88 ms 1250.42 ms 19.54 ms
04349b0+dirty 1273.22 ms 1281.90 ms 8.68 ms

App size

Revision Plain With Sentry Diff
45b1e94+dirty 2.36 MiB 2.88 MiB 530.45 KiB
6750c69+dirty 2.36 MiB 2.83 MiB 477.50 KiB
6f9eae7+dirty 2.36 MiB 2.84 MiB 489.62 KiB
ac92119+dirty 2.36 MiB 2.88 MiB 532.98 KiB
0e781a5+dirty 2.36 MiB 2.85 MiB 495.46 KiB
d70b1d5+dirty 2.36 MiB 2.87 MiB 520.36 KiB
de7c573+dirty 2.36 MiB 2.86 MiB 512.62 KiB
8a5e51c+dirty 2.36 MiB 2.85 MiB 495.71 KiB
60ceb06+dirty 2.36 MiB 2.85 MiB 495.35 KiB
04349b0+dirty 2.36 MiB 2.83 MiB 480.92 KiB

@bruno-garcia bruno-garcia force-pushed the deps/scripts/update-javascript.sh branch 6 times, most recently from 915089c to 50e784e Compare January 19, 2024 14:26
@github-actions github-actions bot changed the title chore(deps): update JavaScript SDK to v7.93.0 chore(deps): update JavaScript SDK to v7.94.1 Jan 19, 2024
@bruno-garcia bruno-garcia force-pushed the deps/scripts/update-javascript.sh branch 6 times, most recently from 06a99cc to 8026a62 Compare January 23, 2024 18:09
@github-actions github-actions bot changed the title chore(deps): update JavaScript SDK to v7.94.1 chore(deps): update JavaScript SDK to v7.95.0 Jan 24, 2024
@bruno-garcia bruno-garcia force-pushed the deps/scripts/update-javascript.sh branch 4 times, most recently from c279fe1 to 536aa2d Compare January 26, 2024 03:03
@github-actions github-actions bot changed the title chore(deps): update JavaScript SDK to v7.95.0 chore(deps): update JavaScript SDK to v7.98.0 Jan 26, 2024
@bruno-garcia bruno-garcia force-pushed the deps/scripts/update-javascript.sh branch 2 times, most recently from fd0633c to 7e0f699 Compare January 31, 2024 03:03
@github-actions github-actions bot changed the title chore(deps): update JavaScript SDK to v7.98.0 chore(deps): update JavaScript SDK to v7.99.0 Jan 31, 2024
@bruno-garcia bruno-garcia force-pushed the deps/scripts/update-javascript.sh branch 3 times, most recently from acd39bb to acf5cc6 Compare January 31, 2024 11:05
@bruno-garcia bruno-garcia force-pushed the deps/scripts/update-javascript.sh branch from acf5cc6 to f3a779c Compare January 31, 2024 11:07
@krystofwoldrich krystofwoldrich deleted the deps/scripts/update-javascript.sh branch February 12, 2024 14:53
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants