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

fix(deps): update graphql-tools monorepo - autoclosed #63

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Sep 22, 2021

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@graphql-tools/graphql-file-loader ^7.1.0 -> 7.5.5 age adoption passing confidence
@graphql-tools/load ^7.3.1 -> 7.7.7 age adoption passing confidence
@graphql-tools/merge ^8.1.2 -> 8.3.6 age adoption passing confidence
@graphql-tools/schema ^8.2.0 -> 8.5.1 age adoption passing confidence
@graphql-tools/utils ^8.2.2 -> 8.12.0 age adoption passing confidence

Release Notes

ardatan/graphql-tools (@​graphql-tools/graphql-file-loader)

v7.5.5

Compare Source

Patch Changes

v7.5.4

Compare Source

Patch Changes

v7.5.3

Compare Source

Patch Changes

v7.5.2

Compare Source

Patch Changes

v7.5.1

Compare Source

Patch Changes

v7.5.0

Compare Source

Minor Changes
Patch Changes

v7.4.0

Compare Source

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

v7.3.16

Compare Source

Patch Changes

v7.3.15

Compare Source

Patch Changes

v7.3.14

Compare Source

Patch Changes

v7.3.13

Compare Source

Patch Changes

v7.3.12

Compare Source

Patch Changes

v7.3.11

Compare Source

Patch Changes

v7.3.10

Compare Source

Patch Changes

v7.3.9

Compare Source

Patch Changes

v7.3.8

Compare Source

Patch Changes

v7.3.7

Compare Source

Patch Changes

v7.3.6

Compare Source

Patch Changes

v7.3.5

Compare Source

Patch Changes

v7.3.4

Compare Source

Patch Changes

v7.3.3

Compare Source

Patch Changes
  • 3173a69: fix(graphql/json-loader): raise error if one of the found files fails

v7.3.2

Patch Changes

v7.3.1

Patch Changes

v7.3.0

Minor Changes
  • 94bee8b: This change allows pkg - npm to have snapshot stored schema files read by graphql-tools.

    pkg generates cross platform binary executables of node apps and includes a packaged read-only filesystem called a snapshot.

    This change was made because the pkg snapshot file system does not support use of globbing.

    If you want to use the snapshot facilty with pkg for schema files then:

    1. Access your snapshot schema file or files through a __dirname join
    2. Your file or files must be accessed by name without the glob '*' character.
    3. Do not add ignore files with ! (with or without a glob)
    4. Do not specify includeSources: true

v7.2.0

Minor Changes
  • 00d06c2: feat(loader): provide noSilentErrors option to allow raising errors during loader resolution
Patch Changes
ardatan/graphql-tools (@​graphql-tools/load)

v7.7.7

Compare Source

Patch Changes

v7.7.6

Compare Source

Patch Changes

v7.7.5

Compare Source

Patch Changes

v7.7.4

Compare Source

Patch Changes

v7.7.3

Compare Source

Patch Changes

v7.7.2

Compare Source

Patch Changes

v7.7.1

Compare Source

Patch Changes

v7.7.0

Compare Source

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

v7.6.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

v7.5.14

Compare Source

Patch Changes

v7.5.13

Compare Source

Patch Changes

v7.5.12

Compare Source

Patch Changes

v7.5.11

Compare Source

Patch Changes

v7.5.10

Compare Source

Patch Changes

v7.5.9

Compare Source

Patch Changes

v7.5.8

Compare Source

Patch Changes

v7.5.7

Compare Source

Patch Changes

v7.5.6

Compare Source

Patch Changes

v7.5.5

Compare Source

Patch Changes

v7.5.4

Compare Source

Patch Changes

v7.5.3

Compare Source

Patch Changes

v7.5.2

Compare Source

Patch Changes

v7.5.1

Compare Source

Patch Changes

v7.5.0

Compare Source

Minor Changes
  • b107413: feat(load): support custom require for custom loaders
Patch Changes

v7.4.1

Compare Source

Patch Changes

v7.4.0

Compare Source

Minor Changes
  • 149afdd: fix: getting ready for GraphQL v16
Patch Changes

v7.3.2

Compare Source

Patch Changes
  • 8079d43: Fix loadSchema no longer accepting options.schemas
ardatan/graphql-tools (@​graphql-tools/merge)

v8.3.6

Compare Source

Patch Changes

v8.3.5

Compare Source

Patch Changes

v8.3.4

Compare Source

Patch Changes

v8.3.3

Compare Source

Patch Changes

v8.3.2

Compare Source

Patch Changes

v8.3.1

Compare Source

Patch Changes

v8.3.0

Compare Source

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

v8.2.15

Compare Source

Patch Changes

v8.2.14

Compare Source

Patch Changes

v8.2.13

Compare Source

Patch Changes

v8.2.12

Compare Source

Patch Changes

v8.2.11

Compare Source

Patch Changes

v8.2.10

Compare Source

Patch Changes

v8.2.9

Compare Source

Patch Changes

v8.2.8

Compare Source

Patch Changes

v8.2.7

Compare Source

Patch Changes

v8.2.6

Compare Source

Patch Changes

v8.2.5

Compare Source

Patch Changes

v8.2.4

Compare Source

Patch Changes

v8.2.3

Compare Source

Patch Changes

v8.2.2

Compare Source

Patch Changes
  • 1269140: Update mergeTypeDefs to merge implements definitions defined within interface extensions.

v8.2.1

Compare Source

Patch Changes

v8.2.0

Compare Source

Minor Changes
  • 149afdd: fix: getting ready for GraphQL v16
Patch Changes
ardatan/graphql-tools (@​graphql-tools/schema)

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

v8.3.10

Compare Source

Patch Changes

v8.3.9

Compare Source

Patch Changes

v8.3.8

Compare Source

Patch Changes
  • Updated dependencies [0bbb176]
    • [@​

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, click this checkbox.

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

@renovate renovate bot force-pushed the renovate/graphql-tools-monorepo branch from 71ff18c to fc4bb56 Compare September 22, 2021 15:26
@renovate renovate bot changed the title fix(deps): update dependency @graphql-tools/utils to v8.2.3 fix(deps): update graphql-tools monorepo Sep 22, 2021
@renovate renovate bot force-pushed the renovate/graphql-tools-monorepo branch 4 times, most recently from 4ac07a7 to bafcd1b Compare October 6, 2021 18:58
@renovate renovate bot force-pushed the renovate/graphql-tools-monorepo branch from bafcd1b to efa0fa8 Compare October 13, 2021 04:44
@renovate renovate bot force-pushed the renovate/graphql-tools-monorepo branch 2 times, most recently from 0124c0b to 1af379d Compare October 21, 2021 17:34
@renovate renovate bot force-pushed the renovate/graphql-tools-monorepo branch 2 times, most recently from 318079a to 93f14f8 Compare November 2, 2021 19:55
@renovate renovate bot force-pushed the renovate/graphql-tools-monorepo branch 2 times, most recently from def984e to ee4f4bf Compare November 10, 2021 11:48
@renovate renovate bot force-pushed the renovate/graphql-tools-monorepo branch 2 times, most recently from ed331ec to 16c8100 Compare December 15, 2021 04:08
@renovate renovate bot force-pushed the renovate/graphql-tools-monorepo branch from 16c8100 to f7719ff Compare January 4, 2022 16:44
@renovate renovate bot force-pushed the renovate/graphql-tools-monorepo branch from f7719ff to 0179158 Compare March 7, 2022 08:37
@renovate renovate bot force-pushed the renovate/graphql-tools-monorepo branch from 0179158 to 9854add Compare March 26, 2022 13:02
@renovate renovate bot force-pushed the renovate/graphql-tools-monorepo branch from 9854add to e0efc62 Compare April 25, 2022 01:58
@renovate renovate bot force-pushed the renovate/graphql-tools-monorepo branch from e0efc62 to b48e566 Compare May 15, 2022 21:58
@renovate renovate bot force-pushed the renovate/graphql-tools-monorepo branch 2 times, most recently from 0e4dfe5 to fa9c587 Compare June 23, 2022 23:29
@renovate renovate bot force-pushed the renovate/graphql-tools-monorepo branch from fa9c587 to 273eac8 Compare September 25, 2022 21:26
@renovate renovate bot changed the title fix(deps): update graphql-tools monorepo fix(deps): update graphql-tools monorepo - autoclosed Nov 20, 2022
@renovate renovate bot closed this Nov 20, 2022
@renovate renovate bot deleted the renovate/graphql-tools-monorepo branch November 20, 2022 17:32
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