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

Merged
merged 2 commits into from
Mar 22, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 1, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@apollo/client (source) 3.7.9 -> 3.7.10 age adoption passing confidence
@apollo/gateway 2.3.2 -> 2.4.0 age adoption passing confidence
@apollo/subgraph 2.3.2 -> 2.4.0 age adoption passing confidence
@babel/core (source) 7.21.0 -> 7.21.3 age adoption passing confidence
@cloudflare/workers-types 4.20230221.0 -> 4.20230321.0 age adoption passing confidence
@graphql-codegen/typed-document-node 3.0.1 -> 3.0.2 age adoption passing confidence
@graphql-tools/load 7.8.12 -> 7.8.13 age adoption passing confidence
@graphql-tools/mock 8.7.18 -> 8.7.19 age adoption passing confidence
@graphql-tools/schema 9.0.16 -> 9.0.17 age adoption passing confidence
@graphql-tools/stitch 8.7.42 -> 8.7.43 age adoption passing confidence
@graphql-tools/url-loader 7.17.13 -> 7.17.14 age adoption passing confidence
@graphql-tools/wrap 9.3.7 -> 9.3.8 age adoption passing confidence
@graphql-typed-document-node/core 3.1.2 -> 3.2.0 age adoption passing confidence
@graphql-yoga/plugin-prometheus 1.7.0 -> 1.7.3 age adoption passing confidence
@graphql-yoga/plugin-response-cache 1.7.0 -> 1.7.3 age adoption passing confidence
@grpc/grpc-js (source) 1.8.11 -> 1.8.12 age adoption passing confidence
@neo4j/graphql (source) 3.17.0 -> 3.17.1 age adoption passing confidence
@neo4j/introspector (source) 1.0.1 -> 1.0.3 age adoption passing confidence
@types/graphql-fields (source) 1.3.4 -> 1.3.5 age adoption passing confidence
@types/jest (source) 29.4.0 -> 29.5.0 age adoption passing confidence
@types/node (source) 18.14.2 -> 18.15.5 age adoption passing confidence
@types/yargs (source) 17.0.22 -> 17.0.23 age adoption passing confidence
apollo-server 3.11.1 -> 3.12.0 age adoption passing confidence
apollo-server-micro 3.11.1 -> 3.12.0 age adoption passing confidence
babel-jest 29.4.3 -> 29.5.0 age adoption passing confidence
cosmiconfig 8.1.0 -> 8.1.3 age adoption passing confidence
esbuild 0.17.10 -> 0.17.12 age adoption passing confidence
eslint (source) 8.35.0 -> 8.36.0 age adoption passing confidence
eslint-config-prettier 8.6.0 -> 8.8.0 age adoption passing confidence
graphql-compose-mongoose 9.7.2 -> 9.8.0 age adoption passing confidence
graphql-ws 5.11.3 -> 5.12.0 age adoption passing confidence
graphql-yoga 3.7.0 -> 3.7.3 age adoption passing confidence
jest (source) 29.4.3 -> 29.5.0 age adoption passing confidence
lint-staged 13.1.2 -> 13.2.0 age adoption passing confidence
minimatch 7.3.0 -> 7.4.2 age adoption passing confidence
mkdirp 2.1.3 -> 2.1.5 age adoption passing confidence
mongoose (source) 6.10.0 -> 6.10.4 age adoption passing confidence
pg 8.6.0 -> 8.10.0 age adoption passing confidence
prettier (source) 2.8.4 -> 2.8.6 age adoption passing confidence
prom-client 14.1.1 -> 14.2.0 age adoption passing confidence
qs 6.11.0 -> 6.11.1 age adoption passing confidence
react-icons 4.7.1 -> 4.8.0 age adoption passing confidence
rimraf 4.1.2 -> 4.4.0 age adoption passing confidence
thrift (source) 0.18.0 -> 0.18.1 age adoption passing confidence
undici (source) 5.20.0 -> 5.21.0 age adoption passing confidence
vite (source) 4.1.4 -> 4.2.1 age adoption passing confidence
web-vitals 3.1.1 -> 3.3.0 age adoption passing confidence
wrangler 2.12.0 -> 2.13.0 age adoption passing confidence
ws 8.12.1 -> 8.13.0 age adoption passing confidence

Release Notes

apollographql/apollo-client

v3.7.10

Compare Source

Patch Changes
  • #​9438 52a9c8ea1 Thanks @​dciesielkiewicz! - Ensure the client option passed to useMutation's execute function is used when provided. Previously this option was ignored.

  • #​9124 975b923c0 Thanks @​andrebrantom! - Make ApolloClient.writeQuery and ApolloClient.writeFragment behave more like cache.writeQuery and cache.writeFragment by returning the reference returned by the cache.

apollographql/federation (@​apollo/gateway)

v2.4.0

Compare Source

Minor Changes
  • This change introduces a configurable query plan cache. This option allows (#​2385)
    developers to provide their own query plan cache like so:

    new ApolloGateway({
      queryPlannerConfig: {
        cache: new MyCustomQueryPlanCache(),
      },
    });
    

    The current default implementation is effectively as follows:

    import { InMemoryLRUCache } from "@​apollo/utils.keyvaluecache";
    
    const cache = new InMemoryLRUCache<string>({
      maxSize: Math.pow(2, 20) * 30,
      sizeCalculation<T>(obj: T): number {
        return Buffer.byteLength(JSON.stringify(obj), "utf8");
      },
    });
    

    TypeScript users should implement the QueryPlanCache type which is now
    exported by @apollo/query-planner:

    import { QueryPlanCache } from '@&#8203;apollo/query-planner';
    
    class MyCustomQueryPlanCache implements QueryPlanCache {
      // ...
    }
    
  • Adds debug/testing query planner options (debug.bypassPlannerForSingleSubgraph) to bypass the query planning (#​2441)
    process for federated supergraph having only a single subgraph. The option is disabled by default, is not recommended
    for production, and is not supported (it may be removed later). It is meant for debugging/testing purposes.

Patch Changes

v2.3.5

Compare Source

Patch Changes

v2.3.4

Compare Source

Patch Changes
  • Handle defaulted variables correctly during post-processing. (#​2443)

    Users who tried to use built-in conditional directives (skip/include) with defaulted variables and no variable provided would encounter an error thrown by operation post-processing saying that the variables weren't provided. The defaulted values went unaccounted for, so the operation would validate but then fail an assertion while resolving the conditional.

    With this change, defaulted variable values are now collected and provided to post-processing (with defaults being overwritten by variables that are actually provided).

  • Updated dependencies [6e2d24b5]:

v2.3.3

Compare Source

Patch Changes
  • Update @​apollo/utils.logger typings dependency (#​2269)

  • Exposes, for each subgraph request, the path in the overall gateway operation at which that subgraph request gets inserted. This path is now available as the pathInIncomingRequest field in the arguments of RemoteGraphQLDataSource.willSendRequest and RemoteGraphQLDataSource.didReceiveResponse. (#​2384)

  • Previously the queryPlanStoreKey was a hash of the query concatenated with an unhashed operationName if it was present. This resulted in variable length cache keys that could become unnecessarily long, occupying additional space in the query plan cache. (#​2310)

    This change incorporates the operationName into the hash itself (if operationName is present).

  • Update @​apollo/utils.createhash package, which drops support for node 12 (#​2266)

  • Update @​apollo/utils.isnodelike package, which dropped support for node 12 (#​2268)

  • Update @​apollo/utils.fetcher package, which drops support for node 12 (#​2267)

  • Updated dependencies [71a07f30]:

apollographql/federation (@​apollo/subgraph)

v2.4.0

Compare Source

Patch Changes

v2.3.5

Compare Source

Patch Changes

v2.3.4

Compare Source

Patch Changes

v2.3.3

Compare Source

Patch Changes
babel/babel

v7.21.3

Compare Source

👓 Spec Compliance
🐛 Bug Fix
💅 Polish
🏠 Internal
🔬 Output optimization
cloudflare/workerd

v4.20230321.0

Compare Source

v4.20230307.0

Compare Source

v4.20230228.0

Compare Source

dotansimha/graphql-code-generator

v3.0.2

Compare Source

Patch Changes
ardatan/graphql-tools (@​graphql-tools/load)

v7.8.13

Compare Source

Patch Changes
ardatan/graphql-tools (@​graphql-tools/mock)

v8.7.19

Compare Source

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

v9.0.17

Compare Source

Patch Changes
ardatan/graphql-tools (@​graphql-tools/stitch)

v8.7.43

Compare Source

Patch Changes
ardatan/graphql-tools (@​graphql-tools/url-loader)

v7.17.14

Compare Source

Patch Changes
ardatan/graphql-tools (@​graphql-tools/wrap)

v9.3.8

Compare Source

Patch Changes
dotansimha/graphql-typed-document-node

v3.2.0

Compare Source

dotansimha/graphql-yoga (@​graphql-yoga/plugin-prometheus)

v1.7.3

Compare Source

Patch Changes

v1.7.2

Compare Source

Patch Changes

v1.7.1

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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot added the dependencies label Mar 1, 2023
@changeset-bot
Copy link

changeset-bot bot commented Mar 1, 2023

🦋 Changeset detected

Latest commit: ee83a2e

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

This PR includes changesets to release 105 packages
Name Type
@graphql-mesh/cli Patch
@graphql-mesh/config Patch
@graphql-mesh/graphql Patch
@graphql-mesh/http Patch
@graphql-mesh/merger-bare Patch
@graphql-mesh/merger-federation Patch
@graphql-mesh/merger-stitching Patch
@graphql-mesh/mongoose Patch
@graphql-mesh/neo4j Patch
@graphql-mesh/plugin-mock Patch
@graphql-mesh/plugin-prometheus Patch
@graphql-mesh/plugin-rate-limit Patch
@graphql-mesh/plugin-response-cache Patch
@graphql-mesh/plugin-snapshot Patch
@graphql-mesh/runtime Patch
@graphql-mesh/thrift Patch
@graphql-mesh/transform-cache Patch
@graphql-mesh/transform-encapsulate Patch
@graphql-mesh/transform-extend Patch
@graphql-mesh/transform-federation Patch
@graphql-mesh/transform-filter-schema Patch
@graphql-mesh/transform-hoist-field Patch
@graphql-mesh/transform-naming-convention Patch
@graphql-mesh/transform-prefix Patch
@graphql-mesh/transform-rename Patch
@graphql-mesh/transform-replace-field Patch
@graphql-mesh/transform-resolvers-composition Patch
@graphql-mesh/types Patch
@omnigraph/json-schema Patch
auth0-example Patch
cloudflare-workers Patch
example-gcp Patch
graphql-file-upload-example Patch
grpc-example Patch
grpc-reflection-example Patch
hasura-openbrewery-geodb Patch
hello-world-esm Patch
json-schema-hello-world Patch
covid-mesh Patch
json-schema-example Patch
json-schema-fhir Patch
json-schema-file-upload Patch
json-schema-subscriptions Patch
mongoose-example Patch
mysql-employees Patch
mysql-rfam Patch
neo4j-example Patch
nextjs-apollo-example Patch
nextjs-sdk-example Patch
odata-microsoft-graph-example Patch
odata-msgraph-programmatic-ts Patch
odata-msgraph-programmatic Patch
odata-trippin-example Patch
javascript-wiki Patch
typescript-location-weather-example Patch
openapi-meilisearch Patch
openapi-stackexchange Patch
openapi-stripe Patch
openapi-subscriptions Patch
openapi-youtrack Patch
openwhisk-example Patch
postgres-geodb-example Patch
programmatic-batching-example Patch
reddit-example Patch
country-info-example Patch
soap-demo Patch
soap-netsuite Patch
spacex-cfw Patch
chinook Patch
thrift-calculator Patch
type-merging-batching-example Patch
federation-gateway Patch
gateway-example Patch
@graphql-mesh/jit-executor Patch
json-machete Patch
@graphql-mesh/store Patch
@graphql-mesh/utils Patch
@graphql-mesh/cache-cfw-kv Patch
@graphql-mesh/cache-file Patch
@graphql-mesh/cache-localforage Patch
@graphql-mesh/cache-redis Patch
@graphql-mesh/grpc Patch
@graphql-mesh/json-schema Patch
@graphql-mesh/mysql Patch
@graphql-mesh/odata Patch
@graphql-mesh/openapi Patch
@graphql-mesh/postgraphile Patch
@graphql-mesh/raml Patch
@graphql-mesh/soap Patch
@graphql-mesh/tuql Patch
@graphql-mesh/transform-hive Patch
@graphql-mesh/transform-prune Patch
@graphql-mesh/transform-rate-limit Patch
@graphql-mesh/transform-type-merging Patch
@graphql-mesh/plugin-deduplicate-request Patch
@graphql-mesh/plugin-hive Patch
@graphql-mesh/plugin-http-cache Patch
@graphql-mesh/plugin-http-details-extensions Patch
@graphql-mesh/plugin-live-query Patch
@graphql-mesh/plugin-newrelic Patch
@graphql-mesh/plugin-operation-field-permissions Patch
@graphql-mesh/plugin-statsd Patch
@omnigraph/openapi Patch
@omnigraph/soap Patch
@omnigraph/raml 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

@github-actions
Copy link
Contributor

github-actions bot commented Mar 1, 2023

🚀 Snapshot Release (alpha)

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

Package Version Info
@graphql-mesh/cache-cfw-kv 0.1.19-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/cache-file 0.10.19-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/cache-localforage 0.7.19-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/cache-redis 0.11.20-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/cli 0.82.29-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/config 10.1.12-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/graphql 0.34.12-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/grpc 0.29.17-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/json-schema 0.37.23-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/mongoose 0.13.19-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/mysql 0.19.19-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/neo4j 0.22.21-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/odata 0.22.20-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/openapi 0.35.25-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/postgraphile 0.22.19-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/raml 0.10.23-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/soap 0.17.22-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/thrift 0.12.20-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/tuql 0.8.18-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/http 0.3.25-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/jit-executor 0.1.19-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
json-machete 0.18.19-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@omnigraph/json-schema 0.38.23-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@omnigraph/openapi 0.19.25-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@omnigraph/raml 0.9.23-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@omnigraph/soap 0.4.21-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/merger-bare 0.16.21-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/merger-federation 0.13.21-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/merger-stitching 0.18.21-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-deduplicate-request 0.1.20-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-hive 0.1.9-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-http-cache 0.1.20-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-http-details-extensions 0.1.20-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-live-query 0.2.19-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-mock 0.1.20-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-newrelic 0.3.20-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-operation-field-permissions 0.1.19-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-prometheus 0.5.7-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-rate-limit 0.2.21-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-response-cache 0.2.21-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-snapshot 0.1.22-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/plugin-statsd 0.1.19-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/runtime 0.46.20-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/store 0.9.19-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-cache 0.13.19-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-encapsulate 0.4.20-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-extend 0.11.19-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-federation 0.11.13-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-filter-schema 0.15.22-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-hive 0.0.25-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-hoist-field 0.2.20-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-naming-convention 0.13.21-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-prefix 0.12.21-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-prune 0.1.19-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-rate-limit 0.2.20-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-rename 0.14.21-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-replace-field 0.4.19-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-resolvers-composition 0.13.19-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/transform-type-merging 0.5.19-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/types 0.91.11-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎
@graphql-mesh/utils 0.43.19-alpha-20230322091707-ee83a2e21 npm ↗︎ unpkg ↗︎

@github-actions
Copy link
Contributor

github-actions bot commented Mar 1, 2023

💻 Website Preview

The latest changes are available as preview in: https://9c603750.graphql-mesh.pages.dev

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 7c95e0f to 6d6c565 Compare March 22, 2023 09:11
@renovate renovate bot changed the title fix(deps): update dependency minimatch to v7.4.1 chore(deps): update all non-major dependencies Mar 22, 2023
@renovate
Copy link
Contributor Author

renovate bot commented Mar 22, 2023

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.

@ardatan ardatan merged commit 7e70966 into master Mar 22, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant