From 0a0e24812881572e42c15974197fd633c7a5722c Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 17 Dec 2023 19:52:28 +0000 Subject: [PATCH] fix(deps): update dependency @sentry/nextjs to v7.88.0 (#689) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@sentry/nextjs](https://togithub.com/getsentry/sentry-javascript/tree/master/packages/nextjs) ([source](https://togithub.com/getsentry/sentry-javascript)) | [`7.87.0` -> `7.88.0`](https://renovatebot.com/diffs/npm/@sentry%2fnextjs/7.87.0/7.88.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@sentry%2fnextjs/7.88.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@sentry%2fnextjs/7.88.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@sentry%2fnextjs/7.87.0/7.88.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@sentry%2fnextjs/7.87.0/7.88.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes
getsentry/sentry-javascript (@​sentry/nextjs) ### [`v7.88.0`](https://togithub.com/getsentry/sentry-javascript/blob/HEAD/CHANGELOG.md#7880) [Compare Source](https://togithub.com/getsentry/sentry-javascript/compare/7.87.0...7.88.0) ##### Important Changes - **feat(browser): Add browser metrics sdk ([#​9794](https://togithub.com/getsentry/sentry-javascript/issues/9794))** The release adds alpha support for [Sentry developer metrics](https://togithub.com/getsentry/sentry/discussions/58584) 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. ```js 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. ```js // 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](https://togithub.com/getsentry/sentry-javascript/issues/9808))** This releases add support for instrumenting [Deno cron's](https://deno.com/blog/cron) with [Sentry cron monitors](https://docs.sentry.io/product/crons/). This requires v1.38 of Deno run with the `--unstable` flag and the usage of the `DenoCron` Sentry integration. ```ts // 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](https://togithub.com/getsentry/sentry-javascript/issues/9847)) - fix(nextjs): Guard against injecting multiple times ([#​9807](https://togithub.com/getsentry/sentry-javascript/issues/9807)) - ref(remix): Bump Sentry CLI to ^2.23.0 ([#​9773](https://togithub.com/getsentry/sentry-javascript/issues/9773))
--- ### 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](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/kula-app/OnLaunch). --- package.json | 2 +- yarn.lock | 198 +++++++++++++++++++++++++-------------------------- 2 files changed, 100 insertions(+), 100 deletions(-) diff --git a/package.json b/package.json index d31e658a..8a8d02e4 100644 --- a/package.json +++ b/package.json @@ -20,7 +20,7 @@ "@emotion/styled": "^11.11.0", "@next/font": "13.5.6", "@prisma/client": "^5.0.0", - "@sentry/nextjs": "7.87.0", + "@sentry/nextjs": "7.88.0", "@stripe/react-stripe-js": "^2.1.1", "@stripe/stripe-js": "^1.54.1", "@types/bcrypt": "^5.0.0", diff --git a/yarn.lock b/yarn.lock index cfa0ef48..6885d3ab 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1846,35 +1846,35 @@ resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.5.1.tgz#5f1b518ec5fa54437c0b7c4a821546c64fed6922" integrity sha512-6i/8UoL0P5y4leBIGzvkZdS85RDMG9y1ihZzmTZQ5LdHUYmZ7pKFoj8X0236s3lusPs1Fa5HTQUpwI+UfTcmeA== -"@sentry-internal/feedback@7.87.0": - version "7.87.0" - resolved "https://registry.yarnpkg.com/@sentry-internal/feedback/-/feedback-7.87.0.tgz#21d724a02cfd81b4a0cdb0e1e1f1a7631f1aef48" - integrity sha512-31nvAvcchoBQJoZSxAaMh6FOLIoZEbTOGutiMTPzPLhL4bQF4fNl20Bc/mRD1IL/L7hyKsIl2ahxKjo1ZFbPfg== - dependencies: - "@sentry/core" "7.87.0" - "@sentry/types" "7.87.0" - "@sentry/utils" "7.87.0" - -"@sentry-internal/tracing@7.87.0": - version "7.87.0" - resolved "https://registry.yarnpkg.com/@sentry-internal/tracing/-/tracing-7.87.0.tgz#e0a9d5d9fd1d68c432eae14bf1f4d4dccffaa97e" - integrity sha512-HYa0+rfFmYQ/DadXoiuarTSxrcnYDCd/fm0pFuOHjICtfja8IcLegVYP2/r3CgwB+IjquCtJ5kDcqS/NTgUcpA== - dependencies: - "@sentry/core" "7.87.0" - "@sentry/types" "7.87.0" - "@sentry/utils" "7.87.0" - -"@sentry/browser@7.87.0": - version "7.87.0" - resolved "https://registry.yarnpkg.com/@sentry/browser/-/browser-7.87.0.tgz#98c2a63a8e30fbbcb3b10a39a628abd0a3e4a603" - integrity sha512-+WVqIns2ZFF/tsjNf90Km3eIKUd6lGQSsBQ+cVa05v0ebMr5OtnOkKlOHN4CJZ0gT0lyDnNHoys9Af6edIbE1Q== - dependencies: - "@sentry-internal/feedback" "7.87.0" - "@sentry-internal/tracing" "7.87.0" - "@sentry/core" "7.87.0" - "@sentry/replay" "7.87.0" - "@sentry/types" "7.87.0" - "@sentry/utils" "7.87.0" +"@sentry-internal/feedback@7.88.0": + version "7.88.0" + resolved "https://registry.yarnpkg.com/@sentry-internal/feedback/-/feedback-7.88.0.tgz#fa4db4a27d1fa7fe51dc67af185b13519d7fbc76" + integrity sha512-lbK6jgO1I0M96nZQ99mcLSZ55ebwPAP6LhEWhkmc+eAfy97VpiY+qsbmgsmOzCEPqMmEUCEcI0rEZ7fiye2v2Q== + dependencies: + "@sentry/core" "7.88.0" + "@sentry/types" "7.88.0" + "@sentry/utils" "7.88.0" + +"@sentry-internal/tracing@7.88.0": + version "7.88.0" + resolved "https://registry.yarnpkg.com/@sentry-internal/tracing/-/tracing-7.88.0.tgz#c820bde835c4af576781f8b818eed5085e417927" + integrity sha512-xXQdcYhsS+ourzJHjXNjZC9zakuc97udmpgaXRjEP7FjPYclIx+YXwgFBdHM2kzAwZLFOsEce5dr46GVXUDfZw== + dependencies: + "@sentry/core" "7.88.0" + "@sentry/types" "7.88.0" + "@sentry/utils" "7.88.0" + +"@sentry/browser@7.88.0": + version "7.88.0" + resolved "https://registry.yarnpkg.com/@sentry/browser/-/browser-7.88.0.tgz#80e3afe00e19bffbed09be392061e64dd6196796" + integrity sha512-il4x3PB99nuU/OJQw2RltgYYbo8vtnYoIgneOeEiw4m0ppK1nKkMkd3vDRipGL6E/0i7IUmQfYYy6U10J5Rx+g== + dependencies: + "@sentry-internal/feedback" "7.88.0" + "@sentry-internal/tracing" "7.88.0" + "@sentry/core" "7.88.0" + "@sentry/replay" "7.88.0" + "@sentry/types" "7.88.0" + "@sentry/utils" "7.88.0" "@sentry/cli@^1.77.1": version "1.77.1" @@ -1888,95 +1888,95 @@ proxy-from-env "^1.1.0" which "^2.0.2" -"@sentry/core@7.87.0": - version "7.87.0" - resolved "https://registry.yarnpkg.com/@sentry/core/-/core-7.87.0.tgz#98cdd1ce04f781353224dd1ac79b4ef7f6786053" - integrity sha512-jkoXqK/nuYh8DYS+n7uaSuSIdw4HJemyRkXsWjAEPtEgD7taGMafZGbP5pl+XE38SE59jTBxmKnkUEZOFMgZGA== +"@sentry/core@7.88.0": + version "7.88.0" + resolved "https://registry.yarnpkg.com/@sentry/core/-/core-7.88.0.tgz#46f1526e9b98de96a0e93fd69917a990db5d5a37" + integrity sha512-Jzbb7dcwiCO7kI0a1w+32UzWxbEn2OcZWzp55QMEeAh6nZ/5CXhXwpuHi0tW7doPj+cJdmxMTMu9LqMVfdGkzQ== dependencies: - "@sentry/types" "7.87.0" - "@sentry/utils" "7.87.0" + "@sentry/types" "7.88.0" + "@sentry/utils" "7.88.0" -"@sentry/integrations@7.87.0": - version "7.87.0" - resolved "https://registry.yarnpkg.com/@sentry/integrations/-/integrations-7.87.0.tgz#6112d33e93f35ca2a7000026923b45f018da5f9b" - integrity sha512-xbyOQeyfG1sF2PBMIOz3c3i0Y3+8q4UlxoeOhpFe6Vpjek+I/g7onZT6YevT6cWG083cg+rS0VCgPQSUV2lxIw== +"@sentry/integrations@7.88.0": + version "7.88.0" + resolved "https://registry.yarnpkg.com/@sentry/integrations/-/integrations-7.88.0.tgz#38179405ff6673a9526cebbea656c7c6c69ccd06" + integrity sha512-YBYPAtJeylMaaCmGntgiDpp1nk3IT6+FBXsmHxMdTKlrpt5ELj/jcc8gEgaRNeSBjx4Kv1OVzmZcYyWwEhkR4Q== dependencies: - "@sentry/core" "7.87.0" - "@sentry/types" "7.87.0" - "@sentry/utils" "7.87.0" + "@sentry/core" "7.88.0" + "@sentry/types" "7.88.0" + "@sentry/utils" "7.88.0" localforage "^1.8.1" -"@sentry/nextjs@7.87.0": - version "7.87.0" - resolved "https://registry.yarnpkg.com/@sentry/nextjs/-/nextjs-7.87.0.tgz#5916bde2bb965544089298a1a7dcf3e23654280f" - integrity sha512-Wsr5Wvf0rgPvnTXljNOObb1+Mhg2QKMZHrLDKY0lC3WUfmu8rx6OyU7f9kfxW5VTZoKzb5yCup8O3jpwfGVYiw== +"@sentry/nextjs@7.88.0": + version "7.88.0" + resolved "https://registry.yarnpkg.com/@sentry/nextjs/-/nextjs-7.88.0.tgz#84ff9a6311a5f6ce5241e4653a4afff59bf54964" + integrity sha512-tvP9KU7SeL65szenGoexABdPqCVMUTWEP9DroNvBDvTtqfETOf8RbGw8zE+bFNxQ9bjAzhJPibu6oWNcpYvXMA== dependencies: "@rollup/plugin-commonjs" "24.0.0" - "@sentry/core" "7.87.0" - "@sentry/integrations" "7.87.0" - "@sentry/node" "7.87.0" - "@sentry/react" "7.87.0" - "@sentry/types" "7.87.0" - "@sentry/utils" "7.87.0" - "@sentry/vercel-edge" "7.87.0" + "@sentry/core" "7.88.0" + "@sentry/integrations" "7.88.0" + "@sentry/node" "7.88.0" + "@sentry/react" "7.88.0" + "@sentry/types" "7.88.0" + "@sentry/utils" "7.88.0" + "@sentry/vercel-edge" "7.88.0" "@sentry/webpack-plugin" "1.21.0" chalk "3.0.0" resolve "1.22.8" rollup "2.78.0" stacktrace-parser "^0.1.10" -"@sentry/node@7.87.0": - version "7.87.0" - resolved "https://registry.yarnpkg.com/@sentry/node/-/node-7.87.0.tgz#e5450f197f5efe7ad3d61a5ce670e9c8c7f9c088" - integrity sha512-mGcZMCL3/IMTLIRcWLF+H9z2Bb2d34gKmg2rhXqI8BqhhUA551jMRlZv/y4za2Osjy550KwVoNsA1qtEe5mYyQ== +"@sentry/node@7.88.0": + version "7.88.0" + resolved "https://registry.yarnpkg.com/@sentry/node/-/node-7.88.0.tgz#e57cf7b5bfe74e70bb53ffb6ee30e92f4576870a" + integrity sha512-X6Xyh7AEitnWqn1CHQrmsUqRn0GKj/6nPE5VC2DLQfHiFH1Fknrt+csFzDchQ/86awXYwuY4Le5ECEH//X/WzQ== dependencies: - "@sentry-internal/tracing" "7.87.0" - "@sentry/core" "7.87.0" - "@sentry/types" "7.87.0" - "@sentry/utils" "7.87.0" + "@sentry-internal/tracing" "7.88.0" + "@sentry/core" "7.88.0" + "@sentry/types" "7.88.0" + "@sentry/utils" "7.88.0" https-proxy-agent "^5.0.0" -"@sentry/react@7.87.0": - version "7.87.0" - resolved "https://registry.yarnpkg.com/@sentry/react/-/react-7.87.0.tgz#c0d27d39561df5d9b181b0593fb28bdb249c1f0a" - integrity sha512-37O4Tr7Ij1T6B3eAKrlsLCkxjW+euHDRaDjjuD0gxYEyf4Tr+kx6x7s3x9wXZpkkehJCTCOflDSvYM7qH4uRFA== +"@sentry/react@7.88.0": + version "7.88.0" + resolved "https://registry.yarnpkg.com/@sentry/react/-/react-7.88.0.tgz#3913b3d81b6d06ef9f58e4c7d53f32ad1b4d31cb" + integrity sha512-iDOImijbsc0cYLWNBXlYKhh/sG/czPK/51GcMi3GcEBkhHDDcdWSZ7cNjFAqHfdrMkPf26bYgDPIL6aJsBZwpQ== dependencies: - "@sentry/browser" "7.87.0" - "@sentry/types" "7.87.0" - "@sentry/utils" "7.87.0" + "@sentry/browser" "7.88.0" + "@sentry/types" "7.88.0" + "@sentry/utils" "7.88.0" hoist-non-react-statics "^3.3.2" -"@sentry/replay@7.87.0": - version "7.87.0" - resolved "https://registry.yarnpkg.com/@sentry/replay/-/replay-7.87.0.tgz#67c4adb839889e19a32fe7948a91d7f48e55e463" - integrity sha512-QinY5uYARRkZsdInNy8cFY4p/H697DutRdpWEIi/v7hsOiRVRxIVZ3n8dJxVIpPbVQ9upI19s/J3bb4mSERLSg== - dependencies: - "@sentry-internal/tracing" "7.87.0" - "@sentry/core" "7.87.0" - "@sentry/types" "7.87.0" - "@sentry/utils" "7.87.0" - -"@sentry/types@7.87.0": - version "7.87.0" - resolved "https://registry.yarnpkg.com/@sentry/types/-/types-7.87.0.tgz#9f9a5e4ce97676af17dda01766399f31c8916ca4" - integrity sha512-w8jKFHq/Llupmr2FezmFgQsnm3y/CnqLjb7s6PstI78E409wrhH7p7oqX/OEuzccH1qNCNwes/3QKvPTRQDB4Q== - -"@sentry/utils@7.87.0": - version "7.87.0" - resolved "https://registry.yarnpkg.com/@sentry/utils/-/utils-7.87.0.tgz#95ca4bf2208077346f9d433ba536ee1610ec3cae" - integrity sha512-7xgtPTnTNP/4IznFMFXxltuaXfLvzznrYCDMv9ny8EeUjJqlLX3CVA8Qq3YALsLCQCKcrGRARbAcd/EGG//w2w== - dependencies: - "@sentry/types" "7.87.0" - -"@sentry/vercel-edge@7.87.0": - version "7.87.0" - resolved "https://registry.yarnpkg.com/@sentry/vercel-edge/-/vercel-edge-7.87.0.tgz#f81460f370761d9b8fdba8cb5d1d5e474b009592" - integrity sha512-AyRuI96w6cHa5m9pYW2X+ZKflWQqzHaoawAQdUsN9oC81nuLiWPsgQNEbiBQlUU2F/VwmIcqwI7vL/h8jtbk3g== - dependencies: - "@sentry-internal/tracing" "7.87.0" - "@sentry/core" "7.87.0" - "@sentry/types" "7.87.0" - "@sentry/utils" "7.87.0" +"@sentry/replay@7.88.0": + version "7.88.0" + resolved "https://registry.yarnpkg.com/@sentry/replay/-/replay-7.88.0.tgz#a9158af527db0cce91659f9a87b938040c21fdaa" + integrity sha512-em5dPKLPG7c/HGDbpIj3aHrWbA4iMwqjevqTzn+++KNO1YslkOosCaGsb1whU3AL1T9c3aIFIhZ4u3rNo+DxcA== + dependencies: + "@sentry-internal/tracing" "7.88.0" + "@sentry/core" "7.88.0" + "@sentry/types" "7.88.0" + "@sentry/utils" "7.88.0" + +"@sentry/types@7.88.0": + version "7.88.0" + resolved "https://registry.yarnpkg.com/@sentry/types/-/types-7.88.0.tgz#b3a09733a7bfad3634687b77764c5767d646d6e7" + integrity sha512-FvwvmX1pWAZKicPj4EpKyho8Wm+C4+r5LiepbbBF8oKwSPJdD2QV1fo/LWxsrzNxWOllFIVIXF5Ed3nPYQWpTw== + +"@sentry/utils@7.88.0": + version "7.88.0" + resolved "https://registry.yarnpkg.com/@sentry/utils/-/utils-7.88.0.tgz#704e79f14047080564c3e5231028f1cef8824e9f" + integrity sha512-ukminfRmdBXTzk49orwJf3Lu3hR60ZRHjE2a4IXwYhyDT6JJgJqgsq1hzGXx0AyFfyS4WhfZ6QUBy7fu3BScZQ== + dependencies: + "@sentry/types" "7.88.0" + +"@sentry/vercel-edge@7.88.0": + version "7.88.0" + resolved "https://registry.yarnpkg.com/@sentry/vercel-edge/-/vercel-edge-7.88.0.tgz#8aef06acf9bc2587fd2c2e70f4409292ac57329c" + integrity sha512-PfaOiPPRw7y4CcOeP337NsPGyERpO6OlSAmLIaUkKJRjnGNmg1tSzUNfG0lg//fQ8XsZsXIun/ND+XXYtEJFDw== + dependencies: + "@sentry-internal/tracing" "7.88.0" + "@sentry/core" "7.88.0" + "@sentry/types" "7.88.0" + "@sentry/utils" "7.88.0" "@sentry/webpack-plugin@1.21.0": version "1.21.0"