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

Update all non-major dependencies #797

Closed
wants to merge 1 commit into from
Closed

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 2, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@apollo/client (source) 3.8.10 -> 3.11.8 age adoption passing confidence
@aptos-labs/ts-sdk 1.30.0 -> 1.31.0 age adoption passing confidence
@aptos-labs/wallet-adapter-mui-design 3.0.14 -> 3.0.17 age adoption passing confidence
@aptos-labs/wallet-adapter-react 3.7.0 -> 3.7.3 age adoption passing confidence
@​blocto/aptos-wallet-adapter-plugin 0.2.10 -> 0.2.11 age adoption passing confidence
@emotion/react (source) 11.11.3 -> 11.13.3 age adoption passing confidence
@emotion/styled (source) 11.11.0 -> 11.13.0 age adoption passing confidence
@mui/x-date-pickers (source) 7.18.0 -> 7.22.1 age adoption passing confidence
@sentry/react (source) 7.119.1 -> 7.119.2 age adoption passing confidence
@sentry/tracing (source) 7.119.1 -> 7.119.2 age adoption passing confidence
@tanstack/react-query (source) 5.35.1 -> 5.59.19 age adoption passing confidence
@types/lodash (source) 4.14.202 -> 4.17.13 age adoption passing confidence
@types/react (source) 18.2.48 -> 18.3.12 age adoption passing confidence
@types/react-dom (source) 18.2.18 -> 18.3.1 age adoption passing confidence
@types/react-gtm-module (source) 2.0.3 -> 2.0.4 age adoption passing confidence
@types/react-simple-maps (source) 3.0.4 -> 3.0.6 age adoption passing confidence
@types/react-syntax-highlighter (source) 15.5.11 -> 15.5.13 age adoption passing confidence
@vitejs/plugin-react (source) 4.3.2 -> 4.3.3 age adoption passing confidence
chart.js (source) 4.4.1 -> 4.4.6 age adoption passing confidence
eslint (source) 8.56.0 -> 8.57.1 age adoption passing confidence
eslint-plugin-react-refresh 0.4.5 -> 0.4.14 age adoption passing confidence
graphql 16.8.1 -> 16.9.0 age adoption passing confidence
husky 9.0.11 -> 9.1.6 age adoption passing confidence
pnpm (source) 8.15.1 -> 8.15.9 age adoption passing confidence
prettier (source) 3.2.4 -> 3.3.3 age adoption passing confidence
react (source) 18.2.0 -> 18.3.1 age adoption passing confidence
react-countdown 2.3.5 -> 2.3.6 age adoption passing confidence
react-dom (source) 18.2.0 -> 18.3.1 age adoption passing confidence
react-hook-form (source) 7.49.3 -> 7.53.1 age adoption passing confidence
react-intersection-observer 9.5.3 -> 9.13.1 age adoption passing confidence
react-loading-skeleton 3.3.1 -> 3.5.0 age adoption passing confidence
react-number-format (source) 5.3.1 -> 5.4.2 age adoption passing confidence
react-router-dom (source) 6.21.3 -> 6.27.0 age adoption passing confidence
react-syntax-highlighter 15.5.0 -> 15.6.1 age adoption passing confidence
recharts 2.10.4 -> 2.13.3 age adoption passing confidence
typescript (source) 5.3.3 -> 5.6.3 age adoption passing confidence
vite (source) 5.4.8 -> 5.4.10 age adoption passing confidence
vite-plugin-svgr 4.2.0 -> 4.3.0 age adoption passing confidence
vitest (source) 2.1.2 -> 2.1.4 age adoption passing confidence

Release Notes

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

v3.11.8

Compare Source

Patch Changes

v3.11.7

Compare Source

Patch Changes
  • #​12052 e471cef Thanks @​jerelmiller! - Fixes a regression from where passing an invalid identifier to from in useFragment would result in the warning TypeError: Cannot read properties of undefined (reading '__typename').

v3.11.6

Compare Source

Patch Changes

v3.11.5

Compare Source

Patch Changes

v3.11.4

Compare Source

Patch Changes
  • #​11994 41b17e5 Thanks @​jerelmiller! - Update the Modifier function type to allow cache.modify to return deeply partial data.

  • #​11989 e609156 Thanks @​phryneas! - Fix a potential crash when calling clearStore while a query was running.

    Previously, calling client.clearStore() while a query was running had one of these results:

    • useQuery would stay in a loading: true state.
    • useLazyQuery would stay in a loading: true state, but also crash with a "Cannot read property 'data' of undefined" error.

    Now, in both cases, the hook will enter an error state with a networkError, and the promise returned by the useLazyQuery execute function will return a result in an error state.

  • #​11994 41b17e5 Thanks @​jerelmiller! - Prevent accidental distribution on cache.modify field modifiers when a field is a union type array.

v3.11.3

Compare Source

Patch Changes
Potentially disruptive change

When calling fetchMore with a query that has a no-cache fetch policy, fetchMore will now throw if an updateQuery function is not provided. This provides a mechanism to merge the results from the fetchMore call with the query's previous result.

v3.11.2

Compare Source

Patch Changes

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

v3.10.8

Compare Source

Patch Changes

v3.10.7

Compare Source

Patch Changes

v3.10.6

Compare Source

Patch Changes

v3.10.5

Compare Source

Patch Changes

v3.10.4

Compare Source

Patch Chang

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.


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

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

Copy link

netlify bot commented Oct 2, 2024

Deploy Preview for aptos-explorer ready!

Name Link
🔨 Latest commit 1a0b641
🔍 Latest deploy log https://app.netlify.com/sites/aptos-explorer/deploys/67279a92f3f9b0000858cdb9
😎 Deploy Preview https://deploy-preview-797--aptos-explorer.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 931429b to f7c1558 Compare October 3, 2024 17:34
@renovate renovate bot changed the title fix(deps): update all non-major dependencies Update all non-major dependencies Oct 3, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 15 times, most recently from 4779f14 to bfd8173 Compare October 11, 2024 10:01
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 11 times, most recently from 10bd85b to 474f36f Compare October 17, 2024 17:51
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 14 times, most recently from 66994cd to aff09fe Compare October 25, 2024 00:52
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from 0574caa to da7249a Compare November 1, 2024 15:29
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from f7cf0ca to 9930724 Compare November 3, 2024 13:53
@gregnazario
Copy link
Contributor

Replacing with #898

@gregnazario gregnazario closed this Nov 5, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant