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

Merged
merged 1 commit into from
Jul 31, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 31, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update Pending
@apollo/client (source) 3.10.8 -> 3.11.1 age adoption passing confidence dependencies minor
@emotion/react (source) 11.12.0 -> 11.13.0 age adoption passing confidence dependencies minor
@emotion/styled (source) 11.12.0 -> 11.13.0 age adoption passing confidence dependencies minor
@mui/icons-material (source) 5.16.4 -> 5.16.5 age adoption passing confidence dependencies patch 5.16.6
@mui/lab (source) 5.0.0-alpha.172 -> 5.0.0-alpha.173 age adoption passing confidence dependencies patch
@mui/material (source) 5.16.4 -> 5.16.5 age adoption passing confidence dependencies patch 5.16.6
@mui/x-data-grid (source) 7.11.0 -> 7.11.1 age adoption passing confidence dependencies patch
@mui/x-date-pickers (source) 7.11.0 -> 7.11.1 age adoption passing confidence dependencies patch
github/codeql-action v3.25.13 -> v3.25.15 age adoption passing confidence action patch
husky 9.1.1 -> 9.1.3 age adoption passing confidence devDependencies patch 9.1.4
knip (source) 5.26.0 -> 5.27.0 age adoption passing confidence devDependencies minor
node (source) 20.15.1 -> 20.16.0 age adoption passing confidence minor
typescript (source) 5.5.3 -> 5.5.4 age adoption passing confidence devDependencies patch
typescript-eslint (source) 7.16.1 -> 7.17.0 age adoption passing confidence devDependencies minor 7.18.0
vite (source) 5.3.4 -> 5.3.5 age adoption passing confidence devDependencies patch
vitest (source) 2.0.3 -> 2.0.4 age adoption passing confidence devDependencies patch

Release Notes

apollographql/apollo-client (@​apollo/client)

v3.11.1

Compare Source

Patch Changes
  • #​11969 061cab6 Thanks @​jerelmiller! - Remove check for window.__APOLLO_CLIENT__ when determining whether to connect to Apollo Client Devtools when connectToDevtools or devtools.enabled is not specified. This now simply checks to see if the application is in development mode.

  • #​11971 ecf77f6 Thanks @​jerelmiller! - Prevent the setTimeout for suggesting devtools from running in non-browser environments.

v3.11.0

Compare Source

Potentially Breaking Fixes
  • #​11789 5793301 Thanks @​phryneas! - Changes usages of the GraphQLError type to GraphQLFormattedError.

    This was a type bug - these errors were never GraphQLError instances
    to begin with, and the GraphQLError class has additional properties that can
    never be correctly rehydrated from a GraphQL result.
    The correct type to use here is GraphQLFormattedError.

    Similarly, please ensure to use the type FormattedExecutionResult
    instead of ExecutionResult - the non-"Formatted" versions of these types
    are for use on the server only, but don't get transported over the network.

  • #​11626 228429a Thanks @​phryneas! - Call nextFetchPolicy with "variables-changed" even if there is a fetchPolicy specified.

    Previously this would only be called when the current fetchPolicy was equal to the fetchPolicy option or the option was not specified. If you use nextFetchPolicy as a function, expect to see this function called more often.

    Due to this bug, this also meant that the fetchPolicy might be reset to the initial fetchPolicy, even when you specified a nextFetchPolicy function. If you previously relied on this behavior, you will need to update your nextFetchPolicy callback function to implement this resetting behavior.

    As an example, if your code looked like the following:

    useQuery(QUERY, {
      nextFetchPolicy(currentFetchPolicy, info) {
        // your logic here
      }
    );

    Update your function to the following to reimplement the resetting behavior:

    useQuery(QUERY, {
      nextFetchPolicy(currentFetchPolicy, info) {
        if (info.reason === 'variables-changed') {
          return info.initialFetchPolicy;
        }
        // your logic here
      }
    );
Minor Changes
Patch Changes
emotion-js/emotion (@​emotion/react)

v11.13.0

Compare Source

mui/material-ui (@​mui/icons-material)

v5.16.5

Compare Source

Jul 25, 2024

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

@mui/utils@5.16.5
Docs

All contributors of this release in alphabetical order: @​ManthanGajjar, @​mnajdova, @​navedqb, @​oliviertassinari

Full Changelog: mui/material-ui@v5.16.4...v5.16.5

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

v7.11.1

Compare Source

Jul 25, 2024

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

  • 🔎 Allow Zoom to be controllable for charts (#​13858) @​JCQuintas
  • 🌍 Add Icelandic (is-IS) and Norwegian Nynorsk (nn-NO) locales on the Data Grid
  • 🌍 Improve Norwegian Bokmål (nb-NO) and German (de-DE) locales on the Data Grid
  • 🌍 Add Norwegian Nynorsk (nn-NO) locale on the Date and Time Pickers
  • 🐞 Bugfixes
  • 📚 Documentation improvements
Data Grid
@mui/x-data-grid@7.11.1
@mui/x-data-grid-pro@7.11.1 pro

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

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

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

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

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

Charts
@mui/x-charts@7.11.1
Tree View
@mui/x-tree-view@7.11.1
Docs
Core
github/codeql-action (github/codeql-action)

v3.25.15

Compare Source

v3.25.14

Compare Source

typicode/husky (husky)

v9.1.3

Compare Source

  • fix: better handle space in PATH

v9.1.2

Compare Source

webpro-nl/knip (knip)

v5.27.0

Compare Source

nodejs/node (node)

v20.16.0

Compare Source

Microsoft/TypeScript (typescript)

v5.5.4

Compare Source

typescript-eslint/typescript-eslint (typescript-eslint)

v7.17.0

Compare Source

🚀 Features
  • eslint-plugin: backport no-unsafe-function type, no-wrapper-object-types from v8 to v7
❤️ Thank You
  • Armano
  • Josh Goldberg ✨
  • Kirk Waiblinger
  • StyleShit

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

vitejs/vite (vite)

v5.3.5

Compare Source

vitest-dev/vitest (vitest)

v2.0.4

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot requested review from tackley, IanKrieger and a team as code owners July 31, 2024 01:01
@renovate renovate bot added the dependencies Pull requests that update a dependency file label Jul 31, 2024
Copy link

[puLL-Merge] - apollographql/apollo-client@v3.10.8..v3.11.1

Description

This PR introduces several significant changes to Apollo Client, including updates to error handling, subscription functionality, and various React hooks. It also includes some deprecations and adjustments to improve compatibility with different React versions.

Changes

Changes

  1. Error Handling:

    • Changed GraphQLError to GraphQLFormattedError for better error serialization.
    • Added a cause field to ApolloError for better error tracking.
  2. Subscriptions:

    • Reimplemented useSubscription hook for better React Compiler support.
    • Added ignoreResults, errorPolicy, and extensions options to subscription functionality.
  3. React Hooks:

    • Rewrote useQuery and useLazyQuery for better React Compiler support.
    • Added subscribeToMore function to useQueryRefHandlers, useLoadableQuery, and useBackgroundQuery.
  4. Apollo Client Configuration:

    • Added devtools option for configuring Apollo Client Devtools, deprecating connectToDevTools.
  5. Testing:

    • Deprecated experimental schema testing utilities in favor of @apollo/graphql-testing-library.
    • Updated MockLink to fill in default variables if missing in mocked requests.
  6. TypeScript and API Changes:

    • Updated various type definitions and interfaces.
    • Removed deprecated canonizeResults option.
  7. React Compatibility:

    • Added React 19 RC to peerDependencies.
  8. Documentation:

    • Updated various documentation comments and examples.

Possible Issues

  1. Breaking changes in error handling might require updates in error-handling logic in applications using Apollo Client.
  2. Deprecation of experimental schema testing utilities might affect projects relying on these features.

Security Hotspots

No significant security issues are apparent in this change.

@IanKrieger IanKrieger merged commit 03afbcf into master Jul 31, 2024
9 checks passed
@IanKrieger IanKrieger deleted the renovate/all-minor-patch branch July 31, 2024 11:53
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 puLL-Merge
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant