Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Merged
merged 1 commit into from
Dec 6, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 6, 2024

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
lockFileMaintenance All locks refreshed
@fallobst22/cdk-cross-account-route53 dependencies patch ^0.0.45 -> ^0.0.46 age adoption passing confidence
openid-client dependencies patch 6.1.6 -> 6.1.7 age adoption passing confidence
@mui/icons-material (source) dependencies patch 6.1.9 -> 6.1.10 age adoption passing confidence
@mui/material (source) dependencies patch 6.1.9 -> 6.1.10 age adoption passing confidence
@mui/x-data-grid (source) dependencies patch 7.23.0 -> 7.23.1 age adoption passing confidence
@typescript-eslint/eslint-plugin (source) devDependencies minor 8.16.0 -> 8.17.0 age adoption passing confidence
@typescript-eslint/parser (source) devDependencies minor 8.16.0 -> 8.17.0 age adoption passing confidence
eslint-plugin-react-hooks (source) devDependencies minor 5.0.0 -> 5.1.0 age adoption passing confidence
eslint-plugin-react-refresh devDependencies patch 0.4.14 -> 0.4.16 age adoption passing confidence
react-router (source) dependencies patch 7.0.1 -> 7.0.2 age adoption passing confidence
react-router-dom (source) dependencies patch 7.0.1 -> 7.0.2 age adoption passing confidence
vite (source) devDependencies patch 6.0.1 -> 6.0.3 age adoption passing confidence

🔧 This Pull Request updates lock files to use the latest dependency versions.


Release Notes

SvenKirschbaum/cdk-cross-account-route53 (@​fallobst22/cdk-cross-account-route53)

v0.0.46

Compare Source

0.0.46 (2024-11-30)

panva/openid-client (openid-client)

v6.1.7

Compare Source

Refactor
  • types: move customFetch options into its own interface (57d8355)
mui/material-ui (@​mui/icons-material)

v6.1.10

Compare Source

Dec 3, 2024

A big thanks to the 10 contributors who made this release possible.

@mui/[email protected]
@mui/[email protected]
Docs
Core

All contributors of this release in alphabetical order: @​albarv340, @​arishoham, @​DiegoAndai, @​joserodolfofreitas, @​MBilalShafi, @​mnajdova, @​oliviertassinari, @​renovate[bot], @​sai6855, @​samuelsycamore, @​siriwatknp, @​ZeeshanTamboli

mui/mui-x (@​mui/x-data-grid)

v7.23.1

Compare Source

7.23.1

Dec 5, 2024

We'd like to offer a big thanks to the 7 contributors who made this release possible. Here are some highlights ✨:

  • 🌍 Improve German locale on the Data Grid component
  • 🐞 Bugfixes

Special thanks go out to the community contributors who have helped make this release possible:
@​lhilgert9.

Following are all team members who have contributed to this release:
@​arthurbalduini, @​cherniavskii, @​flaviendelangle, @​JCQuintas, @​LukasTy and @​MBilalShafi.

Data Grid
@mui/[email protected]
@mui/[email protected] pro

Same changes as in @mui/[email protected], plus:

@mui/[email protected] premium

Same changes as in @mui/[email protected].

Date and Time Pickers
@mui/[email protected]
@mui/[email protected] pro

Same changes as in @mui/[email protected].

Charts
@mui/[email protected]
@mui/[email protected] pro

Same changes as in @mui/[email protected].

Docs
Core
typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v8.17.0

Compare Source

🚀 Features
  • eslint-plugin: [prefer-promise-reject-errors] options to allow any and unknown (#​10392)
🩹 Fixes
  • eslint-plugin: [promise-function-async] handle function overloading (#​10304)
  • eslint-plugin: remove references to "extendDefaults" in no-restricted-types (#​10401)
  • eslint-plugin: [no-unnecessary-template-expressions] allow template expressions used to make trailing whitespace visible (#​10363)
❤️ Thank You

You can read about our versioning strategy and releases on our website.

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v8.17.0

Compare Source

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 and releases on our website.

facebook/react (eslint-plugin-react-hooks)

v5.1.0

Compare Source

ArnaudBarre/eslint-plugin-react-refresh (eslint-plugin-react-refresh)

v0.4.16

Compare Source

Fix CJS/ESM interop issue. Sorry everyone for the trouble.

v0.4.15

Compare Source

Add support for custom HOCs (#​60)

By default, the rule only knows that memo & forwardRef function calls with return a React component. With this option, you can also allow extra function names like Mobx observer to make this code valid:

const Foo = () => <></>;
export default observer(Foo);
{
  "react-refresh/only-export-components": [
    "error",
    { "customHOCs": ["observer"] }
  ]
}

Thanks @​HorusGoul!

Add recommended config and simple types (#​67)

You can now add the recommended config to your ESLint config like this:

import reactRefresh from "eslint-plugin-react-refresh";

export default [
  /* Main config */
  reactRefresh.configs.recommended, // Or reactRefresh.configs.vite for Vite users
];

To follow ESLint recommandations, the rule is added with the error severity.

Some simple types ensure that people typecheking their config won't need @ts-expect-error anymore.

Bump ESLint peer dependency to 8.40

This was actually done by mistake in the previous release when moving from a deprecated API to a new one.

Given that ESLint 8 is officialy end-of-life and the only report (#​56) didn't get likes, I'm going forward and documenting the expected minimum version from ESLin in the package JSON so that people can get warning from their package manager.

remix-run/react-router (react-router)

v7.0.2

Compare Source

Patch Changes
  • temporarily only use one build in export map so packages can have a peer dependency on react router (#​12437)

  • Generate wide matches and params types for current route and child routes (#​12397)

    At runtime, matches includes child route matches and params include child route path parameters.
    But previously, we only generated types for parent routes in matches; for params, we only considered the parent routes and the current route.
    To align our generated types more closely to the runtime behavior, we now generate more permissive, wider types when accessing child route information.

remix-run/react-router (react-router-dom)

v7.0.2

Compare Source

Patch Changes
vitejs/vite (vite)

v6.0.3

Compare Source

v6.0.2

Compare Source


Configuration

📅 Schedule: Branch creation - "before 10am on saturday" in timezone Europe/Berlin, 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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@mergify mergify bot merged commit b3172af into master Dec 6, 2024
12 checks passed
@mergify mergify bot deleted the renovate/all-minor-patch branch December 6, 2024 23:19
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants