openfun / richie

:pencil: An opensource CMS to build education portals
https://richie.education
MIT License
260 stars 84 forks source link

⬆️(dependencies) update js dependencies #2453

Closed renovate[bot] closed 3 months ago

renovate[bot] commented 3 months ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@sentry/browser (source) 8.9.2 -> 8.13.0 age adoption passing confidence
@sentry/types (source) 8.9.2 -> 8.13.0 age adoption passing confidence
@storybook/addon-actions (source) 8.1.9 -> 8.1.11 age adoption passing confidence
@storybook/addon-essentials (source) 8.1.9 -> 8.1.11 age adoption passing confidence
@storybook/addon-interactions (source) 8.1.9 -> 8.1.11 age adoption passing confidence
@storybook/addon-links (source) 8.1.9 -> 8.1.11 age adoption passing confidence
@storybook/addon-mdx-gfm (source) 8.1.9 -> 8.1.11 age adoption passing confidence
@storybook/react (source) 8.1.9 -> 8.1.11 age adoption passing confidence
@storybook/react-webpack5 (source) 8.1.9 -> 8.1.11 age adoption passing confidence
@storybook/test (source) 8.1.9 -> 8.1.11 age adoption passing confidence
@tanstack/query-core (source) 5.45.0 -> 5.49.1 age adoption passing confidence
@tanstack/query-sync-storage-persister (source) 5.45.0 -> 5.49.1 age adoption passing confidence
@tanstack/react-query (source) 5.45.1 -> 5.49.2 age adoption passing confidence
@tanstack/react-query-persist-client (source) 5.45.1 -> 5.49.2 age adoption passing confidence
@testing-library/dom 10.1.0 -> 10.2.0 age adoption passing confidence
@types/uuid (source) 9.0.8 -> 10.0.0 age adoption passing confidence
@typescript-eslint/eslint-plugin (source) 7.13.0 -> 7.14.1 age adoption passing confidence
@typescript-eslint/parser (source) 7.13.0 -> 7.14.1 age adoption passing confidence
cypress (source) 13.11.0 -> 13.12.0 age adoption passing confidence
eslint-plugin-jsx-a11y 6.8.0 -> 6.9.0 age adoption passing confidence
eslint-plugin-react 7.34.2 -> 7.34.3 age adoption passing confidence
glob 10.4.1 -> 10.4.2 age adoption passing confidence
nodemon (source) 3.1.3 -> 3.1.4 age adoption passing confidence
react-router-dom (source) 6.23.1 -> 6.24.0 age adoption passing confidence
sass 1.77.5 -> 1.77.6 age adoption passing confidence
storybook (source) 8.1.9 -> 8.1.11 age adoption passing confidence
typescript (source) 5.4.5 -> 5.5.2 age adoption passing confidence
webpack 5.92.0 -> 5.92.1 age adoption passing confidence

Release Notes

getsentry/sentry-javascript (@​sentry/browser) ### [`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! ### [`v8.11.0`](https://togithub.com/getsentry/sentry-javascript/releases/tag/8.11.0) [Compare Source](https://togithub.com/getsentry/sentry-javascript/compare/8.10.0...8.11.0) ##### Important Changes - **feat(core): Add `parentSpan` option to `startSpan*` APIs ([#​12567](https://togithub.com/getsentry/sentry-javascript/issues/12567))** We've made it easier to create a span as a child of a specific span via the startSpan\* APIs. This should allow you to explicitly manage the parent-child relationship of your spans better. ```js Sentry.startSpan({ name: 'root' }, parent => { const span = Sentry.startInactiveSpan({ name: 'xxx', parentSpan: parent }); Sentry.startSpan({ name: 'xxx', parentSpan: parent }, () => {}); Sentry.startSpanManual({ name: 'xxx', parentSpan: parent }, () => {}); }); ``` ##### Other Changes - feat(node): Detect release from more providers ([#​12529](https://togithub.com/getsentry/sentry-javascript/issues/12529)) - fix(profiling-node): Use correct getGlobalScope import ([#​12564](https://togithub.com/getsentry/sentry-javascript/issues/12564)) - fix(profiling-node) sample timestamps need to be in seconds ([#​12563](https://togithub.com/getsentry/sentry-javascript/issues/12563)) - ref: Align `@sentry/node` exports from framework SDKs. ([#​12589](https://togithub.com/getsentry/sentry-javascript/issues/12589)) #### Bundle size 📦 | Path | Size | | ---------------------------------------------------------------- | ----------------- | | [@​sentry/browser](https://togithub.com/sentry/browser) | 22.22 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) (incl. Tracing) | 33.31 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) (incl. Tracing, Replay) | 69.09 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) (incl. Tracing, Replay) - with treeshaking flags | 62.41 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) (incl. Tracing, Replay with Canvas) | 73.14 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) (incl. Tracing, Replay, Feedback) | 85.31 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) (incl. Tracing, Replay, Feedback, metrics) | 87.17 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) (incl. metrics) | 26.5 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) (incl. Feedback) | 38.42 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) (incl. sendFeedback) | 26.85 KB | | [@​sentry/browser](https://togithub.com/sentry/browser) (incl. FeedbackAsync) | 31.42 KB | | [@​sentry/react](https://togithub.com/sentry/react) | 24.96 KB | | [@​sentry/react](https://togithub.com/sentry/react) (incl. Tracing) | 36.35 KB | | [@​sentry/vue](https://togithub.com/sentry/vue) | 26.32 KB | | [@​sentry/vue](https://togithub.com/sentry/vue) (incl. Tracing) | 35.16 KB | | [@​sentry/svelte](https://togithub.com/sentry/svelte) | 22.35 KB | | CDN Bundle | 23.41 KB | | CDN Bundle (incl. Tracing) | 35.04 KB | | CDN Bundle (incl. Tracing, Replay) | 69.17 KB | | CDN Bundle (incl. Tracing, Replay, Feedback) | 74.34 KB | | CDN Bundle - uncompressed | 68.76 KB | | CDN Bundle (incl. Tracing) - uncompressed | 103.61 KB | | CDN Bundle (incl. Tracing, Replay) - uncompressed | 214.08 KB | | CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed | 226.67 KB | | [@​sentry/nextjs](https://togithub.com/sentry/nextjs) (client) | 36.23 KB | | [@​sentry/sveltekit](https://togithub.com/sentry/sveltekit) (client) | 33.95 KB | | [@​sentry/node](https://togithub.com/sentry/node) | 112.99 KB | | [@​sentry/node](https://togithub.com/sentry/node) - without tracing | 90.4 KB | | [@​sentry/aws-serverless](https://togithub.com/sentry/aws-serverless) | 99.48 KB | ### [`v8.10.0`](https://togithub.com/getsentry/sentry-javascript/blob/HEAD/CHANGELOG.md#8100) [Compare Source](https://togithub.com/getsentry/sentry-javascript/compare/8.9.2...8.10.0) ##### Important Changes - **feat(remix): Migrate to `opentelemetry-instrumentation-remix`. ([#​12110](https://togithub.com/getsentry/sentry-javascript/issues/12110))** You can now simplify your remix instrumentation by opting-in like this: ```js const Sentry = require('@​sentry/remix'); Sentry.init({ dsn: YOUR_DSN // opt-in to new auto instrumentation autoInstrumentRemix: true, }); ``` With this setup, you do not need to add e.g. `wrapExpressCreateRequestHandler` anymore. Additionally, the quality of the captured data improves. The old way to use `@sentry/remix` continues to work, but it is encouraged to use the new setup. ##### Other Changes - feat(browser): Export `thirdPartyErrorFilterIntegration` from `@sentry/browser` ([#​12512](https://togithub.com/getsentry/sentry-javascript/issues/12512)) - feat(feedback): Allow passing `tags` field to any feedback config param ([#​12197](https://togithub.com/getsentry/sentry-javascript/issues/12197)) - feat(feedback): Improve screenshot quality for retina displays ([#​12487](https://togithub.com/getsentry/sentry-javascript/issues/12487)) - feat(feedback): Screenshots don't resize after cropping ([#​12481](https://togithub.com/getsentry/sentry-javascript/issues/12481)) - feat(node) add max lineno and colno limits ([#​12514](https://togithub.com/getsentry/sentry-javascript/issues/12514)) - feat(profiling) add global profile context while profiler is running ([#​12394](https://togithub.com/getsentry/sentry-javascript/issues/12394)) - feat(react): Add React version to events ([#​12390](https://togithub.com/getsentry/sentry-javascript/issues/12390)) - feat(replay): Add url to replay hydration error breadcrumb type ([#​12521](https://togithub.com/getsentry/sentry-javascript/issues/12521)) - fix(core): Ensure standalone spans respect sampled flag ([#​12533](https://togithub.com/getsentry/sentry-javascript/issues/12533)) - fix(core): Use maxValueLength in extra error data integration ([#​12174](https://togithub.com/getsentry/sentry-javascript/issues/12174)) - fix(feedback): Fix scrolling after feedback submission ([#​12499](https://togithub.com/getsentry/sentry-javascript/issues/12499)) - fix(feedback): Send feedback rejects invalid responses ([#​12518](https://togithub.com/getsentry/sentry-javascript/issues/12518)) - fix(nextjs): Update [@​rollup/plugin-commonjs](https://togithub.com/rollup/plugin-commonjs) ([#​12527](https://togithub.com/getsentry/sentry-javascript/issues/12527)) - fix(node): Ensure status is correct for http server span errors ([#​12477](https://togithub.com/getsentry/sentry-javascript/issues/12477)) - fix(node): Unify`getDynamicSamplingContextFromSpan` ([#​12522](https://togithub.com/getsentry/sentry-javascript/issues/12522)) - fix(profiling): continuous profile chunks should be in seconds ([#​12532](https://togithub.com/getsentry/sentry-javascript/issues/12532)) - fix(remix): Add nativeFetch support for accessing request headers ([#​12479](https://togithub.com/getsentry/sentry-javascript/issues/12479)) - fix(remix): Export no-op as `captureRemixServerException` from client SDK ([#​12497](https://togithub.com/getsentry/sentry-javascript/issues/12497)) - ref(node) refactor contextlines to use readline ([#​12221](https://togithub.com/getsentry/sentry-javascript/issues/12221)) Work in this release was contributed by [@​AndreyKovanov](https://togithub.com/AndreyKovanov) and [@​kiliman](https://togithub.com/kiliman). Thank you for your contributions!
storybookjs/storybook (@​storybook/addon-actions) ### [`v8.1.11`](https://togithub.com/storybookjs/storybook/blob/HEAD/CHANGELOG.md#8111) [Compare Source](https://togithub.com/storybookjs/storybook/compare/v8.1.10...v8.1.11) - Telemetry: Detect Node version - [#​28299](https://togithub.com/storybookjs/storybook/pull/28299), thanks [@​yannbf](https://togithub.com/yannbf)! - Test: Upgrade deps of [@​storybook/test](https://togithub.com/storybook/test) - [#​27862](https://togithub.com/storybookjs/storybook/pull/27862), thanks [@​kasperpeulen](https://togithub.com/kasperpeulen)! ### [`v8.1.10`](https://togithub.com/storybookjs/storybook/blob/HEAD/CHANGELOG.md#8110) [Compare Source](https://togithub.com/storybookjs/storybook/compare/v8.1.9...v8.1.10) - Addon-interactions: Fix deprecation warnings - [#​28250](https://togithub.com/storybookjs/storybook/pull/28250), thanks [@​shilman](https://togithub.com/shilman)! - Test: Upgrade deps of [@​storybook/test](https://togithub.com/storybook/test) - [#​27862](https://togithub.com/storybookjs/storybook/pull/27862), thanks [@​kasperpeulen](https://togithub.com/kasperpeulen)!
TanStack/query (@​tanstack/query-core) ### [`v5.49.1`](https://togithub.com/TanStack/query/releases/tag/v5.49.1) [Compare Source](https://togithub.com/TanStack/query/compare/v5.49.0...v5.49.1) Version 5.49.1 - 6/30/24, 5:49 AM ##### Changes ##### Fix - react-query: add experimental beforeQuery/afterQuery client options ([#​7650](https://togithub.com/TanStack/query/issues/7650)) ([`8927e4c`](https://togithub.com/TanStack/query/commit/8927e4c)) by Tanner Linsley ##### Ci - Optimise Nx workflow ([#​7648](https://togithub.com/TanStack/query/issues/7648)) ([`a80cea3`](https://togithub.com/TanStack/query/commit/a80cea3)) by Lachlan Collins ##### Docs - examples: Update Next.js version ([#​7649](https://togithub.com/TanStack/query/issues/7649)) ([`f454bf1`](https://togithub.com/TanStack/query/commit/f454bf1)) by Lachlan Collins ##### Packages - [@​tanstack/eslint-plugin-query](https://togithub.com/tanstack/eslint-plugin-query)[@​5](https://togithub.com/5).49.1 - [@​tanstack/query-async-storage-persister](https://togithub.com/tanstack/query-async-storage-persister)[@​5](https://togithub.com/5).49.1 - [@​tanstack/query-broadcast-client-experimental](https://togithub.com/tanstack/query-broadcast-client-experimental)[@​5](https://togithub.com/5).49.1 - [@​tanstack/query-core](https://togithub.com/tanstack/query-core)[@​5](https://togithub.com/5).49.1 - [@​tanstack/query-devtools](https://togithub.com/tanstack/query-devtools)[@​5](https://togithub.com/5).49.1 - [@​tanstack/query-persist-client-core](https://togithub.com/tanstack/query-persist-client-core)[@​5](https://togithub.com/5).49.1 - [@​tanstack/query-sync-storage-persister](https://togithub.com/tanstack/query-sync-storage-persister)[@​5](https://togithub.com/5).49.1 - [@​tanstack/react-query](https://togithub.com/tanstack/react-query)[@​5](https://togithub.com/5).49.1 - [@​tanstack/react-query-devtools](https://togithub.com/tanstack/react-query-devtools)[@​5](https://togithub.com/5).49.1 - [@​tanstack/react-query-persist-client](https://togithub.com/tanstack/react-query-persist-client)[@​5](https://togithub.com/5).49.1 - [@​tanstack/react-query-next-experimental](https://togithub.com/tanstack/react-query-next-experimental)[@​5](https://togithub.com/5).49.1 - [@​tanstack/solid-query](https://togithub.com/tanstack/solid-query)[@​5](https://togithub.com/5).49.1 - [@​tanstack/solid-query-devtools](https://togithub.com/tanstack/solid-query-devtools)[@​5](https://togithub.com/5).49.1 - [@​tanstack/solid-query-persist-client](https://togithub.com/tanstack/solid-query-persist-client)[@​5](https://togithub.com/5).49.1 - [@​tanstack/svelte-query](https://togithub.com/tanstack/svelte-query)[@​5](https://togithub.com/5).49.1 - [@​tanstack/svelte-query-devtools](https://togithub.com/tanstack/svelte-query-devtools)[@​5](https://togithub.com/5).49.1 - [@​tanstack/svelte-query-persist-client](https://togithub.com/tanstack/svelte-query-persist-client)[@​5](https://togithub.com/5).49.1 - [@​tanstack/vue-query](https://togithub.com/tanstack/vue-query)[@​5](https://togithub.com/5).49.1 - [@​tanstack/vue-query-devtools](https://togithub.com/tanstack/vue-query-devtools)[@​5](https://togithub.com/5).49.1 - [@​tanstack/angular-query-devtools-experimental](https://togithub.com/tanstack/angular-query-devtools-experimental)[@​5](https://togithub.com/5).49.1 - [@​tanstack/angular-query-experimental](https://togithub.com/tanstack/angular-query-experimental)[@​5](https://togithub.com/5).49.1 ### [`v5.49.0`](https://togithub.com/TanStack/query/releases/tag/v5.49.0) [Compare Source](https://togithub.com/TanStack/query/compare/v5.48.0...v5.49.0) Version 5.49.0 - 6/29/24, 6:21 AM ##### Changes ##### Feat - hydration: `dehydrate.serialize` and `hydrate.deserialize` ([#​7615](https://togithub.com/TanStack/query/issues/7615)) ([`8cbe7d5`](https://togithub.com/TanStack/query/commit/8cbe7d5)) by Julius Marminge ##### Chore - Update ESLint config ([#​7637](https://togithub.com/TanStack/query/issues/7637)) ([`febbde6`](https://togithub.com/TanStack/query/commit/febbde6)) by Lachlan Collins - Migrate to ESLint flat config ([#​7636](https://togithub.com/TanStack/query/issues/7636)) ([`e6a0fdd`](https://togithub.com/TanStack/query/commit/e6a0fdd)) by Lachlan Collins ##### Ci - Use Node 20 for CodeSandbox examples ([#​7646](https://togithub.com/TanStack/query/issues/7646)) ([`033e739`](https://togithub.com/TanStack/query/commit/033e739)) by Lachlan Collins ##### Docs - remove suspense reference to useQuery ([#​7640](https://togithub.com/TanStack/query/issues/7640)) ([`87c8e01`](https://togithub.com/TanStack/query/commit/87c8e01)) by [@​alexander-svendsen](https://togithub.com/alexander-svendsen) - examples: code refactoring and type improvement ([#​7634](https://togithub.com/TanStack/query/issues/7634)) ([`8d75aaa`](https://togithub.com/TanStack/query/commit/8d75aaa)) by [@​aziyatali](https://togithub.com/aziyatali) - Remove the variable assignment from example code ([#​7623](https://togithub.com/TanStack/query/issues/7623)) ([`8b89941`](https://togithub.com/TanStack/query/commit/8b89941)) by Kenrick Beckett ##### Tests - Use recommended `@testing-library/svelte` setup ([#​7645](https://togithub.com/TanStack/query/issues/7645)) ([`003e1a8`](https://togithub.com/TanStack/query/commit/003e1a8)) by Lachlan Collins ##### Packages - [@​tanstack/eslint-plugin-query](https://togithub.com/tanstack/eslint-plugin-query)[@​5](https://togithub.com/5).49.0 - [@​tanstack/query-async-storage-persister](https://togithub.com/tanstack/query-async-storage-persister)[@​5](https://togithub.com/5).49.0 - [@​tanstack/query-broadcast-client-experimental](https://togithub.com/tanstack/query-broadcast-client-experimental)[@​5](https://togithub.com/5).49.0 - [@​tanstack/query-core](https://togithub.com/tanstack/query-core)[@​5](https://togithub.com/5).49.0 - [@​tanstack/query-devtools](https://togithub.com/tanstack/query-devtools)[@​5](https://togithub.com/5).49.0 - [@​tanstack/query-persist-client-core](https://togithub.com/tanstack/query-persist-client-core)[@​5](https://togithub.com/5).49.0 - [@​tanstack/query-sync-storage-persister](https://togithub.com/tanstack/query-sync-storage-persister)[@​5](https://togithub.com/5).49.0 - [@​tanstack/react-query](https://togithub.com/tanstack/react-query)[@​5](https://togithub.com/5).49.0 - [@​tanstack/react-query-devtools](https://togithub.com/tanstack/react-query-devtools)[@​5](https://togithub.com/5).49.0 - [@​tanstack/react-query-persist-client](https://togithub.com/tanstack/react-query-persist-client)[@​5](https://togithub.com/5).49.0 - [@​tanstack/react-query-next-experimental](https://togithub.com/tanstack/react-query-next-experimental)[@​5](https://togithub.com/5).49.0 - [@​tanstack/solid-query](https://togithub.com/tanstack/solid-query)[@​5](https://togithub.com/5).49.0 - [@​tanstack/solid-query-devtools](https://togithub.com/tanstack/solid-query-devtools)[@​5](https://togithub.com/5).49.0 - [@​tanstack/solid-query-persist-client](https://togithub.com/tanstack/solid-query-persist-client)[@​5](https://togithub.com/5).49.0 - [@​tanstack/svelte-query](https://togithub.com/tanstack/svelte-query)[@​5](https://togithub.com/5).49.0 - [@​tanstack/svelte-query-devtools](https://togithub.com/tanstack/svelte-query-devtools)[@​5](https://togithub.com/5).49.0 - [@​tanstack/svelte-query-persist-client](https://togithub.com/tanstack/svelte-query-persist-client)[@​5](https://togithub.com/5).49.0 - [@​tanstack/vue-query](https://togithub.com/tanstack/vue-query)[@​5](https://togithub.com/5).49.0 - [@​tanstack/vue-query-devtools](https://togithub.com/tanstack/vue-query-devtools)[@​5](https://togithub.com/5).49.0 - [@​tanstack/angular-query-devtools-experimental](https://togithub.com/tanstack/angular-query-devtools-experimental)[@​5](https://togithub.com/5).49.0 - [@​tanstack/angular-query-experimental](https://togithub.com/tanstack/angular-query-experimental)[@​5](https://togithub.com/5).49.0 ### [`v5.48.0`](https://togithub.com/TanStack/query/releases/tag/v5.48.0) [Compare Source](https://togithub.com/TanStack/query/compare/v5.47.0...v5.48.0) Version 5.48.0 - 6/25/24, 2:14 PM #### Changes ##### Feat - core: Add possibility to pass a callback to enabled. ([#​7566](https://togithub.com/TanStack/query/issues/7566)) ([`31b9ab4`](https://togithub.com/TanStack/query/commit/31b9ab49)) by John #### Packages - [@​tanstack/query-core](https://togithub.com/tanstack/query-core)[@​5](https://togithub.com/5).48.0 - [@​tanstack/query-broadcast-client-experimental](https://togithub.com/tanstack/query-broadcast-client-experimental)[@​5](https://togithub.com/5).48.0 - [@​tanstack/query-persist-client-core](https://togithub.com/tanstack/query-persist-client-core)[@​5](https://togithub.com/5).48.0 - [@​tanstack/query-sync-storage-persister](https://togithub.com/tanstack/query-sync-storage-persister)[@​5](https://togithub.com/5).48.0 - [@​tanstack/react-query](https://togithub.com/tanstack/react-query)[@​5](https://togithub.com/5).48.0 - [@​tanstack/react-query-devtools](https://togithub.com/tanstack/react-query-devtools)[@​5](https://togithub.com/5).48.0 - [@​tanstack/react-query-persist-client](https://togithub.com/tanstack/react-query-persist-client)[@​5](https://togithub.com/5).48.0 - [@​tanstack/react-query-next-experimental](https://togithub.com/tanstack/react-query-next-experimental)[@​5](https://togithub.com/5).48.0 - [@​tanstack/solid-query](https://togithub.com/tanstack/solid-query)[@​5](https://togithub.com/5).48.0 - [@​tanstack/solid-query-devtools](https://togithub.com/tanstack/solid-query-devtools)[@​5](https://togithub.com/5).48.0 - [@​tanstack/solid-query-persist-client](https://togithub.com/tanstack/solid-query-persist-client)[@​5](https://togithub.com/5).48.0 - [@​tanstack/svelte-query](https://togithub.com/tanstack/svelte-query)[@​5](https://togithub.com/5).48.0 - [@​tanstack/svelte-query-devtools](https://togithub.com/tanstack/svelte-query-devtools)[@​5](https://togithub.com/5).48.0 - [@​tanstack/svelte-query-persist-client](https://togithub.com/tanstack/svelte-query-persist-client)[@​5](https://togithub.com/5).48.0 - [@​tanstack/vue-query](https://togithub.com/tanstack/vue-query)[@​5](https://togithub.com/5).48.0 - [@​tanstack/vue-query-devtools](https://togithub.com/tanstack/vue-query-devtools)[@​5](https://togithub.com/5).48.0 - [@​tanstack/angular-query-experimental](https://togithub.com/tanstack/angular-query-experimental)[@​5](https://togithub.com/5).48.0 - [@​tanstack/query-async-storage-persister](https://togithub.com/tanstack/query-async-storage-persister)[@​5](https://togithub.com/5).48.0 - [@​tanstack/angular-query-devtools-experimental](https://togithub.com/tanstack/angular-query-devtools-experimental)[@​5](https://togithub.com/5).48.0 ### [`v5.47.0`](https://togithub.com/TanStack/query/releases/tag/v5.47.0) [Compare Source](https://togithub.com/TanStack/query/compare/v5.45.0...v5.47.0) Version 5.47.0 - 6/25/24, 12:27 PM #### Changes ##### Feat - react-query: usePrefetchQuery ([#​7582](https://togithub.com/TanStack/query/issues/7582)) ([`fbfe940`](https://togithub.com/TanStack/query/commit/fbfe9409)) by Dominik Dorfmeister ##### Chore - Update typescript-eslint to v7 ([#​7610](https://togithub.com/TanStack/query/issues/7610)) ([`32bce35`](https://togithub.com/TanStack/query/commit/32bce35a)) by Lachlan Collins ##### Ci - Prevent uploading coverage files found in Nx cache ([#​7619](https://togithub.com/TanStack/query/issues/7619)) ([`6355244`](https://togithub.com/TanStack/query/commit/63552449)) by Lachlan Collins - Add tests for TS 4.7, 4.8, 4.9 ([#​7618](https://togithub.com/TanStack/query/issues/7618)) ([`15e42ba`](https://togithub.com/TanStack/query/commit/15e42ba4)) by Lachlan Collins - Add TS version tests ([#​7605](https://togithub.com/TanStack/query/issues/7605)) ([`8253a80`](https://togithub.com/TanStack/query/commit/8253a80b)) by Lachlan Collins #### Packages - [@​tanstack/eslint-plugin-query](https://togithub.com/tanstack/eslint-plugin-query)[@​5](https://togithub.com/5).47.0 - [@​tanstack/query-async-storage-persister](https://togithub.com/tanstack/query-async-storage-persister)[@​5](https://togithub.com/5).47.0 - [@​tanstack/query-broadcast-client-experimental](https://togithub.com/tanstack/query-broadcast-client-experimental)[@​5](https://togithub.com/5).47.0 - [@​tanstack/query-core](https://togithub.com/tanstack/query-core)[@​5](https://togithub.com/5).47.0 - [@​tanstack/query-devtools](https://togithub.com/tanstack/query-devtools)[@​5](https://togithub.com/5).47.0 - [@​tanstack/query-persist-client-core](https://togithub.com/tanstack/query-persist-client-core)[@​5](https://togithub.com/5).47.0 - [@​tanstack/query-sync-storage-persister](https://togithub.com/tanstack/query-sync-storage-persister)[@​5](https://togithub.com/5).47.0 - [@​tanstack/react-query](https://togithub.com/tanstack/react-query)[@​5](https://togithub.com/5).47.0 - [@​tanstack/react-query-devtools](https://togithub.com/tanstack/react-query-devtools)[@​5](https://togithub.com/5).47.0 - [@​tanstack/react-query-persist-client](https://togithub.com/tanstack/react-query-persist-client)[@​5](https://togithub.com/5).47.0 - [@​tanstack/react-query-next-experimental](https://togithub.com/tanstack/react-query-next-experimental)[@​5](https://togithub.com/5).47.0 - [@​tanstack/solid-query](https://togithub.com/tanstack/solid-query)[@​5](https://togithub.com/5).47.0 - [@​tanstack/solid-query-devtools](https://togithub.com/tanstack/solid-query-devtools)[@​5](https://togithub.com/5).47.0 - [@​tanstack/solid-query-persist-client](https://togithub.com/tanstack/solid-query-persist-client)[@​5](https://togithub.com/5).47.0 - [@​tanstack/svelte-query](https://togithub.com/tanstack/svelte-query)[@​5](https://togithub.com/5).47.0 - [@​tanstack/svelte-query-devtools](https://togithub.com/tanstack/svelte-query-devtools)[@​5](https://togithub.com/5).47.0 - [@​tanstack/svelte-query-persist-client](https://togithub.com/tanstack/svelte-query-persist-client)[@​5](https://togithub.com/5).47.0 - [@​tanstack/vue-query](https://togithub.com/tanstack/vue-query)[@​5](https://togithub.com/5).47.0 - [@​tanstack/angular-query-devtools-experimental](https://togithub.com/tanstack/angular-query-devtools-experimental)[@​5](https://togithub.com/5).47.0 - [@​tanstack/angular-query-experimental](https://togithub.com/tanstack/angular-query-experimental)[@​5](https://togithub.com/5).47.0 - [@​tanstack/vue-query-devtools](https://togithub.com/tanstack/vue-query-devtools)[@​5](https://togithub.com/5).47.0
testing-library/dom-testing-library (@​testing-library/dom) ### [`v10.2.0`](https://togithub.com/testing-library/dom-testing-library/releases/tag/v10.2.0) [Compare Source](https://togithub.com/testing-library/dom-testing-library/compare/v10.1.0...v10.2.0) ##### Features - Support anonymous custom elements when pretty printing DOM ([#​1319](https://togithub.com/testing-library/dom-testing-library/issues/1319)) ([0a8ad65](https://togithub.com/testing-library/dom-testing-library/commit/0a8ad65723efe47493d387c38f31082c7846d824))
typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin) ### [`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. ### [`v7.13.1`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#7131-2024-06-17) [Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v7.13.0...v7.13.1) ##### 🩹 Fixes - **eslint-plugin:** \[prefer-readonly] refine report locations - **eslint-plugin:** \[return-await] support explicit resource management - **eslint-plugin:** \[no-unsafe-member-access] differentiate a types-error any from a true any ##### ❤️ Thank You - Kirk Waiblinger - Yukihiro Hasegawa 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.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

Configuration

📅 Schedule: Branch creation - "before 7am 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 is behind base branch, 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.