Skip to content

fix(deps): update all non-major dependencies #744

New issue

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

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

Already on GitHub? # to your account

Merged
merged 3 commits into from
Jul 26, 2024
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 26, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@apollo/client (source) 3.10.6 -> 3.11.1 age adoption passing confidence
@babel/core (source) 7.24.7 -> 7.24.9 age adoption passing confidence
@babel/preset-env (source) 7.24.7 -> 7.24.8 age adoption passing confidence
@graphql-mesh/apollo-link (source) ^0.99.0 -> ^0.100.0 age adoption passing confidence
@graphql-mesh/cli (source) ^0.91.0 -> ^0.92.0 age adoption passing confidence
@graphql-mesh/fusion-runtime (source) ^0.3.0 -> ^0.5.0 age adoption passing confidence
@graphql-mesh/graphql (source) ^0.98.0 -> ^0.99.0 age adoption passing confidence
@graphql-mesh/transform-prefix (source) ^0.98.0 -> ^0.99.0 age adoption passing confidence
@graphql-mesh/transform-rename (source) ^0.98.0 -> ^0.99.0 age adoption passing confidence
@graphql-mesh/transform-type-merging (source) ^0.98.0 -> ^0.99.0 age adoption passing confidence
@graphql-mesh/types (source) ^0.78.0 || ^0.79.0 || ^0.80.0 || ^0.81.0 || ^0.82.0 || ^0.83.0 || ^0.84.0 || ^0.85.0 || ^0.89.0 || ^0.90.0 || ^0.91.0 || ^0.93.0 || ^0.94.0 || ^0.97.0 || ^0.98.0 -> ^0.78.0 || ^0.79.0 || ^0.80.0 || ^0.81.0 || ^0.82.0 || ^0.83.0 || ^0.84.0 || ^0.85.0 || ^0.89.0 || ^0.90.0 || ^0.91.0 || ^0.93.0 || ^0.94.0 || ^0.97.0 || ^0.98.0 || ^0.99.0 age adoption passing confidence
@graphql-mesh/urql-exchange (source) ^0.99.0 -> ^0.100.0 age adoption passing confidence
@graphql-tools/utils (source) 10.2.2 -> 10.3.2 age adoption passing confidence
@tanstack/react-query (source) 5.48.0 -> 5.51.15 age adoption passing confidence
@types/lodash (source) 4.17.5 -> 4.17.7 age adoption passing confidence
@types/node (source) 20.14.8 -> 20.14.12 age adoption passing confidence
eslint (source) 9.5.0 -> 9.7.0 age adoption passing confidence
husky 9.0.11 -> 9.1.2 age adoption passing confidence
prettier (source) 3.3.2 -> 3.3.3 age adoption passing confidence
rimraf 5.0.7 -> 5.0.9 age adoption passing confidence
ts-jest (source) 29.1.5 -> 29.2.3 age adoption passing confidence
tslib (source) 2.6.2 -> 2.6.3 age adoption passing confidence
vite (source) 5.3.1 -> 5.3.5 age adoption passing confidence

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

v3.10.8

Compare Source

Patch Changes

v3.10.7

Compare Source

Patch Changes
babel/babel (@​babel/core)

v7.24.9

Compare Source

🐛 Bug Fix
💅 Polish
🏠 Internal

v7.24.8

Compare Source

👓 Spec Compliance
🐛 Bug Fix
💅 Polish
ardatan/graphql-mesh (@​graphql-mesh/apollo-link)

v0.100.4

Compare Source

Patch Changes

v0.100.3

Compare Source

Patch Changes

v0.100.2

Compare Source

Patch Changes

v0.100.1

Compare Source

Patch Changes

v0.100.0

Compare Source

Patch Changes

v0.99.12

Compare Source

Patch Changes

v0.99.11

Compare Source

Patch Changes
ardatan/graphql-mesh (@​graphql-mesh/cli)

v0.92.4

Compare Source

Patch Changes

v0.92.3

Compare Source

Patch Changes

v0.92.2

Compare Source

Patch Changes

v0.92.1

Compare Source

Patch Changes

v0.92.0

Compare Source

Minor Changes
Patch Changes

v0.91.2

Compare Source

Patch Changes

v0.91.1

Compare Source

Patch Changes
ardatan/graphql-mesh (@​graphql-mesh/fusion-runtime)

v0.5.5

Compare Source

Patch Changes

v0.5.4

Compare Source

Patch Changes

v0.5.3

Compare Source

Patch Changes

v0.5.2

Compare Source

Patch Changes

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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

changeset-bot bot commented Jul 26, 2024

🦋 Changeset detected

Latest commit: 4d1267b

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 7 packages
Name Type
@graphprotocol/client-add-source-name Patch
@graphprotocol/client-apollo Patch
@graphprotocol/client-auto-pagination Patch
@graphprotocol/client-auto-type-merging Patch
@graphprotocol/client-block-tracking Patch
@graphprotocol/client-cli Patch
@graphprotocol/client-urql Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

Copy link
Contributor Author

renovate bot commented Jul 26, 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.

@theguild-bot
Copy link
Collaborator

🚀 Snapshot Release (alpha)

The latest changes of this PR are available as alpha on npm (based on the declared changesets):

Package Version Info
@graphprotocol/client-add-source-name 2.0.4-alpha-20240726162809-4d1267b520efe8ebd417dcd8cad61cd550c1e766 npm ↗︎ unpkg ↗︎
@graphprotocol/client-apollo 2.0.4-alpha-20240726162809-4d1267b520efe8ebd417dcd8cad61cd550c1e766 npm ↗︎ unpkg ↗︎
@graphprotocol/client-auto-pagination 2.0.4-alpha-20240726162809-4d1267b520efe8ebd417dcd8cad61cd550c1e766 npm ↗︎ unpkg ↗︎
@graphprotocol/client-auto-type-merging 2.0.4-alpha-20240726162809-4d1267b520efe8ebd417dcd8cad61cd550c1e766 npm ↗︎ unpkg ↗︎
@graphprotocol/client-block-tracking 2.0.3-alpha-20240726162809-4d1267b520efe8ebd417dcd8cad61cd550c1e766 npm ↗︎ unpkg ↗︎
@graphprotocol/client-cli 3.0.4-alpha-20240726162809-4d1267b520efe8ebd417dcd8cad61cd550c1e766 npm ↗︎ unpkg ↗︎
@graphprotocol/client-urql 2.0.4-alpha-20240726162809-4d1267b520efe8ebd417dcd8cad61cd550c1e766 npm ↗︎ unpkg ↗︎

@ardatan ardatan merged commit ace0c61 into main Jul 26, 2024
7 checks passed
# for free to join this conversation on GitHub. Already have an account? # to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants