octochangelog / octochangelog-webapp

Compare GitHub changelogs across multiple releases in a single view.
https://octochangelog.com
MIT License
52 stars 9 forks source link

Update dependency @sentry/nextjs to v7.110.1 #2371

Closed renovate[bot] closed 2 months ago

renovate[bot] commented 2 months ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@sentry/nextjs (source) 7.109.0 -> 7.110.1 age adoption passing confidence

Release Notes

getsentry/sentry-javascript (@​sentry/nextjs) ### [`v7.110.1`](https://togithub.com/getsentry/sentry-javascript/releases/tag/7.110.1) [Compare Source](https://togithub.com/getsentry/sentry-javascript/compare/7.110.0...7.110.1) - fix(nextjs): Fix `tunnelRoute` matching logic for hybrid cloud ([#​11577](https://togithub.com/getsentry/sentry-javascript/issues/11577)) ##### Bundle size 📦 | Path | Size | | ---------------------------------------------------------------------------------- | ----------------- | | [@​sentry/browser](https://togithub.com/sentry/browser) (incl. Tracing, Replay, Feedback) - Webpack (gzipped) | 80.58 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) (incl. Tracing, Replay) - Webpack (gzipped) | 71.55 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) (incl. Tracing, Replay with Canvas) - Webpack (gzipped) | 75.57 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) (incl. Tracing, Replay) - Webpack with treeshaking flags (gzipped) | 65.18 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) (incl. Tracing) - Webpack (gzipped) | 35.49 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) (incl. browserTracingIntegration) - Webpack (gzipped) | 35.37 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) (incl. Feedback) - Webpack (gzipped) | 31.57 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) (incl. sendFeedback) - Webpack (gzipped) | 31.58 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) - Webpack (gzipped) | 22.78 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) (incl. Tracing, Replay, Feedback) - ES6 CDN Bundle (gzipped) | 78.76 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) (incl. Tracing, Replay) - ES6 CDN Bundle (gzipped) | 70.12 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) (incl. Tracing) - ES6 CDN Bundle (gzipped) | 35.9 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) - ES6 CDN Bundle (gzipped) | 25.27 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) (incl. Tracing, Replay) - ES6 CDN Bundle (minified & uncompressed) | 220.72 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) (incl. Tracing) - ES6 CDN Bundle (minified & uncompressed) | 108.53 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) - ES6 CDN Bundle (minified & uncompressed) | 75.79 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) (incl. Tracing) - ES5 CDN Bundle (gzipped) | 39.17 KB | | [@​sentry/react](https://togithub.com/sentry/react) (incl. Tracing, Replay) - Webpack (gzipped) | 72.03 KB | | [@​sentry/react](https://togithub.com/sentry/react) - Webpack (gzipped) | 22.81 KB | | [@​sentry/nextjs](https://togithub.com/sentry/nextjs) Client (incl. Tracing, Replay) - Webpack (gzipped) | 89.87 KB | | [@​sentry/nextjs](https://togithub.com/sentry/nextjs) Client - Webpack (gzipped) | 54.01 KB | | [@​sentry-internal/feedback](https://togithub.com/sentry-internal/feedback) - Webpack (gzipped) | 17.32 KB | ### [`v7.110.0`](https://togithub.com/getsentry/sentry-javascript/releases/tag/7.110.0) [Compare Source](https://togithub.com/getsentry/sentry-javascript/compare/7.109.0...7.110.0) ##### Important Changes - **feat(tracing): Add interactions sample rate to browser tracing integrations ([#​11382](https://togithub.com/getsentry/sentry-javascript/issues/11382))** You can now use a `interactionsSampleRate` to control the sample rate of INP spans. `interactionsSampleRate` is applied on top of the global `tracesSampleRate`. Therefore if `interactionsSampleRate` is `0.5` and `tracesSampleRate` is `0.1`, then the actual sample rate for interactions is `0.05`. ```js Sentry.init({ tracesSampleRate: 0.1, integrations: [ Sentry.browserTracingIntegration({ interactionsSampleRate: 0.5, }), ], }); ``` - **Deprecations** This release deprecates the `Hub` class, as well as the `addRequestDataToTransaction` method. The `trpcMiddleware` method is no longer on the `Handlers` export, but instead is a standalone export. Please see the detailed [Migration docs](./MIGRATION.md#deprecations-in-7x) on how to migrate to the new APIs. - feat: Deprecate and relocate `trpcMiddleware` ([#​11389](https://togithub.com/getsentry/sentry-javascript/issues/11389)) - feat(core): Deprecate `Hub` class ([#​11528](https://togithub.com/getsentry/sentry-javascript/issues/11528)) - feat(types): Deprecate `Hub` interface ([#​11530](https://togithub.com/getsentry/sentry-javascript/issues/11530)) - ref: Deprecate `addRequestDataToTransaction` ([#​11368](https://togithub.com/getsentry/sentry-javascript/issues/11368)) ##### Other Changes - feat(core): Update metric normalization ([#​11519](https://togithub.com/getsentry/sentry-javascript/issues/11519)) - feat(feedback): Customize feedback placeholder text color ([#​11521](https://togithub.com/getsentry/sentry-javascript/issues/11521)) - feat(remix): Skip span creation for `OPTIONS` and `HEAD` request. ([#​11485](https://togithub.com/getsentry/sentry-javascript/issues/11485)) - feat(utils): Add metric buckets rate limit ([#​11506](https://togithub.com/getsentry/sentry-javascript/issues/11506)) - fix(core): unref timer to not block node exit ([#​11483](https://togithub.com/getsentry/sentry-javascript/issues/11483)) - fix(metrics): Map `statsd` to `metric_bucket` ([#​11505](https://togithub.com/getsentry/sentry-javascript/issues/11505)) - fix(spans): Allow zero exclusive time for INP spans ([#​11408](https://togithub.com/getsentry/sentry-javascript/issues/11408)) - ref(feedback): Configure feedback fonts ([#​11520](https://togithub.com/getsentry/sentry-javascript/issues/11520)) #### Bundle size 📦 | Path | Size | | ---------------------------------------------------------------------------------- | ----------------- | | [@​sentry/browser](https://togithub.com/sentry/browser) (incl. Tracing, Replay, Feedback) - Webpack (gzipped) | 80.58 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) (incl. Tracing, Replay) - Webpack (gzipped) | 71.55 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) (incl. Tracing, Replay with Canvas) - Webpack (gzipped) | 75.57 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) (incl. Tracing, Replay) - Webpack with treeshaking flags (gzipped) | 65.18 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) (incl. Tracing) - Webpack (gzipped) | 35.49 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) (incl. browserTracingIntegration) - Webpack (gzipped) | 35.37 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) (incl. Feedback) - Webpack (gzipped) | 31.57 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) (incl. sendFeedback) - Webpack (gzipped) | 31.58 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) - Webpack (gzipped) | 22.78 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) (incl. Tracing, Replay, Feedback) - ES6 CDN Bundle (gzipped) | 78.76 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) (incl. Tracing, Replay) - ES6 CDN Bundle (gzipped) | 70.12 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) (incl. Tracing) - ES6 CDN Bundle (gzipped) | 35.9 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) - ES6 CDN Bundle (gzipped) | 25.27 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) (incl. Tracing, Replay) - ES6 CDN Bundle (minified & uncompressed) | 220.72 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) (incl. Tracing) - ES6 CDN Bundle (minified & uncompressed) | 108.53 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) - ES6 CDN Bundle (minified & uncompressed) | 75.79 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) (incl. Tracing) - ES5 CDN Bundle (gzipped) | 39.17 KB | | [@​sentry/react](https://togithub.com/sentry/react) (incl. Tracing, Replay) - Webpack (gzipped) | 72.03 KB | | [@​sentry/react](https://togithub.com/sentry/react) - Webpack (gzipped) | 22.81 KB | | [@​sentry/nextjs](https://togithub.com/sentry/nextjs) Client (incl. Tracing, Replay) - Webpack (gzipped) | 89.87 KB | | [@​sentry/nextjs](https://togithub.com/sentry/nextjs) Client - Webpack (gzipped) | 54.01 KB | | [@​sentry-internal/feedback](https://togithub.com/sentry-internal/feedback) - Webpack (gzipped) | 17.32 KB |

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.



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

socket-security[bot] commented 2 months ago

New and removed dependencies detected. Learn more about Socket for GitHub ↗︎

Package New capabilities Transitives Size Publisher
npm/@mswjs/http-middleware@0.10.0 None 0 10.3 kB kettanaito
npm/@octokit/auth-callback@4.0.0 None 0 20.4 kB octokitbot
npm/@octokit/openapi-types@22.0.1 None 0 4.54 MB octokitbot
npm/@octokit/rest@20.1.0 Transitive: network +15 11.6 MB octokitbot
npm/@sentry/nextjs@7.110.1 environment, filesystem, network Transitive: shell, unsafe +33 16.1 MB sentry-bot
npm/@tanstack/eslint-plugin-query@5.28.11 Transitive: environment, filesystem +21 2.67 MB tannerlinsley
npm/@tanstack/react-query-devtools@5.29.2 environment +1 3.58 MB tannerlinsley
npm/@tanstack/react-query@5.29.2 environment +1 3.82 MB tannerlinsley
npm/@testing-library/cypress@10.0.1 Transitive: environment, eval +40 4.67 MB testing-library-bot
npm/@testing-library/react@15.0.2 environment +20 7.91 MB testing-library-bot
npm/@types/cors@2.8.17 None 0 5.91 kB types
npm/@types/happo-cypress@4.1.4 None 0 5.21 kB types
npm/@types/js-cookie@3.0.6 None 0 7.43 kB types
npm/@types/lodash-es@4.17.12 None +1 934 kB types
npm/@types/react-dom@18.2.25 None 0 34.9 kB types
npm/@types/react@18.2.78 None +2 1.69 MB types
npm/@typescript-eslint/eslint-plugin@7.2.0 Transitive: environment, filesystem +24 6.44 MB jameshenry
npm/@typescript-eslint/parser@7.2.0 Transitive: environment, filesystem +18 1.76 MB jameshenry
npm/@vercel/analytics@1.2.2 None 0 190 kB vercel-release-bot
npm/@vercel/speed-insights@1.0.10 None 0 272 kB vercel-release-bot
npm/cors@2.8.5 None 0 20 kB dougwilson
npm/cypress@13.7.2 environment, filesystem, shell, unsafe Transitive: eval, network +71 13 MB atofstryker
npm/downshift@9.0.4 environment +2 3.14 MB silviuaavram
npm/eslint-config-next@14.2.1 unsafe Transitive: environment, eval, filesystem, shell +91 13.3 MB vercel-release-bot
npm/eslint-plugin-cypress@2.15.1 None +1 99.9 kB cypress-npm-publisher
npm/eslint-plugin-jest-formatting@3.1.0 None 0 75.6 kB dangreenleipciger
npm/eslint-plugin-jest@28.2.0 filesystem Transitive: environment +21 2.79 MB simenb
npm/eslint-plugin-unicorn@52.0.0 Transitive: environment, eval, filesystem, unsafe +30 8.36 MB sindresorhus
npm/eslint@8.57.0 environment, filesystem Transitive: eval, shell, unsafe +54 9.68 MB eslintbot
npm/framer-motion@11.0.28 environment 0 2.23 MB popmotion
npm/happo-cypress@4.1.3 None 0 13.1 kB trotzig
npm/happo-e2e@2.5.0 Transitive: environment, filesystem, network +21 2.54 MB trotzig
npm/happo.io@9.1.3 environment, network Transitive: eval, filesystem, shell, unsafe +114 22 MB trotzig
npm/is-ci@3.0.1 Transitive: environment +1 29.9 kB sibiraj-s
npm/js-cookie@3.0.5 None 0 26.2 kB carhartl
npm/lint-staged@15.2.2 Transitive: environment, filesystem, shell +16 962 kB okonet
npm/lodash-es@4.17.21 eval 0 636 kB bnjmnt4n

🚮 Removed packages: npm/prettier@3.2.5, npm/react-dom@18.2.0, npm/react@18.2.0, npm/remark-gfm@4.0.0, npm/remark-parse@11.0.0, npm/remark-stringify@11.0.0, npm/semver@7.6.0, npm/type-fest@4.15.0, npm/typescript@5.4.5, npm/unified@11.0.4

View full report↗︎

cypress[bot] commented 2 months ago

Passing run #7995 ↗︎

0 7 0 0 Flakiness 0

Details:

Update dependency @sentry/nextjs to v7.110.1
Project: Octochangelog Webapp Commit: b4e79b0fc6
Status: Passed Duration: 01:27 💡
Started: Apr 18, 2024 11:36 AM Ended: Apr 18, 2024 11:37 AM

Review all test suite changes for PR #2371 ↗︎

socket-security[bot] commented 2 months ago

🚨 Potential security issues detected. Learn more about Socket for GitHub ↗︎

To accept the risk, merge this PR and you will not be notified again.

Alert Package NoteSource
Install scripts npm/esbuild@0.17.19
Install scripts npm/@sentry/cli@1.77.3
  • Install script: install
  • Source: node ./scripts/install.js
Install scripts npm/esbuild@0.19.12
  • orphan: npm/esbuild@0.19.12
Install scripts npm/@vercel/speed-insights@1.0.10
  • Install script: postinstall
  • Source: node scripts/postinstall.mjs
Install scripts npm/cypress@13.7.2
  • Install script: postinstall
  • Source: node index.js --exec install

View full report↗︎

Next steps

What is an install script?

Install scripts are run when the package is installed. The majority of malware in npm is hidden in install scripts.

Packages should not be running non-essential scripts during install and there are often solutions to problems people solve with install scripts that can be run at publish time instead.

Take a deeper look at the dependency

Take a moment to review the security alert above. Review the linked package source code to understand the potential risk. Ensure the package is not malicious before proceeding. If you're unsure how to proceed, reach out to your security team or ask the Socket team for help at support [AT] socket [DOT] dev.

Remove the package

If you happen to install a dependency that Socket reports as Known Malware you should immediately remove it and select a different dependency. For other alert types, you may may wish to investigate alternative packages or consider if there are other ways to mitigate the specific risk posed by the dependency.

Mark a package as acceptable risk

To ignore an alert, reply with a comment starting with @SocketSecurity ignore followed by a space separated list of ecosystem/package-name@version specifiers. e.g. @SocketSecurity ignore npm/foo@1.0.0 or ignore all packages with @SocketSecurity ignore-all

  • @SocketSecurity ignore npm/esbuild@0.17.19
  • @SocketSecurity ignore npm/@sentry/cli@1.77.3
  • @SocketSecurity ignore npm/esbuild@0.19.12
  • @SocketSecurity ignore npm/@vercel/speed-insights@1.0.10
  • @SocketSecurity ignore npm/cypress@13.7.2