brave / ads-ui

Self-service ads UI
Mozilla Public License 2.0
21 stars 11 forks source link

chore(deps): update all non-major dependencies #1234

Closed renovate[bot] closed 4 weeks ago

renovate[bot] commented 1 month ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update Pending
@graphql-codegen/client-preset (source) 4.2.6 -> 4.3.0 age adoption passing confidence devDependencies minor
@mui/icons-material (source) 5.15.19 -> 5.15.20 age adoption passing confidence dependencies patch
@mui/material (source) 5.15.19 -> 5.15.20 age adoption passing confidence dependencies patch
@mui/x-data-grid (source) 7.6.2 -> 7.7.0 age adoption passing confidence dependencies minor
@mui/x-date-pickers (source) 7.6.2 -> 7.7.0 age adoption passing confidence dependencies minor
@vitejs/plugin-react (source) 4.3.0 -> 4.3.1 age adoption passing confidence devDependencies patch
actions/checkout v4.1.6 -> v4.1.7 age adoption passing confidence action patch
github/codeql-action v3.25.8 -> v3.25.10 age adoption passing confidence action patch
graphql 16.8.1 -> 16.8.2 age adoption passing confidence dependencies patch
knip (source) 5.18.1 -> 5.19.0 age adoption passing confidence devDependencies minor 5.22.0 (+4)
lint-staged 15.2.5 -> 15.2.7 age adoption passing confidence devDependencies patch
prettier (source) 3.3.1 -> 3.3.2 age adoption passing confidence devDependencies patch
typescript-eslint (source) 7.12.0 -> 7.13.0 age adoption passing confidence devDependencies minor 7.13.1
vite (source) 5.2.13 -> 5.3.1 age adoption passing confidence devDependencies minor

Release Notes

dotansimha/graphql-code-generator (@​graphql-codegen/client-preset) ### [`v4.3.0`](https://togithub.com/dotansimha/graphql-code-generator/blob/HEAD/packages/presets/client/CHANGELOG.md#430) [Compare Source](https://togithub.com/dotansimha/graphql-code-generator/compare/@graphql-codegen/client-preset@4.2.6...@graphql-codegen/client-preset@4.3.0) ##### Minor Changes - [#​10001](https://togithub.com/dotansimha/graphql-code-generator/pull/10001) [`1be6e65`](https://togithub.com/dotansimha/graphql-code-generator/commit/1be6e65943b85162f3d465189d0a6df4b962df5d) Thanks [@​n1ru4l](https://togithub.com/n1ru4l)! - Support discriminating `null` and `undefined` within the `useFragment` function. ```ts function MyComponent(props: FragmentType | null) { const data = useFragment(MyFragment, props); // data is `MyFragment | null` } function MyComponent(props: FragmentType | undefined) { const data = useFragment(MyFragment, props); // data is `MyFragment | undefined` } ``` Before, the returned type from `useFragment` was always `TType | null | undefined`. - [#​9804](https://togithub.com/dotansimha/graphql-code-generator/pull/9804) [`5e594ef`](https://togithub.com/dotansimha/graphql-code-generator/commit/5e594ef8f39b9e1036b6bcaa977f914a66fec03e) Thanks [@​rachel-church](https://togithub.com/rachel-church)! - Preserving `Array` or `ReadonlyArray` in `useFragment()` return type. ##### Patch Changes - [#​9996](https://togithub.com/dotansimha/graphql-code-generator/pull/9996) [`99f449c`](https://togithub.com/dotansimha/graphql-code-generator/commit/99f449c8dcd645d49eda26e4ddfcb8ad7056ecbf) Thanks [@​nahn20](https://togithub.com/nahn20)! - Added configuration to allow for custom hash functions for persisted documents in the client preset ##### Example ```ts filename="codegen.ts" {10-12} import { type CodegenConfig } from '@​graphql-codegen/cli'; const config: CodegenConfig = { schema: 'schema.graphql', documents: ['src/**/*.tsx'], generates: { './src/gql/': { preset: 'client', presetConfig: { persistedDocuments: { hashAlgorithm: operation => { const shasum = crypto.createHash('sha512'); shasum.update(operation); return shasum.digest('hex'); }, }, }, }, }, }; ``` - Updated dependencies \[[`5501c62`](https://togithub.com/dotansimha/graphql-code-generator/commit/5501c621f19eb5ef8e703a21f7367e07e41f199c)]: - [@​graphql-codegen/add](https://togithub.com/graphql-codegen/add)[@​5](https://togithub.com/5).0.3
mui/material-ui (@​mui/icons-material) ### [`v5.15.20`](https://togithub.com/mui/material-ui/releases/tag/v5.15.20) [Compare Source](https://togithub.com/mui/material-ui/compare/v5.15.19...v5.15.20) *Jun 12, 2024* A big thanks to the 9 contributors who made this release possible. ##### `@mui/material@5.15.20` - ​\[Autocomplete] Shouldn't resize when hovering ([@​ZeeshanTamboli](https://togithub.com/ZeeshanTamboli)) ([#​42535](https://togithub.com/mui/material-ui/issues/42535)) [@​ZeeshanTamboli](https://togithub.com/ZeeshanTamboli) - ​\[Tab] Fix applying `iconWrapper` styles from theme and update its description ([@​sai6855](https://togithub.com/sai6855)) ([#​42570](https://togithub.com/mui/material-ui/issues/42570)) [@​sai6855](https://togithub.com/sai6855) ##### `@mui/utils@5.15.15` - ​Allow passing `NaN` as `defaultValue` to `useControlled` ([@​iammminzzy](https://togithub.com/iammminzzy)) ([#​42571](https://togithub.com/mui/material-ui/issues/42571)) [@​iammminzzy](https://togithub.com/iammminzzy) - ​Fix GitHub-reported prototype pollution vulnerability in `deepmerge` ([#​41652](https://togithub.com/mui/material-ui/issues/41652)) ([#​42608](https://togithub.com/mui/material-ui/issues/42608)) [@​DiegoAndai](https://togithub.com/DiegoAndai) ##### Docs - ​\[docs] Add Pigment CSS and Base UI logos SVGs ([#​42513](https://togithub.com/mui/material-ui/issues/42513)) [@​danilo-leal](https://togithub.com/danilo-leal) - ​\[docs] Update twitter.com to x.com [@​oliviertassinari](https://togithub.com/oliviertassinari) - ​\[docs] Simplify Example projects page [@​oliviertassinari](https://togithub.com/oliviertassinari) - ​\[material-ui] Add docs for complementary stepper components ([@​anle9650](https://togithub.com/anle9650)) ([#​42613](https://togithub.com/mui/material-ui/issues/42613)) [@​anle9650](https://togithub.com/anle9650) - ​\[docs] Add changelog section to the design kits page ([@​danilo-leal](https://togithub.com/danilo-leal)) ([#​42463](https://togithub.com/mui/material-ui/issues/42463)) [@​danilo-leal](https://togithub.com/danilo-leal) - ​\[material-ui] Fix sentence in the All components page ([@​danilo-leal](https://togithub.com/danilo-leal)) ([#​42462](https://togithub.com/mui/material-ui/issues/42462)) [@​danilo-leal](https://togithub.com/danilo-leal) - ​\[material-ui] Update Figma design kit doc redirect link ([@​danilo-leal](https://togithub.com/danilo-leal)) ([#​42456](https://togithub.com/mui/material-ui/issues/42456)) [@​danilo-leal](https://togithub.com/danilo-leal) - ​\[system] Add "dynamic values" section to sx prop page ([@​aarongarciah](https://togithub.com/aarongarciah)) ([#​42453](https://togithub.com/mui/material-ui/issues/42453)) [@​aarongarciah](https://togithub.com/aarongarciah) ##### Core - ​\[website] Move the `React Engineer - X` role to future roles ([#​42532](https://togithub.com/mui/material-ui/issues/42532)) [@​DanailH](https://togithub.com/DanailH) - ​\[examples] Remove Pigment CSS examples ([#​42538](https://togithub.com/mui/material-ui/issues/42538)) [@​sai6855](https://togithub.com/sai6855) - ​\[website] Close Developer Advocate / Content Engineer role [@​oliviertassinari](https://togithub.com/oliviertassinari) - ​\[website] Update DoiT description and link in Sponsors section ([@​erezstmn-doit](https://togithub.com/erezstmn-doit)) ([#​42511](https://togithub.com/mui/material-ui/issues/42511)) [@​erezstmn-doit](https://togithub.com/erezstmn-doit) - ​\[website] Clean up the docs-infra job ad ([@​danilo-leal](https://togithub.com/danilo-leal)) ([#​42509](https://togithub.com/mui/material-ui/issues/42509)) [@​danilo-leal](https://togithub.com/danilo-leal) - ​\[website] Open the Docs-infra engineer role ([@​danilo-leal](https://togithub.com/danilo-leal)) ([#​42496](https://togithub.com/mui/material-ui/issues/42496)) [@​danilo-leal](https://togithub.com/danilo-leal) - ​\[website] Fix locationCountry in about page [@​oliviertassinari](https://togithub.com/oliviertassinari) All contributors of this release in alphabetical order: [@​aarongarciah](https://togithub.com/aarongarciah), [@​anle9650](https://togithub.com/anle9650), [@​DanailH](https://togithub.com/DanailH), [@​danilo-leal](https://togithub.com/danilo-leal), [@​erezstmn-doit](https://togithub.com/erezstmn-doit), [@​iammminzzy](https://togithub.com/iammminzzy), [@​oliviertassinari](https://togithub.com/oliviertassinari), [@​sai6855](https://togithub.com/sai6855), [@​ZeeshanTamboli](https://togithub.com/ZeeshanTamboli)
mui/mui-x (@​mui/x-data-grid) ### [`v7.7.0`](https://togithub.com/mui/mui-x/blob/HEAD/CHANGELOG.md#770) [Compare Source](https://togithub.com/mui/mui-x/compare/v7.6.2...v7.7.0) *Jun 13, 2024* We'd like to offer a big thanks to the 12 contributors who made this release possible. Here are some highlights ✨: - 🎁 Allow customization of the Pickers month and the year buttons - 🌍 Improve Persian (fa-IR), Portuguese (pt-PT), and Russian (ru-RU) locales on the Data Grid - 🌍 Improve Korean (ko-KR) and Persian (fa-IR) locales on the Date and Time Pickers - 🐞 Bugfixes - 📚 Documentation improvements ##### Data Grid ##### `@mui/x-data-grid@7.7.0` - \[DataGrid] Add `getFilterState` method ([#​13418](https://togithub.com/mui/mui-x/issues/13418)) [@​cherniavskii](https://togithub.com/cherniavskii) - \[DataGrid] Do not show resize separators for column groups ([#​13455](https://togithub.com/mui/mui-x/issues/13455)) [@​cherniavskii](https://togithub.com/cherniavskii) - \[l10n] Improve Persian (fa-IR) locale ([#​13402](https://togithub.com/mui/mui-x/issues/13402)) [@​fakhamatia](https://togithub.com/fakhamatia) - \[l10n] Improve Portuguese (pt-PT) locale ([#​13384](https://togithub.com/mui/mui-x/issues/13384)) [@​olavocarvalho](https://togithub.com/olavocarvalho) - \[l10n] Improve Russian (ru-RU) locale ([#​11210](https://togithub.com/mui/mui-x/issues/11210)) [@​dastan-akhmetov-scity](https://togithub.com/dastan-akhmetov-scity) ##### `@mui/x-data-grid-pro@7.7.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.7.0`, plus: - \[DataGridPro] Do not render detail panel if the focused cell is not visible ([#​13456](https://togithub.com/mui/mui-x/issues/13456)) [@​cherniavskii](https://togithub.com/cherniavskii) ##### `@mui/x-data-grid-premium@7.7.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.7.0`. ##### Date and Time Pickers ##### `@mui/x-date-pickers@7.7.0` - \[l10n] Improve Korean (ko-KR) locale ([#​13452](https://togithub.com/mui/mui-x/issues/13452)) [@​ryxxn](https://togithub.com/ryxxn) - \[l10n] Improve Persian (fa-IR) locale ([#​13402](https://togithub.com/mui/mui-x/issues/13402)) [@​fakhamatia](https://togithub.com/fakhamatia) - \[pickers] Allow to customize the month and the year buttons ([#​13321](https://togithub.com/mui/mui-x/issues/13321)) [@​flaviendelangle](https://togithub.com/flaviendelangle) ##### `@mui/x-date-pickers-pro@7.7.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.7.0`. ##### Charts ##### `@mui/x-charts@7.7.0` - \[charts] Add watermark on the pro `ResponsiveChartContainer` ([#​13398](https://togithub.com/mui/mui-x/issues/13398)) [@​alexfauquette](https://togithub.com/alexfauquette) - \[charts] Allow to specify y-axis configuration ([#​13438](https://togithub.com/mui/mui-x/issues/13438)) [@​alexfauquette](https://togithub.com/alexfauquette) - \[charts] Fix eslint for react compiler ([#​13444](https://togithub.com/mui/mui-x/issues/13444)) [@​alexfauquette](https://togithub.com/alexfauquette) - \[charts] Improve themeAugmentation typing ([#​13433](https://togithub.com/mui/mui-x/issues/13433)) [@​noraleonte](https://togithub.com/noraleonte) - \[charts] Move the `ZAxisContextProvider` by default in the `ChartContainer` ([#​13465](https://togithub.com/mui/mui-x/issues/13465)) [@​alexfauquette](https://togithub.com/alexfauquette) - \[charts] Use plugins to define series extremum and colors ([#​13397](https://togithub.com/mui/mui-x/issues/13397)) [@​alexfauquette](https://togithub.com/alexfauquette) ##### Tree View ##### `@mui/x-tree-view@7.7.0` - \[TreeView] Improve TypeScript for plugins ([#​13380](https://togithub.com/mui/mui-x/issues/13380)) [@​flaviendelangle](https://togithub.com/flaviendelangle) - \[TreeView] Improve the typing of the cancelable events ([#​13152](https://togithub.com/mui/mui-x/issues/13152)) [@​flaviendelangle](https://togithub.com/flaviendelangle) - \[TreeView] Prepare support for PigmentCSS ([#​13412](https://togithub.com/mui/mui-x/issues/13412)) [@​flaviendelangle](https://togithub.com/flaviendelangle) - \[TreeView] Refactor the tree view internals to prepare for headless API ([#​13311](https://togithub.com/mui/mui-x/issues/13311)) [@​flaviendelangle](https://togithub.com/flaviendelangle) ##### Docs - \[docs] Add `renderHeader` recipe to the Master Details docs ([#​13370](https://togithub.com/mui/mui-x/issues/13370)) [@​michelengelen](https://togithub.com/michelengelen) - \[docs] Add lazy loading detail panel demo ([#​13453](https://togithub.com/mui/mui-x/issues/13453)) [@​cherniavskii](https://togithub.com/cherniavskii) - \[docs] Add small edits to the Data Grid overview page ([#​13060](https://togithub.com/mui/mui-x/issues/13060)) [@​danilo-leal](https://togithub.com/danilo-leal) - \[docs] Update a11y pages description ([#​13417](https://togithub.com/mui/mui-x/issues/13417)) [@​danilo-leal](https://togithub.com/danilo-leal) - \[docs] improve the writing on the "Quick filter outside of the grid" example ([#​13155](https://togithub.com/mui/mui-x/issues/13155)) [@​michelengelen](https://togithub.com/michelengelen) ##### Core - \[core] Add `eslint-plugin-react-compiler` experimental version and rules ([#​13415](https://togithub.com/mui/mui-x/issues/13415)) [@​JCQuintas](https://togithub.com/JCQuintas) - \[core] Minor setup cleanup ([#​13467](https://togithub.com/mui/mui-x/issues/13467)) [@​LukasTy](https://togithub.com/LukasTy) - \[infra] Adjust CI setup ([#​13448](https://togithub.com/mui/mui-x/issues/13448)) [@​LukasTy](https://togithub.com/LukasTy) - \[test] Add tests for the custom slots of `TreeItem2` ([#​13314](https://togithub.com/mui/mui-x/issues/13314)) [@​flaviendelangle](https://togithub.com/flaviendelangle)
vitejs/vite-plugin-react (@​vitejs/plugin-react) ### [`v4.3.1`](https://togithub.com/vitejs/vite-plugin-react/blob/HEAD/packages/plugin-react/CHANGELOG.md#431-2024-06-10) [Compare Source](https://togithub.com/vitejs/vite-plugin-react/compare/v4.3.0...v4.3.1) ##### Fix support for React Compiler with React 18 The previous version made this assumption that the compiler was only usable with React 19, but it's possible to use it with React 18 and a custom `runtimeModule`: https://gist.github.com/poteto/37c076bf112a07ba39d0e5f0645fec43 When using a custom `runtimeModule`, the plugin will not try to pre-optimize `react/compiler-runtime` dependency. Reminder: Vite expect code outside of `node_modules` to be ESM, so you will need to update the gist with `import React from 'react'`.
actions/checkout (actions/checkout) ### [`v4.1.7`](https://togithub.com/actions/checkout/blob/HEAD/CHANGELOG.md#v417) [Compare Source](https://togithub.com/actions/checkout/compare/v4.1.6...v4.1.7) - Bump the minor-npm-dependencies group across 1 directory with 4 updates by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/actions/checkout/pull/1739](https://togithub.com/actions/checkout/pull/1739) - Bump actions/checkout from 3 to 4 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/actions/checkout/pull/1697](https://togithub.com/actions/checkout/pull/1697) - Check out other refs/\* by commit by [@​orhantoy](https://togithub.com/orhantoy) in [https://github.com/actions/checkout/pull/1774](https://togithub.com/actions/checkout/pull/1774) - Pin actions/checkout's own workflows to a known, good, stable version. by [@​jww3](https://togithub.com/jww3) in [https://github.com/actions/checkout/pull/1776](https://togithub.com/actions/checkout/pull/1776)
github/codeql-action (github/codeql-action) ### [`v3.25.10`](https://togithub.com/github/codeql-action/compare/v3.25.9...v3.25.10) [Compare Source](https://togithub.com/github/codeql-action/compare/v3.25.9...v3.25.10) ### [`v3.25.9`](https://togithub.com/github/codeql-action/compare/v3.25.8...v3.25.9) [Compare Source](https://togithub.com/github/codeql-action/compare/v3.25.8...v3.25.9)
graphql/graphql-js (graphql) ### [`v16.8.2`](https://togithub.com/graphql/graphql-js/releases/tag/v16.8.2) [Compare Source](https://togithub.com/graphql/graphql-js/compare/v16.8.1...v16.8.2) #### v16.8.2 (2024-06-12) ##### Bug Fix 🐞\* [#​4022](https://togithub.com/graphql/graphql-js/pull/4022) fix: remove `globalThis` check and align with what bundlers can accept ([@​JoviDeCroock](https://togithub.com/JoviDeCroock)) ##### Internal 🏠\* [#​4104](https://togithub.com/graphql/graphql-js/pull/4104) Fix publish scripts ([@​benjie](https://togithub.com/benjie)) ##### Committers: 2 - Benjie([@​benjie](https://togithub.com/benjie)) - Jovi De Croock([@​JoviDeCroock](https://togithub.com/JoviDeCroock))
webpro-nl/knip (knip) ### [`v5.19.0`](https://togithub.com/webpro-nl/knip/releases/tag/5.19.0) [Compare Source](https://togithub.com/webpro-nl/knip/compare/5.18.2...5.19.0) - Fix up integration test for slonik ([`2abcea6`](https://togithub.com/webpro-nl/knip/commit/2abcea61)) - Stop printing the bulky help text for config errors ([`9576413`](https://togithub.com/webpro-nl/knip/commit/95764130)) - Throw if passed --workspace dir does not contain package.json (resolves [#​667](https://togithub.com/webpro-nl/knip/issues/667)) ([`ea3f124`](https://togithub.com/webpro-nl/knip/commit/ea3f1240)) - Support import.meta.resolve (resolves [#​642](https://togithub.com/webpro-nl/knip/issues/642)) ([`177baa2`](https://togithub.com/webpro-nl/knip/commit/177baa2b)) - Handle `NODE_OPTIONS=` in scripts ([`2ec5189`](https://togithub.com/webpro-nl/knip/commit/2ec5189a)) - Minor refactor ([`7c87441`](https://togithub.com/webpro-nl/knip/commit/7c87441e)) - Timerify `resolveModuleNames` ([#​673](https://togithub.com/webpro-nl/knip/issues/673)) ([`9f2077c`](https://togithub.com/webpro-nl/knip/commit/9f2077ca)) - Support Jest's globalTeardown ([#​676](https://togithub.com/webpro-nl/knip/issues/676)) ([`c170aeb`](https://togithub.com/webpro-nl/knip/commit/c170aebf)) ### [`v5.18.2`](https://togithub.com/webpro-nl/knip/releases/tag/5.18.2) [Compare Source](https://togithub.com/webpro-nl/knip/compare/5.18.1...5.18.2) - Improve re-export handling ([`9ccefb3`](https://togithub.com/webpro-nl/knip/commit/9ccefb34)) - Add identifier to trace for re-export from entry file ([`b0b8b3d`](https://togithub.com/webpro-nl/knip/commit/b0b8b3d3)) - Move tagged export logic into reusable handler ([`1dff2db`](https://togithub.com/webpro-nl/knip/commit/1dff2db4)) - Update docs ([`2f91c8d`](https://togithub.com/webpro-nl/knip/commit/2f91c8d0)) - Update `@ericcornelissen/bash-parser` to 0.5.3 ([#​674](https://togithub.com/webpro-nl/knip/issues/674)) ([`9a7ffac`](https://togithub.com/webpro-nl/knip/commit/9a7ffac2))
okonet/lint-staged (lint-staged) ### [`v15.2.7`](https://togithub.com/okonet/lint-staged/blob/HEAD/CHANGELOG.md#1527) [Compare Source](https://togithub.com/okonet/lint-staged/compare/v15.2.6...v15.2.7) ##### Patch Changes - [#​1440](https://togithub.com/lint-staged/lint-staged/pull/1440) [`a51be80`](https://togithub.com/lint-staged/lint-staged/commit/a51be804b63307ac7af3c82f4cb2d43dbe92daac) Thanks [@​iiroj](https://togithub.com/iiroj)! - In the previous version the native `git rev-parse --show-toplevel` command was taken into use for resolving the current git repo root. This version drops the `--path-format=absolute` option to support earlier git versions since it's also the default behavior. If you are still having trouble, please try upgrading `git` to the latest version. ### [`v15.2.6`](https://togithub.com/okonet/lint-staged/blob/HEAD/CHANGELOG.md#1526) [Compare Source](https://togithub.com/okonet/lint-staged/compare/v15.2.5...v15.2.6) ##### Patch Changes - [#​1433](https://togithub.com/lint-staged/lint-staged/pull/1433) [`119adb2`](https://togithub.com/lint-staged/lint-staged/commit/119adb29854cabddbfcf0469d7c8a0126184a5d4) Thanks [@​iiroj](https://togithub.com/iiroj)! - Use native "git rev-parse" commands to determine git repo root directory and the .git config directory, instead of using custom logic. This hopefully makes path resolution more robust on non-POSIX systems.
prettier/prettier (prettier) ### [`v3.3.2`](https://togithub.com/prettier/prettier/blob/HEAD/CHANGELOG.md#332) [Compare Source](https://togithub.com/prettier/prettier/compare/3.3.1...3.3.2) [diff](https://togithub.com/prettier/prettier/compare/3.3.1...3.3.2) ##### Fix handlebars path expressions starts with `@` ([#​16358](https://togithub.com/prettier/prettier/pull/16358) by [@​Princeyadav05](https://togithub.com/Princeyadav05)) ```hbs {{! Input }}
{{@​x.y.z}}
{{! Prettier 3.3.1 }}
{{@​x}}
{{! Prettier 3.3.2 }}
{{@​x.y.z}}
```
typescript-eslint/typescript-eslint (typescript-eslint) ### [`v7.13.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/typescript-eslint/CHANGELOG.md#7130-2024-06-10) [Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v7.12.0...v7.13.0) This was a version bump only for typescript-eslint 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.
vitejs/vite (vite) ### [`v5.3.1`](https://togithub.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#small531-2024-06-14-small) [Compare Source](https://togithub.com/vitejs/vite/compare/v5.3.0...v5.3.1) - fix(build): handle preload treeshaking for braces ([#​17479](https://togithub.com/vitejs/vite/issues/17479)) ([d355568](https://togithub.com/vitejs/vite/commit/d355568)), closes [#​17479](https://togithub.com/vitejs/vite/issues/17479) - fix(build): handle preload treeshaking for commas ([#​17472](https://togithub.com/vitejs/vite/issues/17472)) ([3e27071](https://togithub.com/vitejs/vite/commit/3e27071)), closes [#​17472](https://togithub.com/vitejs/vite/issues/17472) - fix(build): preload treeshaking ignore equal ([#​17480](https://togithub.com/vitejs/vite/issues/17480)) ([6ced135](https://togithub.com/vitejs/vite/commit/6ced135)), closes [#​17480](https://togithub.com/vitejs/vite/issues/17480) - chore: consolidate changelog for 5.3 ([#​17476](https://togithub.com/vitejs/vite/issues/17476)) ([1f09344](https://togithub.com/vitejs/vite/commit/1f09344)), closes [#​17476](https://togithub.com/vitejs/vite/issues/17476) ### [`v5.3.0`](https://togithub.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#530-2024-06-13) [Compare Source](https://togithub.com/vitejs/vite/compare/v5.2.13...v5.3.0) - fix: typo in client log ([#​17363](https://togithub.com/vitejs/vite/issues/17363)) ([68aa9f8](https://togithub.com/vitejs/vite/commit/68aa9f8)), closes [#​17363](https://togithub.com/vitejs/vite/issues/17363) - fix(ssrTransform): handle arbitrary module namespace identifiers ([#​17446](https://togithub.com/vitejs/vite/issues/17446)) ([0a76652](https://togithub.com/vitejs/vite/commit/0a76652)), closes [#​17446](https://togithub.com/vitejs/vite/issues/17446) - test: disable isolate for unit test ([#​17448](https://togithub.com/vitejs/vite/issues/17448)) ([f16fae5](https://togithub.com/vitejs/vite/commit/f16fae5)), closes [#​17448](https://togithub.com/vitejs/vite/issues/17448) - feat: asset type add bmp ([#​17439](https://togithub.com/vitejs/vite/issues/17439)) ([ec287f8](https://togithub.com/vitejs/vite/commit/ec287f8)), closes [#​17439](https://togithub.com/vitejs/vite/issues/17439)

Configuration

📅 Schedule: Branch creation - " 0-4 * 3" (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.

renovate[bot] commented 4 weeks ago

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.