Skip to content

Update external major (major) - #73

Open
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/major-external-major
Open

Update external major (major)#73
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/major-external-major

Conversation

@renovate

@renovate renovate Bot commented Jul 19, 2021

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence Type Update
@graphql-tools/schema (source) 6.2.410.1.0 age confidence dependencies major
@graphql-tools/stitch (source) 6.2.410.2.2 age confidence dependencies major
@graphql-tools/wrap (source) 6.2.411.1.21 age confidence dependencies major
actions/checkout v4v7 age confidence action major
actions/setup-node v4v7 age confidence action major
actions/setup-python v5v7 age confidence action major
adobe/aio-apps-action 2.0.14.1.0 age confidence action major
axios (source) ^0.27.2^1.0.0 age confidence devDependencies major
chai (source) 4.3.56.2.2 age confidence devDependencies major
chalk ^4.1.2^6.0.0 age confidence devDependencies major
codecov 1.2.56.0.0 age confidence orb major
dataloader 1.4.02.2.3 age confidence dependencies major
eslint (source) 7.32.010.8.1 age confidence devDependencies major
graphiql (source) 1.5.165.2.4 age confidence dependencies major
graphql 14.7.017.0.2 age confidence dependencies major
inquirer (source) ^8.2.0^14.0.0 age confidence devDependencies major
mocha (source) 8.4.011.8.0 age confidence devDependencies major
mocha-junit-reporter 1.23.32.2.1 age confidence devDependencies major
nyc (source) 15.1.018.0.0 age confidence devDependencies major
react (source) 17.0.219.2.8 age confidence dependencies major
react-dom (source) 17.0.219.2.8 age confidence dependencies major
sinon (source) 7.5.022.1.0 age confidence devDependencies major

Release Notes

ardatan/graphql-tools (@​graphql-tools/schema)

v10.1.0

Compare Source

Minor Changes
  • #​8346
    2273c21
    Thanks @​ardatan! - This release adds GraphQL v17 support and aligns
    the existing executor implementation with the latest GraphQL v17 API changes. The following
    changes are included:

    • getAsyncHelpers is now available on GraphQLResolveInfo. Its track method is used whenever
      waitUntil is available, as in Yoga's
      Explicit Resource Management
    • getAbortSignal is now available on GraphQLResolveInfo, matching behavior that was already
      available in this executor implementation, as in Yoga's
      Execution Cancellation
    • GraphQLResolveInfo automatically aligns variableValues according to the GraphQL version for
      better compatibility. In GraphQL v17 and above, variableValues follows the wrapped shape
      ({ coerced, sources }) expected by GraphQL APIs. In GraphQL v16 and below, variableValues
      remains a flat map as in previous versions.
    • If your custom scalar resolvers define __serialize and __parseValue, they are automatically
      mapped to coerceOutputValue and coerceInputValue in GraphQL v17.
    • BREAKING: @graphql-tools/executor's getVariableValues now returns { variableValues }
      on success, where variableValues is a VariableValues object ({ coerced, sources }). On
      failure, it returns { errors }.
    • BREAKING: collectFields, shouldIncludeNode, getDeferValues, and collectSubFields now
      need a VariableValues object instead of Record<string, any> for the variableValues
      argument.
    • visitResult now internally normalizes ExecutionRequest.variables into a
      VariableValues-compatible shape ({ coerced, sources }) before traversing selections.
Patch Changes

v10.0.38

Compare Source

Patch Changes

v10.0.37

Compare Source

Patch Changes

v10.0.36

Compare Source

Patch Changes

v10.0.35

Compare Source

Patch Changes

v10.0.34

Compare Source

Patch Changes

v10.0.33

Compare Source

Patch Changes

v10.0.32

Compare Source

Patch Changes

v10.0.31

Compare Source

Patch Changes

v10.0.30

Compare Source

Patch Changes

v10.0.29

Compare Source

Patch Changes

v10.0.28

Compare Source

Patch Changes

v10.0.27

Compare Source

Patch Changes

v10.0.26

Compare Source

Patch Changes

v10.0.25

Compare Source

Patch Changes

v10.0.24

Compare Source

Patch Changes

v10.0.23

Compare Source

Patch Changes

v10.0.22

Compare Source

Patch Changes

v10.0.21

Compare Source

Patch Changes

v10.0.20

Compare Source

Patch Changes

v10.0.19

Compare Source

Patch Changes

v10.0.18

Compare Source

Patch Changes

v10.0.17

Compare Source

Patch Changes

v10.0.16

Compare Source

Patch Changes

v10.0.15

Compare Source

Patch Changes

v10.0.14

Compare Source

Patch Changes

v10.0.13

Compare Source

Patch Changes

v10.0.12

Compare Source

Patch Changes

v10.0.11

Compare Source

Patch Changes

v10.0.10

Compare Source

Patch Changes

v10.0.9

Compare Source

Patch Changes

v10.0.8

Compare Source

Patch Changes

v10.0.7

Compare Source

Patch Changes

v10.0.6

Compare Source

Patch Changes

v10.0.5

Compare Source

Patch Changes

v10.0.4

Compare Source

Patch Changes

v10.0.3

Compare Source

Patch Changes

v10.0.2

Compare Source

Patch Changes

v10.0.1

Compare Source

Patch Changes

v10.0.0

Compare Source

Major Changes
Patch Changes

v9.0.19

Compare Source

Patch Changes

v9.0.18

Compare Source

Patch Changes

v9.0.17

Compare Source

Patch Changes

v9.0.16

Compare Source

Patch Changes

v9.0.15

Compare Source

Patch Changes

v9.0.14

Compare Source

Patch Changes

v9.0.13

Compare Source

Patch Changes

v9.0.12

Compare Source

Patch Changes

v9.0.11

Compare Source

Patch Changes

v9.0.10

Compare Source

Patch Changes

v9.0.9

Compare Source

Patch Changes

v9.0.8

Compare Source

Patch Changes

v9.0.7

Compare Source

Patch Changes

v9.0.6

Compare Source

Patch Changes

v9.0.5

Compare Source

Patch Changes

v9.0.4

Compare Source

Patch Changes

v9.0.3

Compare Source

Patch Changes

v9.0.2

Compare Source

Patch Changes

v9.0.1

Compare Source

Patch Changes

v9.0.0

Compare Source

Major Changes

v8.5.1

Compare Source

Patch Changes

v8.5.0

Compare Source

Minor Changes
  • d76a299: Support TypeScript module resolution.
Patch Changes

v8.4.0

Compare Source

Minor Changes
  • 4914970: mergeSchemas was skipping defaultFieldResolver and defaultMergedResolver by
    default while extracting resolvers for each given schema to reduce the overhead. But this doesn't
    work properly if you mix wrapped schemas and local schemas. So new includeDefaultMergedResolver
    flag is introduced in getResolversFromSchema to put default "proxy" resolvers in the extracted
    resolver map for mergeSchemas.

    This fixes an issue with alias issue, so nested aliased fields weren't resolved properly because
    of the missing defaultMergedResolver in the final merged schema which should come from the
    wrapped schema.

Patch Changes

v8.3.14

Compare Source

Patch Changes

v8.3.13

Compare Source

Patch Changes

v8.3.12

Compare Source

Patch Changes

v8.3.11

Compare Source

Patch Changes

Note

PR body was truncated to here.

@renovate
renovate Bot force-pushed the renovate/major-external-major branch 8 times, most recently from 373cc7f to d8da2ad Compare July 25, 2021 16:46
@renovate
renovate Bot force-pushed the renovate/major-external-major branch 12 times, most recently from ea934e3 to 9c5e087 Compare July 31, 2021 00:54
@renovate
renovate Bot force-pushed the renovate/major-external-major branch 3 times, most recently from 25f470b to 2fa2495 Compare August 10, 2021 16:29
@renovate
renovate Bot force-pushed the renovate/major-external-major branch from 2fa2495 to 6961675 Compare August 18, 2021 14:54
@renovate
renovate Bot force-pushed the renovate/major-external-major branch 7 times, most recently from eee68d8 to 612904b Compare September 2, 2021 19:36
@renovate
renovate Bot force-pushed the renovate/major-external-major branch 2 times, most recently from e7d7ebf to 1623526 Compare September 9, 2021 11:35
@renovate
renovate Bot force-pushed the renovate/major-external-major branch 4 times, most recently from b559f11 to 094dba6 Compare September 19, 2021 21:59
@renovate
renovate Bot force-pushed the renovate/major-external-major branch 5 times, most recently from 2db976e to 7ba62ae Compare September 27, 2021 03:17
@renovate
renovate Bot force-pushed the renovate/major-external-major branch 3 times, most recently from ef08d66 to 129206f Compare October 4, 2021 21:34
@renovate
renovate Bot force-pushed the renovate/major-external-major branch 8 times, most recently from db7f4e9 to a02d938 Compare October 8, 2021 14:51
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.

0 participants