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 #1234

Merged
merged 2 commits into from
Jun 19, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 19, 2024

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

Compare Source

Minor Changes
  • #​10001 1be6e65 Thanks @​n1ru4l! - Support discriminating null and undefined within the useFragment function.

    function MyComponent(props: FragmentType<typeof MyFragment> | null) {
      const data = useFragment(MyFragment, props);
      // data is `MyFragment | null`
    }
    
    function MyComponent(props: FragmentType<typeof MyFragment> | undefined) {
      const data = useFragment(MyFragment, props);
      // data is `MyFragment | undefined`
    }

    Before, the returned type from useFragment was always TType | null | undefined.

  • #​9804 5e594ef Thanks @​rachel-church! - Preserving Array<T> or ReadonlyArray<T> in useFragment() return type.

Patch Changes
  • #​9996 99f449c Thanks @​nahn20! - Added configuration to allow for custom hash functions for persisted documents in the client preset
Example
import { type CodegenConfig } from '@&#8203;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');
          },
        },
      },
    },
  },
};
mui/material-ui (@​mui/icons-material)

v5.15.20

Compare Source

Jun 12, 2024

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

@mui/material@5.15.20
@mui/utils@5.15.15
Docs
Core

All contributors of this release in alphabetical order: @​aarongarciah, @​anle9650, @​DanailH, @​danilo-leal, @​erezstmn-doit, @​iammminzzy, @​oliviertassinari, @​sai6855, @​ZeeshanTamboli

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

v7.7.0

Compare Source

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
@mui/x-data-grid-pro@7.7.0 pro

Same changes as in @mui/x-data-grid@7.7.0, plus:

@mui/x-data-grid-premium@7.7.0 premium

Same changes as in @mui/x-data-grid-pro@7.7.0.

Date and Time Pickers
@mui/x-date-pickers@7.7.0
@mui/x-date-pickers-pro@7.7.0 pro

Same changes as in @mui/x-date-pickers@7.7.0.

Charts
@mui/x-charts@7.7.0
Tree View
@mui/x-tree-view@7.7.0
Docs
Core
vitejs/vite-plugin-react (@​vitejs/plugin-react)

v4.3.1

Compare Source

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

Compare Source

github/codeql-action (github/codeql-action)

v3.25.10

Compare Source

v3.25.9

Compare Source

graphql/graphql-js (graphql)

v16.8.2

Compare Source

v16.8.2 (2024-06-12)

Bug Fix 🐞* #​4022 fix: remove globalThis check and align with what bundlers can accept (@​JoviDeCroock)
Internal 🏠* #​4104 Fix publish scripts (@​benjie)
Committers: 2
webpro-nl/knip (knip)

v5.19.0

Compare Source

  • Fix up integration test for slonik (2abcea6)
  • Stop printing the bulky help text for config errors (9576413)
  • Throw if passed --workspace dir does not contain package.json (resolves #​667) (ea3f124)
  • Support import.meta.resolve (resolves #​642) (177baa2)
  • Handle NODE_OPTIONS= in scripts (2ec5189)
  • Minor refactor (7c87441)
  • Timerify resolveModuleNames (#​673) (9f2077c)
  • Support Jest's globalTeardown (#​676) (c170aeb)

v5.18.2

Compare Source

  • Improve re-export handling (9ccefb3)
  • Add identifier to trace for re-export from entry file (b0b8b3d)
  • Move tagged export logic into reusable handler (1dff2db)
  • Update docs (2f91c8d)
  • Update @ericcornelissen/bash-parser to 0.5.3 (#​674) (9a7ffac)
okonet/lint-staged (lint-staged)

v15.2.7

Compare Source

Patch Changes
  • #​1440 a51be80 Thanks @​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

Compare Source

Patch Changes
  • #​1433 119adb2 Thanks @​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

Compare Source

diff

Fix handlebars path expressions starts with @ (#​16358 by @​Princeyadav05)
{{! Input }}
<div>{{@&#8203;x.y.z}}</div>

{{! Prettier 3.3.1 }}
<div>{{@&#8203;x}}</div>

{{! Prettier 3.3.2 }}
<div>{{@&#8203;x.y.z}}</div>
typescript-eslint/typescript-eslint (typescript-eslint)

v7.13.0

Compare Source

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

vitejs/vite (vite)

v5.3.1

Compare Source

v5.3.0

Compare Source


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.


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

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

@renovate renovate bot requested review from tackley, IanKrieger and a team as code owners June 19, 2024 01:19
@renovate renovate bot added the dependencies Pull requests that update a dependency file label Jun 19, 2024
Copy link
Contributor Author

renovate bot commented Jun 19, 2024

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.

@IanKrieger IanKrieger merged commit 0f72665 into master Jun 19, 2024
8 checks passed
@IanKrieger IanKrieger deleted the renovate/all-minor-patch branch June 19, 2024 15:15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant