Ruffpuff1 / foxxie

https://foxxie.reese.gay
MIT License
5 stars 2 forks source link

chore(deps): update dependency @sentry/node to v7 #558

Closed renovate[bot] closed 2 years ago

renovate[bot] commented 2 years ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@sentry/node ^6.19.6 -> ^7.0.0 age adoption passing confidence

Release Notes

getsentry/sentry-javascript ### [`v7.2.0`](https://togithub.com/getsentry/sentry-javascript/blob/HEAD/CHANGELOG.md#​720) [Compare Source](https://togithub.com/getsentry/sentry-javascript/compare/7.1.1...7.2.0) - feat(angular): Add Angular 14 support ([#​5253](https://togithub.com/getsentry/sentry-javascript/issues/5253)) - feat(tracing): GraphQL and Apollo Integrations ([#​3953](https://togithub.com/getsentry/sentry-javascript/issues/3953)) - fix(docs): Adjust hash-link to propagation-of-baggage-header ([#​5235](https://togithub.com/getsentry/sentry-javascript/issues/5235)) - fix(docs): Update MIGRATION for SeverityLevel ([#​5225](https://togithub.com/getsentry/sentry-javascript/issues/5225)) - fix(nextjs): Export `showReportDialog` from NextJS SDK ([#​5242](https://togithub.com/getsentry/sentry-javascript/issues/5242)) - fix(vue): Accounts for undefined options when formatting component name ([#​5254](https://togithub.com/getsentry/sentry-javascript/issues/5254)) - ref(node): Move request-data-extraction functions to`@sentry/utils` ([#​5257](https://togithub.com/getsentry/sentry-javascript/issues/5257)) - ref(tracing): Check and set mutability of baggage ([#​5205](https://togithub.com/getsentry/sentry-javascript/issues/5205)) - ref(tracing): Sync baggage data in Http and envelope headers ([#​5218](https://togithub.com/getsentry/sentry-javascript/issues/5218)) - chore(angular): Add Angular version to event contexts ([#​5260](https://togithub.com/getsentry/sentry-javascript/issues/5260)) - chore(core): Remove circular JSON debugging hacks ([#​5267](https://togithub.com/getsentry/sentry-javascript/issues/5267)) - chore(integrations): Add trace to CONSOLE_LEVELS ([#​5249](https://togithub.com/getsentry/sentry-javascript/issues/5249)) Work in this release contributed by [@​Arinono](https://togithub.com/Arinono) and [@​slaesh](https://togithub.com/slaesh). Thank you for your contributions! ### [`v7.1.1`](https://togithub.com/getsentry/sentry-javascript/blob/HEAD/CHANGELOG.md#​711) [Compare Source](https://togithub.com/getsentry/sentry-javascript/compare/7.1.0...7.1.1) - **Revert** "ref(node): Move non-handler code out of handlers module" ([#​5223](https://togithub.com/getsentry/sentry-javascript/issues/5223)) - fix(types): Vendor in TextEncoderCommon type ([#​5221](https://togithub.com/getsentry/sentry-javascript/issues/5221)) ### [`v7.1.0`](https://togithub.com/getsentry/sentry-javascript/blob/HEAD/CHANGELOG.md#​710) [Compare Source](https://togithub.com/getsentry/sentry-javascript/compare/7.0.0...7.1.0) - feat(tracing): Propagate environment and release values in baggage Http headers ([#​5193](https://togithub.com/getsentry/sentry-javascript/issues/5193)) - feat(node): Compression support for `http` transport ([#​5209](https://togithub.com/getsentry/sentry-javascript/issues/5209)) - fix(serverless): Do not change DSN in Serverless integration ([#​5212](https://togithub.com/getsentry/sentry-javascript/issues/5212)) - fix(core): Normalize trace context ([#​5171](https://togithub.com/getsentry/sentry-javascript/issues/5171)) - fix(utils): Fix faulty references in `dropUndefinedKeys` ([#​5201](https://togithub.com/getsentry/sentry-javascript/issues/5201)) - fix(build): Add missing debug logger plugin in `debug.min` bundle variant config ([#​5192](https://togithub.com/getsentry/sentry-javascript/issues/5192)) - fix(tracing): Fix missing page load metrics in Electron renderer ([#​5187](https://togithub.com/getsentry/sentry-javascript/issues/5187)) - ref(node): Move non-handler code out of `handlers` module ([#​5190](https://togithub.com/getsentry/sentry-javascript/issues/5190)) - ref: Switch to magic string for logger statements ([#​5155](https://togithub.com/getsentry/sentry-javascript/issues/5155)) - chore(build): Only upload lambda layer when releasing ([#​5208](https://togithub.com/getsentry/sentry-javascript/issues/5208)) ### [`v7.0.0`](https://togithub.com/getsentry/sentry-javascript/blob/HEAD/CHANGELOG.md#​700) [Compare Source](https://togithub.com/getsentry/sentry-javascript/compare/6.19.7...7.0.0) Version 7 of the Sentry JavaScript SDK brings a variety of features and fixes including bundle size and performance improvements, brand new integrations, support for the attachments API, and key bug fixes. This release does not change or remove any top level public API methods (`captureException`, `captureMessage`), and only requires changes to certain configuration options or custom clients/integrations/transports. **Note: The v7 version of the JavaScript SDK requires a self-hosted version of Sentry 20.6.0 or higher. If you are using a version of [self-hosted Sentry](https://develop.sentry.dev/self-hosted/) (aka onpremise) older than `20.6.0` then you will need to [upgrade](https://develop.sentry.dev/self-hosted/releases/).** For detailed overview of all the changes, please see our [v7 migration guide](./MIGRATION.md#upgrading-from-6x-to-7x). ##### Breaking Changes If you are a regular consumer of the Sentry JavaScript SDK you only need to focus on the general items. The internal breaking changes are aimed at libraries that build on top of and extend the JavaScript SDK (like [`@sentry/electron`](https://togithub.com/getsentry/sentry-electron/) or [`@sentry/react-native`](https://togithub.com/getsentry/sentry-react-native/)). ##### General - [Updated CommonJS distributions to use ES6 by default](./MIGRATION.md#moving-to-es6-for-commonjs-files). If you need to support Internet Explorer 11 or old Node.js versions, we recommend using a preprocessing tool like [Babel](https://babeljs.io/) to convert Sentry packages to ES5. ([#​5005](https://togithub.com/getsentry/sentry-javascript/issues/5005)) - Default `bundle.min.js` to ES6 instead of ES5. [ES5 bundles are still available at `bundle.es5.min.js`](./MIGRATION.md#renaming-of-cdn-bundles). ([#​4958](https://togithub.com/getsentry/sentry-javascript/issues/4958)) - Updated build system to use TypeScript 3.8.3 ([#​4895](https://togithub.com/getsentry/sentry-javascript/issues/4895)) - Deprecated `Severity` enum for bundle size reasons. [Please use string literals instead](./MIGRATION.md#severity-severitylevel-and-severitylevels). ([#​4926](https://togithub.com/getsentry/sentry-javascript/issues/4926)) - Removed `critical` Severity level. ([#​5032](https://togithub.com/getsentry/sentry-javascript/issues/5032)) - `whitelistUrls` and `blacklistUrls` have been renamed to `allowUrls` and `denyUrls` in the `Sentry.init()` options. ([#​4850](https://togithub.com/getsentry/sentry-javascript/issues/4850)) - `BaseClient` and it's child classes now require `transport`, `stackParser`, and `integrations` to be [explicitly passed in](./MIGRATION.md#explicit-client-options). This was done to improve tree-shakability. ([#​4927](https://togithub.com/getsentry/sentry-javascript/issues/4927)) - Updated package distribution structure and stopped distributing CDN bundles through `@sentry/*` npm packages. [See details in our migration docs.](./MIGRATION.md#restructuring-of-package-content). ([#​4900](https://togithub.com/getsentry/sentry-javascript/issues/4900)) ([#​4901](https://togithub.com/getsentry/sentry-javascript/issues/4901)) - [Simplified `Transport` API](./MIGRATION.md#transport-changes). This means [custom transports will have to be adjusted accordingly.](./MIGRATION.md#custom-transports). - Updated how [Node Transport Options are passed down](./MIGRATION.md#node-transport-changes). - Start propogating [`baggage` HTTP header](https://www.w3.org/TR/baggage/) alongside `sentry-trace` header to [propogate additional tracing related information.](./MIGRATION.md#propagation-of-baggage-header). ([#​5133](https://togithub.com/getsentry/sentry-javascript/issues/5133)) - Renamed `registerRequestInstrumentation` export to `instrumentOutgoingRequests` in `@sentry/tracing`. ([#​4859](https://togithub.com/getsentry/sentry-javascript/issues/4859)) - Renamed `UserAgent` integration to `HttpContext`. ([#​5027](https://togithub.com/getsentry/sentry-javascript/issues/5027)) - Replaced `BrowserTracing` integration's `maxTransactionDuration` option with `finalTimeout` option in the `@sentry/tracing` package and reset `idleTimeout` based on activities count. This should improve accuracy of web-vitals like LCP by 20-30%. ([#​5044](https://togithub.com/getsentry/sentry-javascript/issues/5044)) - [Updated `@sentry/angular` to be compiled by the angular compiler](./MIGRATION.md#sentry-angular-sdk-changes). ([#​4641](https://togithub.com/getsentry/sentry-javascript/issues/4641)) - Made tracing package treeshakable ([#​5166](https://togithub.com/getsentry/sentry-javascript/issues/5166)) - Removed support for [Node v6](./MIGRATION.md#dropping-support-for-nodejs-v6). ([#​4851](https://togithub.com/getsentry/sentry-javascript/issues/4851)) - Removed `@sentry/minimal` package in favour of using [`@sentry/hub`](./MIGRATION.md#removal-of-sentryminimal). ([#​4971](https://togithub.com/getsentry/sentry-javascript/issues/4971)) - Removed support for Opera browser pre v15 ([#​4923](https://togithub.com/getsentry/sentry-javascript/issues/4923)) - Removed `ignoreSentryErrors` option from AWS lambda SDK. Errors originating from the SDK will now *always* be caught internally. ([#​4994](https://togithub.com/getsentry/sentry-javascript/issues/4994)) - Removed `Integrations.BrowserTracing` export from `@sentry/nextjs`. Please import `BrowserTracing` from `@sentry/nextjs` directly. - Removed static `id` property from `BrowserTracing` integration. - Removed `SDK_NAME` export from `@sentry/browser`, `@sentry/node`, `@sentry/tracing` and `@sentry/vue` packages. ([#​5040](https://togithub.com/getsentry/sentry-javascript/issues/5040)) - Removed `Angular`, `Ember`, and `Vue` integrations from `@sentry/integrations` [in favour of the explicit framework packages: `@sentry/angular`, `@sentry/ember`, and `@sentry/vue`](./MIGRATION.md#removal-of-old-platform-integrations-from-sentryintegrations-package). ([#​4893](https://togithub.com/getsentry/sentry-javascript/issues/4893)) - Removed [enums `Status`, `RequestSessionStatus`, and `SessionStatus`.](./MIGRATION.md#removed-enums). Deprecated [enums `SpanStatus` and `Severity`](./MIGRATION.md#deprecated-enums). This was done to save on bundle size. ([#​4891](https://togithub.com/getsentry/sentry-javascript/issues/4891)) ([#​4889](https://togithub.com/getsentry/sentry-javascript/issues/4889)) ([#​4890](https://togithub.com/getsentry/sentry-javascript/issues/4890)) - Removed support for deprecated `@sentry/apm` package. ([#​4845](https://togithub.com/getsentry/sentry-javascript/issues/4845)) - Removed deprecated `user` field from DSN interface. `publicKey` should be used instead. ([#​4864](https://togithub.com/getsentry/sentry-javascript/issues/4864)) - Removed deprecated `getActiveDomain` method and `DomainAsCarrier` type from `@sentry/hub`. ([#​4858](https://togithub.com/getsentry/sentry-javascript/issues/4858)) - Removed `eventStatusFromHttpCode` to save on bundle size. - Removed usage of deprecated `event.stacktrace` field. ([#​4885](https://togithub.com/getsentry/sentry-javascript/issues/4885)) - Removed raven-node backward-compat code ([#​4942](https://togithub.com/getsentry/sentry-javascript/issues/4942)) - Removed `showReportDialog` method on `BrowserClient` ([#​4973](https://togithub.com/getsentry/sentry-javascript/issues/4973)) - Removed deprecated `startSpan` and `child` methods ([#​4849](https://togithub.com/getsentry/sentry-javascript/issues/4849)) - Removed deprecated `frameContextLines` options ([#​4884](https://togithub.com/getsentry/sentry-javascript/issues/4884)) - Removed `Sentry` from window in the Gatsby SDK ([#​4857](https://togithub.com/getsentry/sentry-javascript/issues/4857)) ##### Internal - Removed support for the store endpoint ([#​4969](https://togithub.com/getsentry/sentry-javascript/issues/4969)) - Made hint callback argument non-optional ([#​5141](https://togithub.com/getsentry/sentry-javascript/issues/5141)) - Switched to using new transports internally ([#​4943](https://togithub.com/getsentry/sentry-javascript/issues/4943)) - [Removed `API` class from `@sentry/core`.](./MIGRATION.md#removing-the-api-class-from-sentrycore). ([#​4848](https://togithub.com/getsentry/sentry-javascript/issues/4848)) - [Refactored `Session` class to use a more functional approach.](./MIGRATION.md#session-changes). ([#​5054](https://togithub.com/getsentry/sentry-javascript/issues/5054)) - Removed `Backend` class in favour of moving functionality into the `Client` class (for more details, see [#​4911](https://togithub.com/getsentry/sentry-javascript/pull/4911) and [#​4919](https://togithub.com/getsentry/sentry-javascript/pull/4919)). - Removed forget async utility function ([#​4941](https://togithub.com/getsentry/sentry-javascript/issues/4941)) - Removed tslint from `@sentry-internal/typescript` ([#​4940](https://togithub.com/getsentry/sentry-javascript/issues/4940)) - Removed `_invokeClient` function from `@sentry/hub` ([#​4972](https://togithub.com/getsentry/sentry-javascript/issues/4972)) - Removed top level eventbuilder exports ([#​4887](https://togithub.com/getsentry/sentry-javascript/issues/4887)) - Added baggage API helpers in `@sentry/utils` ([#​5066](https://togithub.com/getsentry/sentry-javascript/issues/5066)) ##### Other Changes ##### Features - feat(tracing): Add Prisma ORM integration. ([#​4931](https://togithub.com/getsentry/sentry-javascript/issues/4931)) - feat(react): Add react-router-v6 integration ([#​5042](https://togithub.com/getsentry/sentry-javascript/issues/5042)) - feat: Add attachments API ([#​5004](https://togithub.com/getsentry/sentry-javascript/issues/5004)) - feat: Add `name` field to `EventProcessor` ([#​4932](https://togithub.com/getsentry/sentry-javascript/issues/4932)) - feat: Expose configurable stack parser ([#​4902](https://togithub.com/getsentry/sentry-javascript/issues/4902)) - feat(tracing): Make `setMeasurement` public API ([#​4933](https://togithub.com/getsentry/sentry-javascript/issues/4933)) - feat(tracing): Add GB unit to device memory tag value ([#​4935](https://togithub.com/getsentry/sentry-javascript/issues/4935)) - feat: Export browser integrations individually ([#​5028](https://togithub.com/getsentry/sentry-javascript/issues/5028)) - feat(core): Send Baggage in Envelope Header ([#​5104](https://togithub.com/getsentry/sentry-javascript/issues/5104)) ##### Fixes - fix(browser): Fix memory leak in `addEventListener` instrumentation ([#​5147](https://togithub.com/getsentry/sentry-javascript/issues/5147)) - fix(build): Fix express import in `gcpfunction` ([#​5097](https://togithub.com/getsentry/sentry-javascript/issues/5097)) - fix(ember): Export sha hashes of injected scripts ([#​5089](https://togithub.com/getsentry/sentry-javascript/issues/5089)) - fix(hub): Add missing parameter to captureException docstring ([#​5001](https://togithub.com/getsentry/sentry-javascript/issues/5001)) - fix(integrations): Mark ExtraErrorData as already normalized ([#​5053](https://togithub.com/getsentry/sentry-javascript/issues/5053)) - fix(serverless): Adjust v6 Lambda layer hotfix for v7 ([#​5006](https://togithub.com/getsentry/sentry-javascript/issues/5006)) - fix(tracing): Adjust sideEffects package.json entry for v7 ([#​4987](https://togithub.com/getsentry/sentry-javascript/issues/4987)) - fix(tracing): Remove isInstanceOf check in Hub constructor ([#​5046](https://togithub.com/getsentry/sentry-javascript/issues/5046)) - fix(tracing): Don't use `querySelector` when not available ([#​5160](https://togithub.com/getsentry/sentry-javascript/issues/5160)) - fix(nextjs): Update webpack-plugin and change how cli binary is detected. This should reduce bundle size of NextJS applications. ([#​4988](https://togithub.com/getsentry/sentry-javascript/issues/4988)) - fix(utils): Fix infinite recursion in `dropUndefinedKeys` ([#​5163](https://togithub.com/getsentry/sentry-javascript/issues/5163)) ##### Misc - feat(build): Vendor polyfills injected during build ([#​5051](https://togithub.com/getsentry/sentry-javascript/issues/5051)) - ref(build): Use rollup to build AWS lambda layer ([#​5146](https://togithub.com/getsentry/sentry-javascript/issues/5146)) - ref(core): Make event processing log warnings instead of errors ([#​5010](https://togithub.com/getsentry/sentry-javascript/issues/5010)) - ref(node): Allow node stack parser to work in browser context ([#​5135](https://togithub.com/getsentry/sentry-javascript/issues/5135)) - ref(serverless): Point DSN to relay in lambda extension ([#​5126](https://togithub.com/getsentry/sentry-javascript/issues/5126)) - ref(serverless): Do not throw on flush error ([#​5090](https://togithub.com/getsentry/sentry-javascript/issues/5090)) - ref(utils): Clean up dangerous type casts in object helper file ([#​5047](https://togithub.com/getsentry/sentry-javascript/issues/5047)) - ref(utils): Add logic to enable skipping of normalization ([#​5052](https://togithub.com/getsentry/sentry-javascript/issues/5052))

Configuration

📅 Schedule: Branch creation - "after 5am,before 9am" in timezone America/Los_Angeles, 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.



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

vercel[bot] commented 2 years ago

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Updated
api-foxxie ❌ Failed (Inspect) Jun 20, 2022 at 8:41AM (UTC)