UniversityOfHelsinkiCS / grapa

GRAdut Pikaisesti Alkuun
1 stars 0 forks source link

Update all non-major dependencies #49

Closed renovate[bot] closed 2 weeks ago

renovate[bot] commented 3 weeks ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@mui/icons-material (source) 5.15.20 -> 5.15.21 age adoption passing confidence
@mui/material (source) 5.15.20 -> 5.15.21 age adoption passing confidence
@mui/x-data-grid (source) 7.7.1 -> 7.8.0 age adoption passing confidence
@mui/x-date-pickers (source) 7.7.1 -> 7.8.0 age adoption passing confidence
@sentry/browser (source) 8.11.0 -> 8.13.0 age adoption passing confidence
@sentry/node (source) 8.11.0 -> 8.13.0 age adoption passing confidence
@tanstack/react-query (source) 5.45.1 -> 5.49.2 age adoption passing confidence
@tanstack/react-query-devtools (source) 5.45.1 -> 5.49.2 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.14.1 age adoption passing confidence
@typescript-eslint/parser (source) 7.13.1 -> 7.14.1 age adoption passing confidence
react-router-dom (source) 6.23.1 -> 6.24.0 age adoption passing confidence
vite (source) 5.3.1 -> 5.3.2 age adoption passing confidence

Release Notes

mui/material-ui (@​mui/icons-material) ### [`v5.15.21`](https://togithub.com/mui/material-ui/releases/tag/v5.15.21) [Compare Source](https://togithub.com/mui/material-ui/compare/v5.15.20...v5.15.21) *Jun 28, 2024* A big thanks to the 7 contributors who made this release possible. ##### `@mui/material@5.15.21` - \[Autocomplete] Fix renderOption props type ([@​DiegoAndai](https://togithub.com/DiegoAndai)) ([#​42709](https://togithub.com/mui/material-ui/issues/42709)) [@​DiegoAndai](https://togithub.com/DiegoAndai) - \[Stepper] Generate class for `nonLinear` prop ([@​alexismo](https://togithub.com/alexismo)) ([#​42677](https://togithub.com/mui/material-ui/issues/42677)) [@​alexismo](https://togithub.com/alexismo) ##### Docs - Use new email for sponsoring [@​oliviertassinari](https://togithub.com/oliviertassinari) - Fix 301 links ([@​alexfauquette](https://togithub.com/alexfauquette)) ([#​42700](https://togithub.com/mui/material-ui/issues/42700)) [@​alexfauquette](https://togithub.com/alexfauquette) - \[material-ui]\[Select] Fix the `SelectAutoWidth` demo menu item value ([@​Danielkhakbaz](https://togithub.com/Danielkhakbaz)) ([#​42696](https://togithub.com/mui/material-ui/issues/42696)) [@​Danielkhakbaz](https://togithub.com/Danielkhakbaz) - \[material-ui]\[Autocomplete] Fix more React 18.3 key spread warnings in demos ([#​42766](https://togithub.com/mui/material-ui/issues/42766)) [@​wbt](https://togithub.com/wbt) - \[material-ui] Fix sign in side image ([#​42708](https://togithub.com/mui/material-ui/issues/42708)) [@​zanivan](https://togithub.com/zanivan) - \[website] Add Ale to team ([#​42769](https://togithub.com/mui/material-ui/issues/42769)) [@​alelthomas](https://togithub.com/alelthomas) ##### Core - \[core] Cherry pick pnpm updates ([#​42763](https://togithub.com/mui/material-ui/issues/42763)) [@​DiegoAndai](https://togithub.com/DiegoAndai) - \[website] Add Armin to the team members ([@​arminmeh](https://togithub.com/arminmeh)) ([#​42681](https://togithub.com/mui/material-ui/issues/42681)) [@​arminmeh](https://togithub.com/arminmeh) - \[website] Open Staff Engineer role for Pigment CSS ([@​mnajdova](https://togithub.com/mnajdova)) ([#​42669](https://togithub.com/mui/material-ui/issues/42669)) [@​mnajdova](https://togithub.com/mnajdova) All contributors of this release in alphabetical order: [@​alexfauquette](https://togithub.com/alexfauquette), [@​alexismo](https://togithub.com/alexismo), [@​arminmeh](https://togithub.com/arminmeh), [@​Danielkhakbaz](https://togithub.com/Danielkhakbaz), [@​DiegoAndai](https://togithub.com/DiegoAndai), [@​mnajdova](https://togithub.com/mnajdova), [@​oliviertassinari](https://togithub.com/oliviertassinari)
mui/mui-x (@​mui/x-data-grid) ### [`v7.8.0`](https://togithub.com/mui/mui-x/blob/HEAD/CHANGELOG.md#780) [Compare Source](https://togithub.com/mui/mui-x/compare/v7.7.1...v7.8.0) *Jun 28, 2024* We'd like to offer a big thanks to the 10 contributors who made this release possible. Here are some highlights ✨: - 🛰 Introduce server-side data source for improved server integration in the Data Grid. Supports server-side pagination, sorting and filtering on plain and tree data, and automatic caching. To enable, provide a `getRows` function to the `unstable_dataSource` prop on the Data Grid component. ```tsx const dataSource = { getRows: async (params: GridServerGetRowsParams) => { const data = await fetch( `https://api.example.com/data?${new URLSearchParams({ page: params.page, pageSize: params.pageSize, sortModel: JSON.stringify(params.sortModel), filterModel: JSON.stringify(params.filterModel), }).toString()}`, ); return { rows: data.rows, totalRows: data.totalRows, }; }, } ``` See [server-side data documentation](https://mui.com/x/react-data-grid/server-side-data/) for more details. - 📈 Support Date data on the BarChart component - ↕️ Support custom column sort icons on the Data Grid - 🖱️ Support modifying the expansion trigger on the Tree View components ##### Data Grid ##### `@mui/x-data-grid@7.8.0` - \[DataGrid] Add `columnHeaderSortIcon` slot ([#​13563](https://togithub.com/mui/mui-x/issues/13563)) [@​arminmeh](https://togithub.com/arminmeh) - \[DataGrid] Fix dimensions lag issue after autosize ([#​13587](https://togithub.com/mui/mui-x/issues/13587)) [@​MBilalShafi](https://togithub.com/MBilalShafi) - \[DataGrid] Fix print export failure when `hideFooter` option is set ([#​13034](https://togithub.com/mui/mui-x/issues/13034)) [@​tarunrajput](https://togithub.com/tarunrajput) ##### `@mui/x-data-grid-pro@7.8.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link "Pro plan") Same changes as in `@mui/x-data-grid@7.8.0`, plus: - \[DataGridPro] Fix multi-sorting indicator being cut off ([#​13625](https://togithub.com/mui/mui-x/issues/13625)) [@​KenanYusuf](https://togithub.com/KenanYusuf) - \[DataGridPro] Server-side tree data support ([#​12317](https://togithub.com/mui/mui-x/issues/12317)) [@​MBilalShafi](https://togithub.com/MBilalShafi) ##### `@mui/x-data-grid-premium@7.8.0` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link "Premium plan") Same changes as in `@mui/x-data-grid-pro@7.8.0`. ##### Date and Time Pickers ##### `@mui/x-date-pickers@7.8.0` - \[fields] Fix section clearing behavior on Android ([#​13652](https://togithub.com/mui/mui-x/issues/13652)) [@​LukasTy](https://togithub.com/LukasTy) ##### `@mui/x-date-pickers-pro@7.8.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link "Pro plan") Same changes as in `@mui/x-date-pickers@7.8.0`. ##### Charts ##### `@mui/x-charts@7.8.0` - \[charts] Fix line chart props not passing correct event handlers ([#​13609](https://togithub.com/mui/mui-x/issues/13609)) [@​JCQuintas](https://togithub.com/JCQuintas) - \[charts] Support BarChart with `Date` data ([#​13471](https://togithub.com/mui/mui-x/issues/13471)) [@​alexfauquette](https://togithub.com/alexfauquette) - \[charts] Support RTL for y-axis ([#​13614](https://togithub.com/mui/mui-x/issues/13614)) [@​alexfauquette](https://togithub.com/alexfauquette) - \[charts] Use default values instead of non-null assertion to prevent error being thrown ([#​13637](https://togithub.com/mui/mui-x/issues/13637)) [@​JCQuintas](https://togithub.com/JCQuintas) ##### Tree View ##### `@mui/x-tree-view@7.8.0` - \[TreeView] Add `expansionTrigger` prop ([#​13533](https://togithub.com/mui/mui-x/issues/13533)) [@​noraleonte](https://togithub.com/noraleonte) - \[TreeView] Support experimental features from plugin's dependencies ([#​13632](https://togithub.com/mui/mui-x/issues/13632)) [@​flaviendelangle](https://togithub.com/flaviendelangle) ##### Docs - \[docs] Add callout for `Luxon` `throwOnInvalid` support ([#​13621](https://togithub.com/mui/mui-x/issues/13621)) [@​LukasTy](https://togithub.com/LukasTy) - \[docs] Add "Overlays" section to the Data Grid documentation ([#​13624](https://togithub.com/mui/mui-x/issues/13624)) [@​KenanYusuf](https://togithub.com/KenanYusuf) ##### Core - \[core] Add eslint rule to restrict import from `../internals` root ([#​13633](https://togithub.com/mui/mui-x/issues/13633)) [@​JCQuintas](https://togithub.com/JCQuintas) - \[docs-infra] Sync `\_app` folder with monorepo ([#​13582](https://togithub.com/mui/mui-x/issues/13582)) [@​Janpot](https://togithub.com/Janpot) - \[license] Allow usage of charts and tree view pro package for old premium licenses ([#​13619](https://togithub.com/mui/mui-x/issues/13619)) [@​flaviendelangle](https://togithub.com/flaviendelangle)
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!
TanStack/query (@​tanstack/react-query) ### [`v5.49.2`](https://togithub.com/TanStack/query/releases/tag/v5.49.2) [Compare Source](https://togithub.com/TanStack/query/compare/v5.49.1...v5.49.2) Version 5.49.2 - 6/30/24, 6:11 AM ##### Changes ##### Fix - react-query: experimental before/after query options ([#​7652](https://togithub.com/TanStack/query/issues/7652)) ([`56fad10`](https://togithub.com/TanStack/query/commit/56fad10)) by Tanner Linsley - react-query: experimental before/after query options ([#​7651](https://togithub.com/TanStack/query/issues/7651)) ([`4be599f`](https://togithub.com/TanStack/query/commit/4be599f)) by Tanner Linsley ##### Packages - [@​tanstack/react-query](https://togithub.com/tanstack/react-query)[@​5](https://togithub.com/5).49.2 - [@​tanstack/react-query-devtools](https://togithub.com/tanstack/react-query-devtools)[@​5](https://togithub.com/5).49.2 - [@​tanstack/react-query-persist-client](https://togithub.com/tanstack/react-query-persist-client)[@​5](https://togithub.com/5).49.2 - [@​tanstack/react-query-next-experimental](https://togithub.com/tanstack/react-query-next-experimental)[@​5](https://togithub.com/5).49.2 ### [`v5.49.1`](https://togithub.com/TanStack/query/compare/v5.49.0...v5.49.1) [Compare Source](https://togithub.com/TanStack/query/compare/v5.49.0...v5.49.1) ### [`v5.49.0`](https://togithub.com/TanStack/query/compare/v5.48.0...v5.49.0) [Compare Source](https://togithub.com/TanStack/query/compare/v5.48.0...v5.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.1...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
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.
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/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.
remix-run/react-router (react-router-dom) ### [`v6.24.0`](https://togithub.com/remix-run/react-router/blob/HEAD/packages/react-router-dom/CHANGELOG.md#6240) [Compare Source](https://togithub.com/remix-run/react-router/compare/react-router-dom@6.23.1...react-router-dom@6.24.0) ##### Minor Changes - Add support for Lazy Route Discovery (a.k.a. Fog of War) ([#​11626](https://togithub.com/remix-run/react-router/pull/11626)) - RFC: - `unstable_patchRoutesOnMiss` docs: ##### Patch Changes - Fix `fetcher.submit` types - remove incorrect `navigate`/`fetcherKey`/`unstable_viewTransition` options because they are only relevant for `useSubmit` ([#​11631](https://togithub.com/remix-run/react-router/pull/11631)) - Allow falsy `location.state` values passed to `` ([#​11495](https://togithub.com/remix-run/react-router/pull/11495)) - Updated dependencies: - `react-router@6.24.0` - `@remix-run/router@1.17.0`
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 - 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.

👻 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.