element-hq / element-call

Group calls powered by Matrix
https://call.element.io
Apache License 2.0
535 stars 84 forks source link

Update all non-major dependencies #2461

Closed renovate[bot] closed 6 days ago

renovate[bot] commented 1 week ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@sentry/react (source) 8.11.0 -> 8.13.0 age adoption passing confidence
@sentry/vite-plugin (source) 2.20.0 -> 2.20.1 age adoption passing confidence
@types/lodash (source) 4.17.5 -> 4.17.6 age adoption passing confidence
@types/node (source) 20.14.8 -> 20.14.9 age adoption passing confidence
@typescript-eslint/eslint-plugin (source) 7.13.1 -> 7.15.0 age adoption passing confidence
@typescript-eslint/parser (source) 7.13.1 -> 7.15.0 age adoption passing confidence
postcss-preset-env (source) 9.5.14 -> 9.5.15 age adoption passing confidence
posthog-js 1.140.1 -> 1.142.1 age adoption passing confidence
typescript (source) 5.5.2 -> 5.5.3 age adoption passing confidence
vite (source) 5.3.1 -> 5.3.2 age adoption passing confidence

Release Notes

getsentry/sentry-javascript (@​sentry/react) ### [`v8.13.0`](https://togithub.com/getsentry/sentry-javascript/blob/HEAD/CHANGELOG.md#8130) [Compare Source](https://togithub.com/getsentry/sentry-javascript/compare/8.12.0...8.13.0) ##### Important Changes - **feat(nestjs): Add Nest SDK** This release adds a dedicated SDK for [NestJS](https://nestjs.com/) (`@sentry/nestjs`) in alpha state. The SDK is a drop-in replacement for the Sentry Node SDK (`@sentry/node`) supporting the same set of features. See the [docs](https://docs.sentry.io/platforms/javascript/guides/nestjs/) for how to use the SDK. ##### Other Changes - deps: Bump bundler plugins to `2.20.1` ([#​12641](https://togithub.com/getsentry/sentry-javascript/issues/12641)) - deps(nextjs): Remove react peer dep and allow rc ([#​12670](https://togithub.com/getsentry/sentry-javascript/issues/12670)) - feat: Update OTEL deps ([#​12635](https://togithub.com/getsentry/sentry-javascript/issues/12635)) - feat(deps): bump [@​prisma/instrumentation](https://togithub.com/prisma/instrumentation) from 5.15.0 to 5.15.1 ([#​12627](https://togithub.com/getsentry/sentry-javascript/issues/12627)) - feat(node): Add context info for missing instrumentation ([#​12639](https://togithub.com/getsentry/sentry-javascript/issues/12639)) - fix(feedback): Improve feedback error message ([#​12647](https://togithub.com/getsentry/sentry-javascript/issues/12647)) ### [`v8.12.0`](https://togithub.com/getsentry/sentry-javascript/blob/HEAD/CHANGELOG.md#8120) [Compare Source](https://togithub.com/getsentry/sentry-javascript/compare/8.11.0...8.12.0) ##### Important Changes - **feat(solid): Remove need to pass router hooks to solid integration** (breaking) This release introduces breaking changes to the `@sentry/solid` package (which is currently out in alpha). We've made it easier to get started with the solid router integration by removing the need to pass **use\*** hooks explicitly to `solidRouterBrowserTracingIntegration`. Import `solidRouterBrowserTracingIntegration` from `@sentry/solid/solidrouter` and add it to `Sentry.init` ```js import * as Sentry from '@​sentry/solid'; import { solidRouterBrowserTracingIntegration, withSentryRouterRouting } from '@​sentry/solid/solidrouter'; import { Router } from '@​solidjs/router'; Sentry.init({ dsn: '__PUBLIC_DSN__', integrations: [solidRouterBrowserTracingIntegration()], tracesSampleRate: 1.0, // Capture 100% of the transactions }); const SentryRouter = withSentryRouterRouting(Router); ``` - **feat(core): Return client from init method ([#​12585](https://togithub.com/getsentry/sentry-javascript/issues/12585))** `Sentry.init()` now returns a client directly, so you don't need to explicitly call `getClient()` anymore: ```js const client = Sentry.init(); ``` - **feat(nextjs): Add `deleteSourcemapsAfterUpload` option ([#​12457](https://togithub.com/getsentry/sentry-javascript/issues/12457))** This adds an easy way to delete sourcemaps immediately after uploading them: ```js module.exports = withSentryConfig(nextConfig, { sourcemaps: { deleteSourcemapsAfterUpload: true, }, }); ``` - **feat(node): Allow to configure `maxSpanWaitDuration` ([#​12610](https://togithub.com/getsentry/sentry-javascript/issues/12610))** Adds configuration option for the max. duration in seconds that the SDK will wait for parent spans to be finished before discarding a span. The SDK will automatically clean up spans that have no finished parent after this duration. This is necessary to prevent memory leaks in case of parent spans that are never finished or otherwise dropped/missing. However, if you have very long-running spans in your application, a shorter duration might cause spans to be discarded too early. In this case, you can increase this duration to a value that fits your expected data. ##### Other Changes - feat(feedback): Extra check for iPad in screenshot support ([#​12593](https://togithub.com/getsentry/sentry-javascript/issues/12593)) - fix(bundle): Ensure CDN bundles do not overwrite `window.Sentry` ([#​12580](https://togithub.com/getsentry/sentry-javascript/issues/12580)) - fix(feedback): Inject preact from feedbackModal into feedbackScreenshot integration ([#​12535](https://togithub.com/getsentry/sentry-javascript/issues/12535)) - fix(node): Re-throw errors from koa middleware ([#​12609](https://togithub.com/getsentry/sentry-javascript/issues/12609)) - fix(remix): Mark `isRemixV2` as optional in exposed types. ([#​12614](https://togithub.com/getsentry/sentry-javascript/issues/12614)) - ref(node): Add error message to NodeFetch log ([#​12612](https://togithub.com/getsentry/sentry-javascript/issues/12612)) Work in this release was contributed by [@​n4bb12](https://togithub.com/n4bb12). Thank you for your contribution!
getsentry/sentry-javascript-bundler-plugins (@​sentry/vite-plugin) ### [`v2.20.1`](https://togithub.com/getsentry/sentry-javascript-bundler-plugins/blob/HEAD/CHANGELOG.md#2201) [Compare Source](https://togithub.com/getsentry/sentry-javascript-bundler-plugins/compare/2.20.0...2.20.1) - feat(telemetry): Collect whether applicationKey is set ([#​559](https://togithub.com/getsentry/sentry-javascript-bundler-plugins/issues/559)) - fix: Wait for tasks depending on sourcemaps before deleting ([#​557](https://togithub.com/getsentry/sentry-javascript-bundler-plugins/issues/557))
typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin) ### [`v7.15.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#7150-2024-07-01) [Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v7.14.1...v7.15.0) ##### 🚀 Features - **eslint-plugin:** \[array-type] detect `Readonly` case - **eslint-plugin:** back-port new rules around empty object types from v8 ##### 🩹 Fixes - disable `EXPERIMENTAL_useProjectService` in `disabled-type-checked` shared config - **eslint-plugin:** \[no-unsafe-return] differentiate a types-error any from a true any - **eslint-plugin:** \[no-unsafe-call] differentiate a types-error any from a true any ##### ❤️ Thank You - auvred - Kim Sang Du - rgehbt - Vinccool96 You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website. ### [`v7.14.1`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#7141-2024-06-24) [Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v7.14.0...v7.14.1) ##### 🩹 Fixes - **eslint-plugin:** \[prefer-nullish-coalescing] treat enums and literals as their underlying primitive types - **eslint-plugin:** \[prefer-nullish-coalescing] ensure ternary fix does not remove parens ##### ❤️ Thank You - Jake Bailey You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website. ### [`v7.14.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#7140-2024-06-24) [Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v7.13.1...v7.14.0) ##### 🚀 Features - support TypeScript 5.5 ##### 🩹 Fixes - **eslint-plugin:** \[no-extraneous-class] handle abstract members - **eslint-plugin:** \[prefer-nullish-coalescing] handle intersected primitive types - **eslint-plugin:** \[no-invalid-this] support AccessorProperty ##### ❤️ Thank You - Brad Zacher - cm-ayf - Jake Bailey - James Zhan - Joshua Chen - yoshi2no You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
typescript-eslint/typescript-eslint (@​typescript-eslint/parser) ### [`v7.15.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#7150-2024-07-01) [Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v7.14.1...v7.15.0) This was a version bump only for parser to align it with other projects, there were no code changes. You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website. ### [`v7.14.1`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#7141-2024-06-24) [Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v7.14.0...v7.14.1) This was a version bump only for parser to align it with other projects, there were no code changes. You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website. ### [`v7.14.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#7140-2024-06-24) [Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v7.13.1...v7.14.0) ##### 🚀 Features - support TypeScript 5.5 ##### ❤️ Thank You - Brad Zacher - cm-ayf - Jake Bailey - James Zhan - Joshua Chen - yoshi2no You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
csstools/postcss-plugins (postcss-preset-env) ### [`v9.5.15`](https://togithub.com/csstools/postcss-plugins/blob/HEAD/plugin-packs/postcss-preset-env/CHANGELOG.md#9515) [Compare Source](https://togithub.com/csstools/postcss-plugins/compare/2f0ad9c194b14b5737bdf3e4a42625ee48568942...2b9fd57c1f7ba9f9b87b4662173f7deb4f32a4e3) *June 29, 2024* - Updated [`@csstools/postcss-logical-viewport-units`](https://togithub.com/csstools/postcss-plugins/tree/main/plugins/postcss-logical-viewport-units) to [`2.0.10`](https://togithub.com/csstools/postcss-plugins/tree/main/plugins/postcss-logical-viewport-units/CHANGELOG.md#2010) (patch) - Updated [`@csstools/postcss-text-decoration-shorthand`](https://togithub.com/csstools/postcss-plugins/tree/main/plugins/postcss-text-decoration-shorthand) to [`3.0.7`](https://togithub.com/csstools/postcss-plugins/tree/main/plugins/postcss-text-decoration-shorthand/CHANGELOG.md#307) (patch) - Updated [`@csstools/postcss-light-dark-function`](https://togithub.com/csstools/postcss-plugins/tree/main/plugins/postcss-light-dark-function) to [`1.0.6`](https://togithub.com/csstools/postcss-plugins/tree/main/plugins/postcss-light-dark-function/CHANGELOG.md#106) (patch) - Updated [`@csstools/postcss-exponential-functions`](https://togithub.com/csstools/postcss-plugins/tree/main/plugins/postcss-exponential-functions) to [`1.0.8`](https://togithub.com/csstools/postcss-plugins/tree/main/plugins/postcss-exponential-functions/CHANGELOG.md#108) (patch) - Updated [`@csstools/postcss-media-minmax`](https://togithub.com/csstools/postcss-plugins/tree/main/plugins/postcss-media-minmax) to [`1.1.7`](https://togithub.com/csstools/postcss-plugins/tree/main/plugins/postcss-media-minmax/CHANGELOG.md#117) (patch) - Updated [`@csstools/postcss-media-queries-aspect-ratio-number-values`](https://togithub.com/csstools/postcss-plugins/tree/main/plugins/postcss-media-queries-aspect-ratio-number-values) to [`2.0.10`](https://togithub.com/csstools/postcss-plugins/tree/main/plugins/postcss-media-queries-aspect-ratio-number-values/CHANGELOG.md#2010) (patch) - Updated [`@csstools/postcss-stepped-value-functions`](https://togithub.com/csstools/postcss-plugins/tree/main/plugins/postcss-stepped-value-functions) to [`3.0.9`](https://togithub.com/csstools/postcss-plugins/tree/main/plugins/postcss-stepped-value-functions/CHANGELOG.md#309) (patch) - Updated [`@csstools/postcss-trigonometric-functions`](https://togithub.com/csstools/postcss-plugins/tree/main/plugins/postcss-trigonometric-functions) to [`3.0.9`](https://togithub.com/csstools/postcss-plugins/tree/main/plugins/postcss-trigonometric-functions/CHANGELOG.md#309) (patch) - Updated [`postcss-custom-media`](https://togithub.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-media) to [`10.0.7`](https://togithub.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-media/CHANGELOG.md#1007) (patch) - Updated [`postcss-custom-properties`](https://togithub.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties) to [`13.3.11`](https://togithub.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-properties/CHANGELOG.md#13311) (patch) - Updated [`postcss-custom-selectors`](https://togithub.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-selectors) to [`7.1.11`](https://togithub.com/csstools/postcss-plugins/tree/main/plugins/postcss-custom-selectors/CHANGELOG.md#7111) (patch) - Updated [`@csstools/postcss-color-function`](https://togithub.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-function) to [`3.0.17`](https://togithub.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-function/CHANGELOG.md#3017) (patch) - Updated [`@csstools/postcss-color-mix-function`](https://togithub.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-mix-function) to [`2.0.17`](https://togithub.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-mix-function/CHANGELOG.md#2017) (patch) - Updated [`@csstools/postcss-gamut-mapping`](https://togithub.com/csstools/postcss-plugins/tree/main/plugins/postcss-gamut-mapping) to [`1.0.10`](https://togithub.com/csstools/postcss-plugins/tree/main/plugins/postcss-gamut-mapping/CHANGELOG.md#1010) (patch) - Updated [`@csstools/postcss-gradients-interpolation-method`](https://togithub.com/csstools/postcss-plugins/tree/main/plugins/postcss-gradients-interpolation-method) to [`4.0.18`](https://togithub.com/csstools/postcss-plugins/tree/main/plugins/postcss-gradients-interpolation-method/CHANGELOG.md#4018) (patch) - Updated [`@csstools/postcss-hwb-function`](https://togithub.com/csstools/postcss-plugins/tree/main/plugins/postcss-hwb-function) to [`3.0.16`](https://togithub.com/csstools/postcss-plugins/tree/main/plugins/postcss-hwb-function/CHANGELOG.md#3016) (patch) - Updated [`@csstools/postcss-oklab-function`](https://togithub.com/csstools/postcss-plugins/tree/main/plugins/postcss-oklab-function) to [`3.0.17`](https://togithub.com/csstools/postcss-plugins/tree/main/plugins/postcss-oklab-function/CHANGELOG.md#3017) (patch) - Updated [`@csstools/postcss-relative-color-syntax`](https://togithub.com/csstools/postcss-plugins/tree/main/plugins/postcss-relative-color-syntax) to [`2.0.17`](https://togithub.com/csstools/postcss-plugins/tree/main/plugins/postcss-relative-color-syntax/CHANGELOG.md#2017) (patch) - Updated [`postcss-color-functional-notation`](https://togithub.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-functional-notation) to [`6.0.12`](https://togithub.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-functional-notation/CHANGELOG.md#6012) (patch) - Updated [`postcss-lab-function`](https://togithub.com/csstools/postcss-plugins/tree/main/plugins/postcss-lab-function) to [`6.0.17`](https://togithub.com/csstools/postcss-plugins/tree/main/plugins/postcss-lab-function/CHANGELOG.md#6017) (patch)
PostHog/posthog-js (posthog-js) ### [`v1.142.1`](https://togithub.com/PostHog/posthog-js/blob/HEAD/CHANGELOG.md#11421---2024-06-28) [Compare Source](https://togithub.com/PostHog/posthog-js/compare/v1.142.0...v1.142.1) - feat: warn when distinct id invalid for replay ([#​1277](https://togithub.com/PostHog/posthog-js/issues/1277)) ### [`v1.142.0`](https://togithub.com/PostHog/posthog-js/blob/HEAD/CHANGELOG.md#11420---2024-06-28) [Compare Source](https://togithub.com/PostHog/posthog-js/compare/v1.141.4...v1.142.0) - feat: Improved various bundles ([#​1265](https://togithub.com/PostHog/posthog-js/issues/1265)) ### [`v1.141.4`](https://togithub.com/PostHog/posthog-js/blob/HEAD/CHANGELOG.md#11414---2024-06-26) [Compare Source](https://togithub.com/PostHog/posthog-js/compare/v1.141.3...v1.141.4) - fix: use includes over contains ([#​1275](https://togithub.com/PostHog/posthog-js/issues/1275)) - chore: add browsertack build name ([#​1271](https://togithub.com/PostHog/posthog-js/issues/1271)) ### [`v1.141.3`](https://togithub.com/PostHog/posthog-js/blob/HEAD/CHANGELOG.md#11413---2024-06-25) [Compare Source](https://togithub.com/PostHog/posthog-js/compare/v1.141.2...v1.141.3) - fix: dropped styles on route transition ([#​1272](https://togithub.com/PostHog/posthog-js/issues/1272)) ### [`v1.141.2`](https://togithub.com/PostHog/posthog-js/blob/HEAD/CHANGELOG.md#11412---2024-06-25) [Compare Source](https://togithub.com/PostHog/posthog-js/compare/v1.141.1...v1.141.2) ### [`v1.141.1`](https://togithub.com/PostHog/posthog-js/blob/HEAD/CHANGELOG.md#11411---2024-06-25) [Compare Source](https://togithub.com/PostHog/posthog-js/compare/v1.141.0...v1.141.1) - fix: exception autocapture ([#​1261](https://togithub.com/PostHog/posthog-js/issues/1261)) ### [`v1.141.0`](https://togithub.com/PostHog/posthog-js/blob/HEAD/CHANGELOG.md#11410---2024-06-24) [Compare Source](https://togithub.com/PostHog/posthog-js/compare/v1.140.1...v1.141.0) - feat(surveys): add configurable delay to popup surveys ([#​1228](https://togithub.com/PostHog/posthog-js/issues/1228)) - chore: update pnpm action setup worfklow version ([#​1268](https://togithub.com/PostHog/posthog-js/issues/1268))
Microsoft/TypeScript (typescript) ### [`v5.5.3`](https://togithub.com/Microsoft/TypeScript/compare/v5.5.2...f0e992167440686f948965e5441a918b34251886) [Compare Source](https://togithub.com/Microsoft/TypeScript/compare/v5.5.2...v5.5.3)
vitejs/vite (vite) ### [`v5.3.2`](https://togithub.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#small532-2024-06-27-small) [Compare Source](https://togithub.com/vitejs/vite/compare/v5.3.1...v5.3.2) - fix(client): uniform variable `location` ([#​17528](https://togithub.com/vitejs/vite/issues/17528)) ([a8e2f6f](https://togithub.com/vitejs/vite/commit/a8e2f6f)), closes [#​17528](https://togithub.com/vitejs/vite/issues/17528) - fix(deps): update all non-major dependencies ([#​17494](https://togithub.com/vitejs/vite/issues/17494)) ([bf123f2](https://togithub.com/vitejs/vite/commit/bf123f2)), closes [#​17494](https://togithub.com/vitejs/vite/issues/17494) - fix(typescript): correctly expand ${configDir} in tsconfig.json ([#​17576](https://togithub.com/vitejs/vite/issues/17576)) ([24c799b](https://togithub.com/vitejs/vite/commit/24c799b)), closes [#​17576](https://togithub.com/vitejs/vite/issues/17576) - chore: fix some comments ([#​17495](https://togithub.com/vitejs/vite/issues/17495)) ([ec16a5e](https://togithub.com/vitejs/vite/commit/ec16a5e)), closes [#​17495](https://togithub.com/vitejs/vite/issues/17495) - chore(deps): update all non-major dependencies ([#​17553](https://togithub.com/vitejs/vite/issues/17553)) ([a33a97f](https://togithub.com/vitejs/vite/commit/a33a97f)), closes [#​17553](https://togithub.com/vitejs/vite/issues/17553) - chore(deps): update dependency eslint to v9 ([#​16661](https://togithub.com/vitejs/vite/issues/16661)) ([6c10662](https://togithub.com/vitejs/vite/commit/6c10662)), closes [#​16661](https://togithub.com/vitejs/vite/issues/16661) - chore(deps): update es-module-lexer to 1.5.4 ([#​17555](https://togithub.com/vitejs/vite/issues/17555)) ([2d6672f](https://togithub.com/vitejs/vite/commit/2d6672f)), closes [#​17555](https://togithub.com/vitejs/vite/issues/17555) - refactor(optimizer): use early continues ([#​17551](https://togithub.com/vitejs/vite/issues/17551)) ([7c06ef0](https://togithub.com/vitejs/vite/commit/7c06ef0)), closes [#​17551](https://togithub.com/vitejs/vite/issues/17551)

Configuration

📅 Schedule: Branch creation - "before 4am on Monday" (UTC), 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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.



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