From a79b60ee25579a35be823e6eeebe154a22dc947f Mon Sep 17 00:00:00 2001 From: TheGuildBot <59414373+theguild-bot@users.noreply.github.com> Date: Tue, 19 Nov 2024 11:21:59 -0500 Subject: [PATCH] chore(release): update monorepo packages versions (#7950) Co-authored-by: github-actions[bot] --- ...l-mesh_transport-rest-7949-dependencies.md | 5 - ...omnigraph_json-schema-7949-dependencies.md | 5 - .changeset/swift-carrots-visit.md | 39 ------ examples/auth0/package.json | 2 +- examples/cloudflare-workers/package.json | 4 +- examples/gcp-functions/package.json | 2 +- .../hasura-openbrewery-geodb/package.json | 2 +- examples/hello-world-esm/package.json | 2 +- examples/hello-world/package.json | 2 +- examples/hive-example/gateway/package.json | 2 +- .../hive-example/sources/authors/package.json | 2 +- .../hive-example/sources/books/package.json | 2 +- examples/json-schema-covid/package.json | 2 +- examples/json-schema-example/package.json | 2 +- examples/json-schema-fhir/package.json | 2 +- examples/json-schema-file-upload/package.json | 2 +- .../json-schema-subscriptions/package.json | 2 +- examples/nextjs-apollo-example/package.json | 2 +- examples/nextjs-sdk-example/package.json | 2 +- examples/openapi-javascript-wiki/package.json | 2 +- .../openapi-location-weather/package.json | 2 +- examples/openapi-meilisearch/package.json | 2 +- examples/openapi-stackexchange/package.json | 2 +- examples/openapi-stripe/package.json | 2 +- examples/openapi-subscriptions/package.json | 2 +- examples/openapi-youtrack/package.json | 2 +- examples/persisted-operations/package.json | 2 +- examples/programmatic-batching/package.json | 2 +- examples/reddit-example/package.json | 2 +- examples/response-cache/CHANGELOG.md | 7 ++ examples/response-cache/package.json | 4 +- examples/spacex-cfw/package.json | 2 +- examples/v1-next/auth0/package.json | 2 +- .../integrations/cfw-breweries/package.json | 4 +- .../integrations/cfw-spacex/package.json | 2 +- .../v1-next/integrations/fastify/package.json | 2 +- .../integrations/gcp-functions/package.json | 2 +- .../openapi-location-weather/package.json | 2 +- .../v1-next/openapi-youtrack/package.json | 2 +- packages/cache/cfw-kv/CHANGELOG.md | 45 +++++++ packages/cache/cfw-kv/package.json | 2 +- .../legacy/handlers/json-schema/CHANGELOG.md | 8 ++ .../legacy/handlers/json-schema/package.json | 4 +- packages/legacy/handlers/openapi/CHANGELOG.md | 7 ++ packages/legacy/handlers/openapi/package.json | 4 +- packages/legacy/handlers/raml/CHANGELOG.md | 7 ++ packages/legacy/handlers/raml/package.json | 4 +- packages/loaders/json-schema/CHANGELOG.md | 13 ++ packages/loaders/json-schema/package.json | 4 +- packages/loaders/openapi/CHANGELOG.md | 8 ++ packages/loaders/openapi/package.json | 4 +- packages/loaders/raml/CHANGELOG.md | 8 ++ packages/loaders/raml/package.json | 4 +- packages/transports/rest/CHANGELOG.md | 10 ++ packages/transports/rest/package.json | 2 +- yarn.lock | 112 ++++++++++-------- 56 files changed, 227 insertions(+), 151 deletions(-) delete mode 100644 .changeset/@graphql-mesh_transport-rest-7949-dependencies.md delete mode 100644 .changeset/@omnigraph_json-schema-7949-dependencies.md delete mode 100644 .changeset/swift-carrots-visit.md diff --git a/.changeset/@graphql-mesh_transport-rest-7949-dependencies.md b/.changeset/@graphql-mesh_transport-rest-7949-dependencies.md deleted file mode 100644 index 6f26017d20d5b..0000000000000 --- a/.changeset/@graphql-mesh_transport-rest-7949-dependencies.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@graphql-mesh/transport-rest": patch ---- -dependencies updates: - - Updated dependency [`qs@6.13.1` ↗︎](https://www.npmjs.com/package/qs/v/6.13.1) (from `6.13.0`, in `dependencies`) diff --git a/.changeset/@omnigraph_json-schema-7949-dependencies.md b/.changeset/@omnigraph_json-schema-7949-dependencies.md deleted file mode 100644 index 8c6de5170ec42..0000000000000 --- a/.changeset/@omnigraph_json-schema-7949-dependencies.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@omnigraph/json-schema": patch ---- -dependencies updates: - - Updated dependency [`qs@6.13.1` ↗︎](https://www.npmjs.com/package/qs/v/6.13.1) (from `6.13.0`, in `dependencies`) diff --git a/.changeset/swift-carrots-visit.md b/.changeset/swift-carrots-visit.md deleted file mode 100644 index 8884d1909cf0c..0000000000000 --- a/.changeset/swift-carrots-visit.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -'@graphql-mesh/cache-cfw-kv': minor ---- - -Allow KV bindings in ES modules format - -The new ES modules format of Cloudflare Workers does not set the bindings in the global scope, instead it sets them inside the `env` argument of the `fetch` handler. - -### `wrangler.toml` - -These [KV namespaces in `wrangler.toml`](https://developers.cloudflare.com/kv/concepts/kv-namespaces/) would be used as following. - -```toml -kv_namespaces = [ - { binding = "MY_KV", id = "" } -] -``` - -#### Bindings in ES modules format - -```ts -import CloudflareKVCacheStorage from '@graphql-mesh/cache-cfw-kv'; - -export default { - async fetch(request, env, ctx) { - const cache = new CloudflareKVCacheStorage({ namespace: env.MY_KV }) - }, -}; -``` - -### Bindings in Service Worker format (legacy) - -```ts -import CloudflareKVCacheStorage from '@graphql-mesh/cache-cfw-kv'; - -addEventListener("fetch", async (event) => { - const cache = new CloudflareKVCacheStorage({ namespace: 'MY_KV' }) -}) -``` diff --git a/examples/auth0/package.json b/examples/auth0/package.json index 4bfd45e5b24bb..ebc703abbba2f 100644 --- a/examples/auth0/package.json +++ b/examples/auth0/package.json @@ -11,7 +11,7 @@ "dependencies": { "@envelop/auth0": "6.0.0", "@graphql-mesh/cli": "0.97.2", - "@graphql-mesh/json-schema": "0.107.7", + "@graphql-mesh/json-schema": "0.107.8", "@graphql-mesh/plugin-operation-field-permissions": "0.102.13", "graphql": "16.9.0" }, diff --git a/examples/cloudflare-workers/package.json b/examples/cloudflare-workers/package.json index 6104e1c7b00da..2d4fd5c64a47b 100644 --- a/examples/cloudflare-workers/package.json +++ b/examples/cloudflare-workers/package.json @@ -2,9 +2,9 @@ "name": "@examples/cloudflare-workers", "private": true, "dependencies": { - "@graphql-mesh/cache-cfw-kv": "0.102.13", + "@graphql-mesh/cache-cfw-kv": "0.103.0", "@graphql-mesh/cli": "0.97.2", - "@graphql-mesh/json-schema": "0.107.7", + "@graphql-mesh/json-schema": "0.107.8", "@graphql-mesh/plugin-response-cache": "0.102.13", "graphql": "16.9.0" }, diff --git a/examples/gcp-functions/package.json b/examples/gcp-functions/package.json index 6a2392a9035d5..fcc34fc0bd782 100644 --- a/examples/gcp-functions/package.json +++ b/examples/gcp-functions/package.json @@ -13,7 +13,7 @@ "dependencies": { "@google-cloud/functions-framework": "3.4.2", "@graphql-mesh/cli": "0.97.2", - "@graphql-mesh/json-schema": "0.107.7", + "@graphql-mesh/json-schema": "0.107.8", "@types/node": "22.9.0", "graphql": "16.9.0", "typescript": "^5.4.2" diff --git a/examples/hasura-openbrewery-geodb/package.json b/examples/hasura-openbrewery-geodb/package.json index 425d0afbd377b..3092bd4b28d06 100644 --- a/examples/hasura-openbrewery-geodb/package.json +++ b/examples/hasura-openbrewery-geodb/package.json @@ -7,7 +7,7 @@ }, "dependencies": { "@graphql-mesh/cli": "0.97.2", - "@graphql-mesh/json-schema": "0.107.7", + "@graphql-mesh/json-schema": "0.107.8", "graphql": "16.9.0" } } diff --git a/examples/hello-world-esm/package.json b/examples/hello-world-esm/package.json index 5aa18e92ec191..2a697fbf7d202 100644 --- a/examples/hello-world-esm/package.json +++ b/examples/hello-world-esm/package.json @@ -11,7 +11,7 @@ }, "dependencies": { "@graphql-mesh/cli": "0.97.2", - "@graphql-mesh/json-schema": "0.107.7", + "@graphql-mesh/json-schema": "0.107.8", "@graphql-mesh/plugin-mock": "0.102.14", "graphql": "16.9.0" }, diff --git a/examples/hello-world/package.json b/examples/hello-world/package.json index c0dae84d4520e..1db2c7cd4e0cb 100644 --- a/examples/hello-world/package.json +++ b/examples/hello-world/package.json @@ -8,7 +8,7 @@ }, "dependencies": { "@graphql-mesh/cli": "0.97.2", - "@graphql-mesh/json-schema": "0.107.7", + "@graphql-mesh/json-schema": "0.107.8", "@graphql-mesh/plugin-mock": "0.102.14", "@graphql-yoga/plugin-sofa": "3.10.2", "graphql": "16.9.0" diff --git a/examples/hive-example/gateway/package.json b/examples/hive-example/gateway/package.json index 6b6a1446e071d..5a28afd850405 100644 --- a/examples/hive-example/gateway/package.json +++ b/examples/hive-example/gateway/package.json @@ -7,7 +7,7 @@ }, "dependencies": { "@graphql-mesh/cli": "0.97.2", - "@graphql-mesh/openapi": "0.107.7", + "@graphql-mesh/openapi": "0.107.8", "@graphql-mesh/plugin-hive": "0.102.16", "@graphql-mesh/transform-hive": "0.102.16", "graphql": "16.9.0" diff --git a/examples/hive-example/sources/authors/package.json b/examples/hive-example/sources/authors/package.json index 9f4b912c0eb73..ec8b76f32a246 100644 --- a/examples/hive-example/sources/authors/package.json +++ b/examples/hive-example/sources/authors/package.json @@ -15,7 +15,7 @@ "devDependencies": { "@graphql-hive/cli": "0.44.3", "@graphql-mesh/cli": "0.97.2", - "@graphql-mesh/openapi": "0.107.7", + "@graphql-mesh/openapi": "0.107.8", "graphql": "16.9.0" } } diff --git a/examples/hive-example/sources/books/package.json b/examples/hive-example/sources/books/package.json index 897c97b613c81..62d058fb4ac3c 100644 --- a/examples/hive-example/sources/books/package.json +++ b/examples/hive-example/sources/books/package.json @@ -15,7 +15,7 @@ "devDependencies": { "@graphql-hive/cli": "0.44.3", "@graphql-mesh/cli": "0.97.2", - "@graphql-mesh/openapi": "0.107.7", + "@graphql-mesh/openapi": "0.107.8", "graphql": "16.9.0" } } diff --git a/examples/json-schema-covid/package.json b/examples/json-schema-covid/package.json index 5c95952d46e1c..1dcb866b1eca5 100644 --- a/examples/json-schema-covid/package.json +++ b/examples/json-schema-covid/package.json @@ -13,7 +13,7 @@ "dependencies": { "@graphql-mesh/cli": "0.97.2", "@graphql-mesh/graphql": "0.102.16", - "@graphql-mesh/json-schema": "0.107.7", + "@graphql-mesh/json-schema": "0.107.8", "graphql": "16.9.0" }, "devDependencies": { diff --git a/examples/json-schema-example/package.json b/examples/json-schema-example/package.json index 77bfb35e88a92..db823b84332d5 100644 --- a/examples/json-schema-example/package.json +++ b/examples/json-schema-example/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@graphql-mesh/cli": "0.97.2", - "@graphql-mesh/json-schema": "0.107.7", + "@graphql-mesh/json-schema": "0.107.8", "@graphql-mesh/plugin-mock": "0.102.14", "@graphql-mesh/transform-naming-convention": "0.102.13", "graphql": "16.9.0" diff --git a/examples/json-schema-fhir/package.json b/examples/json-schema-fhir/package.json index 1929228fbdcf5..14a46bd3aa0ef 100644 --- a/examples/json-schema-fhir/package.json +++ b/examples/json-schema-fhir/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@graphql-mesh/cli": "0.97.2", - "@graphql-mesh/json-schema": "0.107.7", + "@graphql-mesh/json-schema": "0.107.8", "graphql": "16.9.0", "unzip-stream": "0.3.4" }, diff --git a/examples/json-schema-file-upload/package.json b/examples/json-schema-file-upload/package.json index 1c514a8239f8d..0e0e1abf2d392 100644 --- a/examples/json-schema-file-upload/package.json +++ b/examples/json-schema-file-upload/package.json @@ -9,7 +9,7 @@ }, "dependencies": { "@graphql-mesh/cli": "0.97.2", - "@graphql-mesh/json-schema": "0.107.7", + "@graphql-mesh/json-schema": "0.107.8", "fets": "0.8.4", "graphql": "16.9.0" }, diff --git a/examples/json-schema-subscriptions/package.json b/examples/json-schema-subscriptions/package.json index d5bb52df35fe1..892549fa24933 100644 --- a/examples/json-schema-subscriptions/package.json +++ b/examples/json-schema-subscriptions/package.json @@ -8,7 +8,7 @@ }, "dependencies": { "@graphql-mesh/cli": "0.97.2", - "@graphql-mesh/json-schema": "0.107.7", + "@graphql-mesh/json-schema": "0.107.8", "@graphql-mesh/plugin-live-query": "0.102.13", "@whatwg-node/fetch": "^0.10.0", "fets": "0.8.4", diff --git a/examples/nextjs-apollo-example/package.json b/examples/nextjs-apollo-example/package.json index 6e7895ff22727..3a218e3c6597c 100644 --- a/examples/nextjs-apollo-example/package.json +++ b/examples/nextjs-apollo-example/package.json @@ -12,7 +12,7 @@ "dependencies": { "@graphql-mesh/cli": "0.97.2", "@graphql-mesh/config": "0.105.2", - "@graphql-mesh/openapi": "0.107.7", + "@graphql-mesh/openapi": "0.107.8", "@graphql-mesh/runtime": "0.104.2", "apollo-server-micro": "3.13.0", "graphql": "16.9.0", diff --git a/examples/nextjs-sdk-example/package.json b/examples/nextjs-sdk-example/package.json index 737cda90f3d32..49febca72c749 100644 --- a/examples/nextjs-sdk-example/package.json +++ b/examples/nextjs-sdk-example/package.json @@ -13,7 +13,7 @@ "dependencies": { "@graphql-mesh/cli": "0.97.2", "@graphql-mesh/config": "0.105.2", - "@graphql-mesh/openapi": "0.107.7", + "@graphql-mesh/openapi": "0.107.8", "@graphql-mesh/runtime": "0.104.2", "apollo-server-micro": "3.13.0", "graphql": "16.9.0", diff --git a/examples/openapi-javascript-wiki/package.json b/examples/openapi-javascript-wiki/package.json index 2e33189e12d1f..a509b5392f327 100644 --- a/examples/openapi-javascript-wiki/package.json +++ b/examples/openapi-javascript-wiki/package.json @@ -8,7 +8,7 @@ }, "dependencies": { "@graphql-mesh/cli": "0.97.2", - "@graphql-mesh/openapi": "0.107.7", + "@graphql-mesh/openapi": "0.107.8", "graphql": "16.9.0", "moment": "2.30.1", "typescript": "^5.4.2" diff --git a/examples/openapi-location-weather/package.json b/examples/openapi-location-weather/package.json index 5419bebf5d67e..fdf0fdc151661 100644 --- a/examples/openapi-location-weather/package.json +++ b/examples/openapi-location-weather/package.json @@ -7,7 +7,7 @@ }, "dependencies": { "@graphql-mesh/cli": "0.97.2", - "@graphql-mesh/openapi": "0.107.7", + "@graphql-mesh/openapi": "0.107.8", "@graphql-mesh/plugin-response-cache": "0.102.13", "@graphql-mesh/runtime": "0.104.2", "@graphql-mesh/transform-cache": "0.102.13", diff --git a/examples/openapi-meilisearch/package.json b/examples/openapi-meilisearch/package.json index f0268f8b3ab81..da82bfe4a7fcb 100644 --- a/examples/openapi-meilisearch/package.json +++ b/examples/openapi-meilisearch/package.json @@ -7,7 +7,7 @@ }, "dependencies": { "@graphql-mesh/cli": "0.97.2", - "@graphql-mesh/openapi": "0.107.7", + "@graphql-mesh/openapi": "0.107.8", "graphql": "16.9.0" } } diff --git a/examples/openapi-stackexchange/package.json b/examples/openapi-stackexchange/package.json index 99ca28d3a57e5..6e5b2e03620a7 100644 --- a/examples/openapi-stackexchange/package.json +++ b/examples/openapi-stackexchange/package.json @@ -7,7 +7,7 @@ }, "dependencies": { "@graphql-mesh/cli": "0.97.2", - "@graphql-mesh/openapi": "0.107.7", + "@graphql-mesh/openapi": "0.107.8", "graphql": "16.9.0" } } diff --git a/examples/openapi-stripe/package.json b/examples/openapi-stripe/package.json index f5d3b99afa346..f2831102d3963 100644 --- a/examples/openapi-stripe/package.json +++ b/examples/openapi-stripe/package.json @@ -7,7 +7,7 @@ }, "dependencies": { "@graphql-mesh/cli": "0.97.2", - "@graphql-mesh/openapi": "0.107.7", + "@graphql-mesh/openapi": "0.107.8", "graphql": "16.9.0" } } diff --git a/examples/openapi-subscriptions/package.json b/examples/openapi-subscriptions/package.json index 9e77a242b1d87..3e797548c4ee7 100644 --- a/examples/openapi-subscriptions/package.json +++ b/examples/openapi-subscriptions/package.json @@ -8,7 +8,7 @@ }, "dependencies": { "@graphql-mesh/cli": "0.97.2", - "@graphql-mesh/openapi": "0.107.7", + "@graphql-mesh/openapi": "0.107.8", "@whatwg-node/fetch": "^0.10.0", "concurrently": "9.1.0", "fets": "^0.8.0", diff --git a/examples/openapi-youtrack/package.json b/examples/openapi-youtrack/package.json index b5908001ca4c6..f9ace6ae39d58 100644 --- a/examples/openapi-youtrack/package.json +++ b/examples/openapi-youtrack/package.json @@ -7,7 +7,7 @@ }, "dependencies": { "@graphql-mesh/cli": "0.97.2", - "@graphql-mesh/openapi": "0.107.7", + "@graphql-mesh/openapi": "0.107.8", "@graphql-mesh/transform-resolvers-composition": "0.102.13", "graphql": "16.9.0", "graphql-fields": "2.0.3" diff --git a/examples/persisted-operations/package.json b/examples/persisted-operations/package.json index 6f5260604d1a5..bd4eebc6c8934 100644 --- a/examples/persisted-operations/package.json +++ b/examples/persisted-operations/package.json @@ -9,7 +9,7 @@ }, "dependencies": { "@graphql-mesh/cli": "0.97.2", - "@graphql-mesh/json-schema": "0.107.7", + "@graphql-mesh/json-schema": "0.107.8", "@graphql-mesh/plugin-mock": "0.102.14", "@graphql-yoga/plugin-sofa": "3.10.2", "graphql": "16.9.0" diff --git a/examples/programmatic-batching/package.json b/examples/programmatic-batching/package.json index 381c4bc907921..c911078eff498 100644 --- a/examples/programmatic-batching/package.json +++ b/examples/programmatic-batching/package.json @@ -8,7 +8,7 @@ }, "dependencies": { "@graphql-mesh/cli": "0.97.2", - "@graphql-mesh/openapi": "0.107.7", + "@graphql-mesh/openapi": "0.107.8", "@sinclair/typebox": "0.34.4", "fets": "0.8.4", "graphql": "16.9.0" diff --git a/examples/reddit-example/package.json b/examples/reddit-example/package.json index 56fb755da8d60..354d6c3c8f51f 100644 --- a/examples/reddit-example/package.json +++ b/examples/reddit-example/package.json @@ -3,6 +3,6 @@ "private": true, "dependencies": { "@graphql-mesh/cli": "0.97.2", - "@graphql-mesh/json-schema": "0.107.7" + "@graphql-mesh/json-schema": "0.107.8" } } diff --git a/examples/response-cache/CHANGELOG.md b/examples/response-cache/CHANGELOG.md index 013d152f65b51..404cac2585242 100644 --- a/examples/response-cache/CHANGELOG.md +++ b/examples/response-cache/CHANGELOG.md @@ -1,5 +1,12 @@ # example-response-cache +## 0.3.3 + +### Patch Changes + +- Updated dependencies []: + - @graphql-mesh/json-schema@0.107.8 + ## 0.3.2 ### Patch Changes diff --git a/examples/response-cache/package.json b/examples/response-cache/package.json index 206d09229462c..5ecd7076b9f77 100644 --- a/examples/response-cache/package.json +++ b/examples/response-cache/package.json @@ -1,6 +1,6 @@ { "name": "example-response-cache", - "version": "0.3.2", + "version": "0.3.3", "license": "MIT", "private": true, "scripts": { @@ -10,7 +10,7 @@ }, "dependencies": { "@graphql-mesh/cli": "^0.97.2", - "@graphql-mesh/json-schema": "^0.107.7", + "@graphql-mesh/json-schema": "^0.107.8", "@graphql-mesh/plugin-mock": "^0.102.14", "graphql": "16.9.0" } diff --git a/examples/spacex-cfw/package.json b/examples/spacex-cfw/package.json index a2e8a99a3fc0b..80a426b43828c 100644 --- a/examples/spacex-cfw/package.json +++ b/examples/spacex-cfw/package.json @@ -3,7 +3,7 @@ "private": true, "dependencies": { "@envelop/depth-limit": "4.0.0", - "@graphql-mesh/cache-cfw-kv": "0.102.13", + "@graphql-mesh/cache-cfw-kv": "0.103.0", "@graphql-mesh/cli": "0.97.2", "@graphql-mesh/graphql": "0.102.16", "@graphql-mesh/plugin-rate-limit": "0.102.13", diff --git a/examples/v1-next/auth0/package.json b/examples/v1-next/auth0/package.json index 0b4ff4b3f07b1..b82e35e00b941 100644 --- a/examples/v1-next/auth0/package.json +++ b/examples/v1-next/auth0/package.json @@ -13,7 +13,7 @@ "@graphql-hive/gateway": "^1.4.8", "@graphql-mesh/compose-cli": "^1.1.9", "@graphql-mesh/plugin-operation-field-permissions": "^0.102.13", - "@omnigraph/json-schema": "^0.107.7", + "@omnigraph/json-schema": "^0.107.8", "graphql": "16.9.0" }, "devDependencies": { diff --git a/examples/v1-next/integrations/cfw-breweries/package.json b/examples/v1-next/integrations/cfw-breweries/package.json index bf2cde00558c3..260adfe604ff7 100644 --- a/examples/v1-next/integrations/cfw-breweries/package.json +++ b/examples/v1-next/integrations/cfw-breweries/package.json @@ -7,11 +7,11 @@ }, "dependencies": { "@graphql-hive/gateway": "^1.4.8", - "@graphql-mesh/cache-cfw-kv": "^0.102.13", + "@graphql-mesh/cache-cfw-kv": "^0.103.0", "@graphql-mesh/cache-localforage": "^0.102.13", "@graphql-mesh/compose-cli": "^1.1.9", "@graphql-mesh/plugin-response-cache": "^0.102.13", - "@omnigraph/json-schema": "^0.107.7", + "@omnigraph/json-schema": "^0.107.8", "graphql": "16.9.0" }, "devDependencies": { diff --git a/examples/v1-next/integrations/cfw-spacex/package.json b/examples/v1-next/integrations/cfw-spacex/package.json index d2d6990cb2e07..88de3c3a696ca 100644 --- a/examples/v1-next/integrations/cfw-spacex/package.json +++ b/examples/v1-next/integrations/cfw-spacex/package.json @@ -7,7 +7,7 @@ "dependencies": { "@envelop/depth-limit": "^4.0.0", "@graphql-hive/gateway": "^1.4.8", - "@graphql-mesh/cache-cfw-kv": "^0.102.13", + "@graphql-mesh/cache-cfw-kv": "^0.103.0", "@graphql-mesh/plugin-rate-limit": "^0.102.13", "@graphql-mesh/plugin-response-cache": "^0.102.13", "graphql": "16.9.0" diff --git a/examples/v1-next/integrations/fastify/package.json b/examples/v1-next/integrations/fastify/package.json index ae971355a044a..d6675723a7634 100644 --- a/examples/v1-next/integrations/fastify/package.json +++ b/examples/v1-next/integrations/fastify/package.json @@ -8,7 +8,7 @@ "dependencies": { "@graphql-hive/gateway": "^1.4.8", "@graphql-mesh/compose-cli": "^1.1.9", - "@omnigraph/openapi": "^0.107.7", + "@omnigraph/openapi": "^0.107.8", "fastify": "^5.0.0", "graphql": "16.9.0", "ts-node": "^10.9.2", diff --git a/examples/v1-next/integrations/gcp-functions/package.json b/examples/v1-next/integrations/gcp-functions/package.json index 6ffa7e5914cb7..6a8f01bbf793c 100644 --- a/examples/v1-next/integrations/gcp-functions/package.json +++ b/examples/v1-next/integrations/gcp-functions/package.json @@ -14,7 +14,7 @@ "@google-cloud/functions-framework": "^3.3.0", "@graphql-hive/gateway": "^1.4.8", "@graphql-mesh/compose-cli": "^1.1.9", - "@omnigraph/json-schema": "^0.107.7", + "@omnigraph/json-schema": "^0.107.8", "@types/node": "^22.0.0", "graphql": "^16.9.0", "typescript": "^5.4.2" diff --git a/examples/v1-next/openapi-location-weather/package.json b/examples/v1-next/openapi-location-weather/package.json index a6f5aecaa39b2..5e866a699f769 100644 --- a/examples/v1-next/openapi-location-weather/package.json +++ b/examples/v1-next/openapi-location-weather/package.json @@ -10,7 +10,7 @@ "@graphql-hive/gateway": "^1.4.8", "@graphql-mesh/cache-localforage": "^0.102.13", "@graphql-mesh/compose-cli": "^1.1.9", - "@omnigraph/openapi": "^0.107.7", + "@omnigraph/openapi": "^0.107.8", "graphql": "^16.9.0" } } diff --git a/examples/v1-next/openapi-youtrack/package.json b/examples/v1-next/openapi-youtrack/package.json index e3da9ed0987d2..9ecffc25e9e99 100644 --- a/examples/v1-next/openapi-youtrack/package.json +++ b/examples/v1-next/openapi-youtrack/package.json @@ -9,7 +9,7 @@ "dependencies": { "@graphql-hive/gateway": "^1.4.8", "@graphql-mesh/compose-cli": "^1.1.9", - "@omnigraph/openapi": "^0.107.7", + "@omnigraph/openapi": "^0.107.8", "graphql": "^16.9.0" } } diff --git a/packages/cache/cfw-kv/CHANGELOG.md b/packages/cache/cfw-kv/CHANGELOG.md index 6f62103a42c78..9265b188997e5 100644 --- a/packages/cache/cfw-kv/CHANGELOG.md +++ b/packages/cache/cfw-kv/CHANGELOG.md @@ -1,5 +1,50 @@ # @graphql-mesh/cache-cfw-kv +## 0.103.0 + +### Minor Changes + +- [#7958](https://github.com/ardatan/graphql-mesh/pull/7958) + [`355203c`](https://github.com/ardatan/graphql-mesh/commit/355203ca1ebdb590962643409dfbd8a9571c43be) + Thanks [@enisdenjo](https://github.com/enisdenjo)! - Allow KV bindings in ES modules format + + The new ES modules format of Cloudflare Workers does not set the bindings in the global scope, + instead it sets them inside the `env` argument of the `fetch` handler. + + ### `wrangler.toml` + + These + [KV namespaces in `wrangler.toml`](https://developers.cloudflare.com/kv/concepts/kv-namespaces/) + would be used as following. + + ```toml + kv_namespaces = [ + { binding = "MY_KV", id = "" } + ] + ``` + + #### Bindings in ES modules format + + ```ts + import CloudflareKVCacheStorage from '@graphql-mesh/cache-cfw-kv' + + export default { + async fetch(request, env, ctx) { + const cache = new CloudflareKVCacheStorage({ namespace: env.MY_KV }) + } + } + ``` + + ### Bindings in Service Worker format (legacy) + + ```ts + import CloudflareKVCacheStorage from '@graphql-mesh/cache-cfw-kv' + + addEventListener('fetch', async event => { + const cache = new CloudflareKVCacheStorage({ namespace: 'MY_KV' }) + }) + ``` + ## 0.102.13 ### Patch Changes diff --git a/packages/cache/cfw-kv/package.json b/packages/cache/cfw-kv/package.json index ba1e568232811..ce77acfc2afe2 100644 --- a/packages/cache/cfw-kv/package.json +++ b/packages/cache/cfw-kv/package.json @@ -1,6 +1,6 @@ { "name": "@graphql-mesh/cache-cfw-kv", - "version": "0.102.13", + "version": "0.103.0", "type": "module", "repository": { "type": "git", diff --git a/packages/legacy/handlers/json-schema/CHANGELOG.md b/packages/legacy/handlers/json-schema/CHANGELOG.md index 489aa4eef4bf8..6ce32bf4d3668 100644 --- a/packages/legacy/handlers/json-schema/CHANGELOG.md +++ b/packages/legacy/handlers/json-schema/CHANGELOG.md @@ -1,5 +1,13 @@ # @graphql-mesh/json-schema +## 0.107.8 + +### Patch Changes + +- Updated dependencies + [[`10dd636`](https://github.com/ardatan/graphql-mesh/commit/10dd6363c8a8dba762cd3a42c4c5069457a1976b)]: + - @omnigraph/json-schema@0.107.8 + ## 0.107.7 ### Patch Changes diff --git a/packages/legacy/handlers/json-schema/package.json b/packages/legacy/handlers/json-schema/package.json index decdf57af116c..1de128fc5d164 100644 --- a/packages/legacy/handlers/json-schema/package.json +++ b/packages/legacy/handlers/json-schema/package.json @@ -1,6 +1,6 @@ { "name": "@graphql-mesh/json-schema", - "version": "0.107.7", + "version": "0.107.8", "type": "module", "repository": { "type": "git", @@ -42,7 +42,7 @@ "dependencies": { "@graphql-mesh/string-interpolation": "0.5.6", "@json-schema-tools/meta-schema": "1.7.5", - "@omnigraph/json-schema": "0.107.7", + "@omnigraph/json-schema": "0.107.8", "graphql-compose": "9.0.11", "json-machete": "0.97.4" }, diff --git a/packages/legacy/handlers/openapi/CHANGELOG.md b/packages/legacy/handlers/openapi/CHANGELOG.md index 6f24c64d2a46e..c433bdcafe11b 100644 --- a/packages/legacy/handlers/openapi/CHANGELOG.md +++ b/packages/legacy/handlers/openapi/CHANGELOG.md @@ -1,5 +1,12 @@ # @graphql-mesh/openapi +## 0.107.8 + +### Patch Changes + +- Updated dependencies []: + - @omnigraph/openapi@0.107.8 + ## 0.107.7 ### Patch Changes diff --git a/packages/legacy/handlers/openapi/package.json b/packages/legacy/handlers/openapi/package.json index 544005e8cbc8a..d1c82ea83de0f 100644 --- a/packages/legacy/handlers/openapi/package.json +++ b/packages/legacy/handlers/openapi/package.json @@ -1,6 +1,6 @@ { "name": "@graphql-mesh/openapi", - "version": "0.107.7", + "version": "0.107.8", "type": "module", "repository": { "type": "git", @@ -40,7 +40,7 @@ }, "dependencies": { "@graphql-mesh/string-interpolation": "0.5.6", - "@omnigraph/openapi": "0.107.7" + "@omnigraph/openapi": "0.107.8" }, "publishConfig": { "access": "public", diff --git a/packages/legacy/handlers/raml/CHANGELOG.md b/packages/legacy/handlers/raml/CHANGELOG.md index 3fddf443581c3..49e2c996430e8 100644 --- a/packages/legacy/handlers/raml/CHANGELOG.md +++ b/packages/legacy/handlers/raml/CHANGELOG.md @@ -1,5 +1,12 @@ # @graphql-mesh/raml +## 0.107.8 + +### Patch Changes + +- Updated dependencies []: + - @omnigraph/raml@0.107.8 + ## 0.107.7 ### Patch Changes diff --git a/packages/legacy/handlers/raml/package.json b/packages/legacy/handlers/raml/package.json index a0d3b1e798ab5..3ebb5de522bbd 100644 --- a/packages/legacy/handlers/raml/package.json +++ b/packages/legacy/handlers/raml/package.json @@ -1,6 +1,6 @@ { "name": "@graphql-mesh/raml", - "version": "0.107.7", + "version": "0.107.8", "type": "module", "repository": { "type": "git", @@ -39,7 +39,7 @@ "tslib": "^2.4.0" }, "dependencies": { - "@omnigraph/raml": "0.107.7" + "@omnigraph/raml": "0.107.8" }, "publishConfig": { "access": "public", diff --git a/packages/loaders/json-schema/CHANGELOG.md b/packages/loaders/json-schema/CHANGELOG.md index 0e01318765d88..e7a59c9fe58e6 100644 --- a/packages/loaders/json-schema/CHANGELOG.md +++ b/packages/loaders/json-schema/CHANGELOG.md @@ -1,5 +1,18 @@ # @omnigraph/json-schema +## 0.107.8 + +### Patch Changes + +- [#7949](https://github.com/ardatan/graphql-mesh/pull/7949) + [`10dd636`](https://github.com/ardatan/graphql-mesh/commit/10dd6363c8a8dba762cd3a42c4c5069457a1976b) + Thanks [@renovate](https://github.com/apps/renovate)! - dependencies updates: + - Updated dependency [`qs@6.13.1` ↗︎](https://www.npmjs.com/package/qs/v/6.13.1) (from `6.13.0`, + in `dependencies`) +- Updated dependencies + [[`10dd636`](https://github.com/ardatan/graphql-mesh/commit/10dd6363c8a8dba762cd3a42c4c5069457a1976b)]: + - @graphql-mesh/transport-rest@0.7.15 + ## 0.107.7 ### Patch Changes diff --git a/packages/loaders/json-schema/package.json b/packages/loaders/json-schema/package.json index 0592d9714e876..941206b66997d 100644 --- a/packages/loaders/json-schema/package.json +++ b/packages/loaders/json-schema/package.json @@ -1,6 +1,6 @@ { "name": "@omnigraph/json-schema", - "version": "0.107.7", + "version": "0.107.8", "type": "module", "repository": { "type": "git", @@ -42,7 +42,7 @@ "dependencies": { "@graphql-mesh/string-interpolation": "0.5.6", "@graphql-mesh/transport-common": "^0.7.13", - "@graphql-mesh/transport-rest": "^0.7.14", + "@graphql-mesh/transport-rest": "^0.7.15", "@graphql-tools/delegate": "^10.0.28", "@json-schema-tools/meta-schema": "1.7.5", "@whatwg-node/fetch": "^0.10.0", diff --git a/packages/loaders/openapi/CHANGELOG.md b/packages/loaders/openapi/CHANGELOG.md index 9c5f3a7ed055d..9fe4b9cc18870 100644 --- a/packages/loaders/openapi/CHANGELOG.md +++ b/packages/loaders/openapi/CHANGELOG.md @@ -1,5 +1,13 @@ # @omnigraph/openapi +## 0.107.8 + +### Patch Changes + +- Updated dependencies + [[`10dd636`](https://github.com/ardatan/graphql-mesh/commit/10dd6363c8a8dba762cd3a42c4c5069457a1976b)]: + - @omnigraph/json-schema@0.107.8 + ## 0.107.7 ### Patch Changes diff --git a/packages/loaders/openapi/package.json b/packages/loaders/openapi/package.json index 4d2d7b7dd3d6d..70892f7876124 100644 --- a/packages/loaders/openapi/package.json +++ b/packages/loaders/openapi/package.json @@ -1,6 +1,6 @@ { "name": "@omnigraph/openapi", - "version": "0.107.7", + "version": "0.107.8", "type": "module", "repository": { "type": "git", @@ -41,7 +41,7 @@ "dependencies": { "@graphql-mesh/string-interpolation": "^0.5.6", "@graphql-tools/delegate": "^10.0.28", - "@omnigraph/json-schema": "^0.107.7", + "@omnigraph/json-schema": "^0.107.8", "change-case": "^4.1.2", "json-machete": "^0.97.4", "openapi-types": "^12.1.0" diff --git a/packages/loaders/raml/CHANGELOG.md b/packages/loaders/raml/CHANGELOG.md index 1fc3c1c4e712e..5284a26fe4a45 100644 --- a/packages/loaders/raml/CHANGELOG.md +++ b/packages/loaders/raml/CHANGELOG.md @@ -1,5 +1,13 @@ # @omnigraph/raml +## 0.107.8 + +### Patch Changes + +- Updated dependencies + [[`10dd636`](https://github.com/ardatan/graphql-mesh/commit/10dd6363c8a8dba762cd3a42c4c5069457a1976b)]: + - @omnigraph/json-schema@0.107.8 + ## 0.107.7 ### Patch Changes diff --git a/packages/loaders/raml/package.json b/packages/loaders/raml/package.json index cc40983aa19cc..d9ab510ab930a 100644 --- a/packages/loaders/raml/package.json +++ b/packages/loaders/raml/package.json @@ -1,6 +1,6 @@ { "name": "@omnigraph/raml", - "version": "0.107.7", + "version": "0.107.8", "type": "module", "repository": { "type": "git", @@ -43,7 +43,7 @@ "@ardatan/raml-1-parser": "1.1.69", "@graphql-mesh/string-interpolation": "0.5.6", "@graphql-tools/delegate": "^10.0.28", - "@omnigraph/json-schema": "0.107.7", + "@omnigraph/json-schema": "0.107.8", "@whatwg-node/fetch": "^0.10.0", "change-case": "4.1.2", "json-machete": "0.97.4", diff --git a/packages/transports/rest/CHANGELOG.md b/packages/transports/rest/CHANGELOG.md index 570dcce497e3c..1a7705af7489f 100644 --- a/packages/transports/rest/CHANGELOG.md +++ b/packages/transports/rest/CHANGELOG.md @@ -1,5 +1,15 @@ # @graphql-mesh/transport-rest +## 0.7.15 + +### Patch Changes + +- [#7949](https://github.com/ardatan/graphql-mesh/pull/7949) + [`10dd636`](https://github.com/ardatan/graphql-mesh/commit/10dd6363c8a8dba762cd3a42c4c5069457a1976b) + Thanks [@renovate](https://github.com/apps/renovate)! - dependencies updates: + - Updated dependency [`qs@6.13.1` ↗︎](https://www.npmjs.com/package/qs/v/6.13.1) (from `6.13.0`, + in `dependencies`) + ## 0.7.14 ### Patch Changes diff --git a/packages/transports/rest/package.json b/packages/transports/rest/package.json index af35abd31c822..d53960db583e4 100644 --- a/packages/transports/rest/package.json +++ b/packages/transports/rest/package.json @@ -1,6 +1,6 @@ { "name": "@graphql-mesh/transport-rest", - "version": "0.7.14", + "version": "0.7.15", "type": "module", "repository": { "type": "git", diff --git a/yarn.lock b/yarn.lock index 0076e5aeb6d52..0830de7a17341 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4384,7 +4384,7 @@ __metadata: "@graphql-hive/gateway": "npm:^1.4.8" "@graphql-mesh/compose-cli": "npm:^1.1.9" "@graphql-mesh/plugin-operation-field-permissions": "npm:^0.102.13" - "@omnigraph/json-schema": "npm:^0.107.7" + "@omnigraph/json-schema": "npm:^0.107.8" graphql: "npm:16.9.0" jest: "npm:29.7.0" languageName: unknown @@ -4395,11 +4395,11 @@ __metadata: resolution: "@examples-v1-next/cfw-breweries@workspace:examples/v1-next/integrations/cfw-breweries" dependencies: "@graphql-hive/gateway": "npm:^1.4.8" - "@graphql-mesh/cache-cfw-kv": "npm:^0.102.13" + "@graphql-mesh/cache-cfw-kv": "npm:^0.103.0" "@graphql-mesh/cache-localforage": "npm:^0.102.13" "@graphql-mesh/compose-cli": "npm:^1.1.9" "@graphql-mesh/plugin-response-cache": "npm:^0.102.13" - "@omnigraph/json-schema": "npm:^0.107.7" + "@omnigraph/json-schema": "npm:^0.107.8" graphql: "npm:16.9.0" wrangler: "npm:3.87.0" languageName: unknown @@ -4411,7 +4411,7 @@ __metadata: dependencies: "@envelop/depth-limit": "npm:^4.0.0" "@graphql-hive/gateway": "npm:^1.4.8" - "@graphql-mesh/cache-cfw-kv": "npm:^0.102.13" + "@graphql-mesh/cache-cfw-kv": "npm:^0.103.0" "@graphql-mesh/plugin-rate-limit": "npm:^0.102.13" "@graphql-mesh/plugin-response-cache": "npm:^0.102.13" graphql: "npm:16.9.0" @@ -4425,7 +4425,7 @@ __metadata: dependencies: "@graphql-hive/gateway": "npm:^1.4.8" "@graphql-mesh/compose-cli": "npm:^1.1.9" - "@omnigraph/openapi": "npm:^0.107.7" + "@omnigraph/openapi": "npm:^0.107.8" fastify: "npm:^5.0.0" graphql: "npm:16.9.0" ts-node: "npm:^10.9.2" @@ -4441,7 +4441,7 @@ __metadata: "@google-cloud/functions-framework": "npm:^3.3.0" "@graphql-hive/gateway": "npm:^1.4.8" "@graphql-mesh/compose-cli": "npm:^1.1.9" - "@omnigraph/json-schema": "npm:^0.107.7" + "@omnigraph/json-schema": "npm:^0.107.8" "@types/node": "npm:^22.0.0" graphql: "npm:^16.9.0" typescript: "npm:^5.4.2" @@ -4504,7 +4504,7 @@ __metadata: "@graphql-hive/gateway": "npm:^1.4.8" "@graphql-mesh/cache-localforage": "npm:^0.102.13" "@graphql-mesh/compose-cli": "npm:^1.1.9" - "@omnigraph/openapi": "npm:^0.107.7" + "@omnigraph/openapi": "npm:^0.107.8" graphql: "npm:^16.9.0" languageName: unknown linkType: soft @@ -4515,7 +4515,7 @@ __metadata: dependencies: "@graphql-hive/gateway": "npm:^1.4.8" "@graphql-mesh/compose-cli": "npm:^1.1.9" - "@omnigraph/openapi": "npm:^0.107.7" + "@omnigraph/openapi": "npm:^0.107.8" graphql: "npm:^16.9.0" languageName: unknown linkType: soft @@ -4537,7 +4537,7 @@ __metadata: dependencies: "@envelop/auth0": "npm:6.0.0" "@graphql-mesh/cli": "npm:0.97.2" - "@graphql-mesh/json-schema": "npm:0.107.7" + "@graphql-mesh/json-schema": "npm:0.107.8" "@graphql-mesh/plugin-operation-field-permissions": "npm:0.102.13" graphql: "npm:16.9.0" jest: "npm:29.7.0" @@ -4548,9 +4548,9 @@ __metadata: version: 0.0.0-use.local resolution: "@examples/cloudflare-workers@workspace:examples/cloudflare-workers" dependencies: - "@graphql-mesh/cache-cfw-kv": "npm:0.102.13" + "@graphql-mesh/cache-cfw-kv": "npm:0.103.0" "@graphql-mesh/cli": "npm:0.97.2" - "@graphql-mesh/json-schema": "npm:0.107.7" + "@graphql-mesh/json-schema": "npm:0.107.8" "@graphql-mesh/plugin-response-cache": "npm:0.102.13" graphql: "npm:16.9.0" wrangler: "npm:3.87.0" @@ -4671,7 +4671,7 @@ __metadata: dependencies: "@google-cloud/functions-framework": "npm:3.4.2" "@graphql-mesh/cli": "npm:0.97.2" - "@graphql-mesh/json-schema": "npm:0.107.7" + "@graphql-mesh/json-schema": "npm:0.107.8" "@types/node": "npm:22.9.0" graphql: "npm:16.9.0" typescript: "npm:^5.4.2" @@ -4760,7 +4760,7 @@ __metadata: resolution: "@examples/hasura-openbrewery-geodb@workspace:examples/hasura-openbrewery-geodb" dependencies: "@graphql-mesh/cli": "npm:0.97.2" - "@graphql-mesh/json-schema": "npm:0.107.7" + "@graphql-mesh/json-schema": "npm:0.107.8" graphql: "npm:16.9.0" languageName: unknown linkType: soft @@ -4770,7 +4770,7 @@ __metadata: resolution: "@examples/hello-world-esm@workspace:examples/hello-world-esm" dependencies: "@graphql-mesh/cli": "npm:0.97.2" - "@graphql-mesh/json-schema": "npm:0.107.7" + "@graphql-mesh/json-schema": "npm:0.107.8" "@graphql-mesh/plugin-mock": "npm:0.102.14" graphql: "npm:16.9.0" jest: "npm:29.7.0" @@ -4784,7 +4784,7 @@ __metadata: resolution: "@examples/hello-world@workspace:examples/hello-world" dependencies: "@graphql-mesh/cli": "npm:0.97.2" - "@graphql-mesh/json-schema": "npm:0.107.7" + "@graphql-mesh/json-schema": "npm:0.107.8" "@graphql-mesh/plugin-mock": "npm:0.102.14" "@graphql-yoga/plugin-sofa": "npm:3.10.2" graphql: "npm:16.9.0" @@ -4797,7 +4797,7 @@ __metadata: resolution: "@examples/hive-example-gateway@workspace:examples/hive-example/gateway" dependencies: "@graphql-mesh/cli": "npm:0.97.2" - "@graphql-mesh/openapi": "npm:0.107.7" + "@graphql-mesh/openapi": "npm:0.107.8" "@graphql-mesh/plugin-hive": "npm:0.102.16" "@graphql-mesh/transform-hive": "npm:0.102.16" graphql: "npm:16.9.0" @@ -4810,7 +4810,7 @@ __metadata: dependencies: "@graphql-hive/cli": "npm:0.44.3" "@graphql-mesh/cli": "npm:0.97.2" - "@graphql-mesh/openapi": "npm:0.107.7" + "@graphql-mesh/openapi": "npm:0.107.8" fets: "npm:^0.8.0" graphql: "npm:16.9.0" ts-node: "npm:^10.9.2" @@ -4824,7 +4824,7 @@ __metadata: dependencies: "@graphql-hive/cli": "npm:0.44.3" "@graphql-mesh/cli": "npm:0.97.2" - "@graphql-mesh/openapi": "npm:0.107.7" + "@graphql-mesh/openapi": "npm:0.107.8" fets: "npm:^0.8.0" graphql: "npm:16.9.0" ts-node: "npm:^10.9.2" @@ -4838,7 +4838,7 @@ __metadata: dependencies: "@graphql-mesh/cli": "npm:0.97.2" "@graphql-mesh/graphql": "npm:0.102.16" - "@graphql-mesh/json-schema": "npm:0.107.7" + "@graphql-mesh/json-schema": "npm:0.107.8" graphql: "npm:16.9.0" jest: "npm:29.7.0" languageName: unknown @@ -4849,7 +4849,7 @@ __metadata: resolution: "@examples/json-schema-example@workspace:examples/json-schema-example" dependencies: "@graphql-mesh/cli": "npm:0.97.2" - "@graphql-mesh/json-schema": "npm:0.107.7" + "@graphql-mesh/json-schema": "npm:0.107.8" "@graphql-mesh/plugin-mock": "npm:0.102.14" "@graphql-mesh/transform-naming-convention": "npm:0.102.13" graphql: "npm:16.9.0" @@ -4862,7 +4862,7 @@ __metadata: resolution: "@examples/json-schema-fhir@workspace:examples/json-schema-fhir" dependencies: "@graphql-mesh/cli": "npm:0.97.2" - "@graphql-mesh/json-schema": "npm:0.107.7" + "@graphql-mesh/json-schema": "npm:0.107.8" "@types/unzip-stream": "npm:0.3.4" graphql: "npm:16.9.0" ts-node: "npm:^10.9.2" @@ -4876,7 +4876,7 @@ __metadata: resolution: "@examples/json-schema-file-upload@workspace:examples/json-schema-file-upload" dependencies: "@graphql-mesh/cli": "npm:0.97.2" - "@graphql-mesh/json-schema": "npm:0.107.7" + "@graphql-mesh/json-schema": "npm:0.107.8" "@types/node": "npm:22.9.0" concurrently: "npm:9.1.0" fets: "npm:0.8.4" @@ -4891,7 +4891,7 @@ __metadata: resolution: "@examples/json-schema-subscriptions@workspace:examples/json-schema-subscriptions" dependencies: "@graphql-mesh/cli": "npm:0.97.2" - "@graphql-mesh/json-schema": "npm:0.107.7" + "@graphql-mesh/json-schema": "npm:0.107.8" "@graphql-mesh/plugin-live-query": "npm:0.102.13" "@whatwg-node/fetch": "npm:^0.10.0" concurrently: "npm:9.1.0" @@ -4953,7 +4953,7 @@ __metadata: dependencies: "@graphql-mesh/cli": "npm:0.97.2" "@graphql-mesh/config": "npm:0.105.2" - "@graphql-mesh/openapi": "npm:0.107.7" + "@graphql-mesh/openapi": "npm:0.107.8" "@graphql-mesh/runtime": "npm:0.104.2" "@types/react": "npm:18.3.12" apollo-server-micro: "npm:3.13.0" @@ -4971,7 +4971,7 @@ __metadata: dependencies: "@graphql-mesh/cli": "npm:0.97.2" "@graphql-mesh/config": "npm:0.105.2" - "@graphql-mesh/openapi": "npm:0.107.7" + "@graphql-mesh/openapi": "npm:0.107.8" "@graphql-mesh/runtime": "npm:0.104.2" "@types/react": "npm:18.3.12" apollo-server-micro: "npm:3.13.0" @@ -5034,7 +5034,7 @@ __metadata: resolution: "@examples/openapi-javascript-wiki@workspace:examples/openapi-javascript-wiki" dependencies: "@graphql-mesh/cli": "npm:0.97.2" - "@graphql-mesh/openapi": "npm:0.107.7" + "@graphql-mesh/openapi": "npm:0.107.8" graphql: "npm:16.9.0" moment: "npm:2.30.1" typescript: "npm:^5.4.2" @@ -5046,7 +5046,7 @@ __metadata: resolution: "@examples/openapi-location-weather@workspace:examples/openapi-location-weather" dependencies: "@graphql-mesh/cli": "npm:0.97.2" - "@graphql-mesh/openapi": "npm:0.107.7" + "@graphql-mesh/openapi": "npm:0.107.8" "@graphql-mesh/plugin-response-cache": "npm:0.102.13" "@graphql-mesh/runtime": "npm:0.104.2" "@graphql-mesh/transform-cache": "npm:0.102.13" @@ -5060,7 +5060,7 @@ __metadata: resolution: "@examples/openapi-meilisearch@workspace:examples/openapi-meilisearch" dependencies: "@graphql-mesh/cli": "npm:0.97.2" - "@graphql-mesh/openapi": "npm:0.107.7" + "@graphql-mesh/openapi": "npm:0.107.8" graphql: "npm:16.9.0" languageName: unknown linkType: soft @@ -5086,7 +5086,7 @@ __metadata: resolution: "@examples/openapi-stackexchange@workspace:examples/openapi-stackexchange" dependencies: "@graphql-mesh/cli": "npm:0.97.2" - "@graphql-mesh/openapi": "npm:0.107.7" + "@graphql-mesh/openapi": "npm:0.107.8" graphql: "npm:16.9.0" languageName: unknown linkType: soft @@ -5096,7 +5096,7 @@ __metadata: resolution: "@examples/openapi-stripe@workspace:examples/openapi-stripe" dependencies: "@graphql-mesh/cli": "npm:0.97.2" - "@graphql-mesh/openapi": "npm:0.107.7" + "@graphql-mesh/openapi": "npm:0.107.8" graphql: "npm:16.9.0" languageName: unknown linkType: soft @@ -5106,7 +5106,7 @@ __metadata: resolution: "@examples/openapi-subscriptions@workspace:examples/openapi-subscriptions" dependencies: "@graphql-mesh/cli": "npm:0.97.2" - "@graphql-mesh/openapi": "npm:0.107.7" + "@graphql-mesh/openapi": "npm:0.107.8" "@whatwg-node/fetch": "npm:^0.10.0" concurrently: "npm:9.1.0" fets: "npm:^0.8.0" @@ -5122,7 +5122,7 @@ __metadata: resolution: "@examples/openapi-youtrack@workspace:examples/openapi-youtrack" dependencies: "@graphql-mesh/cli": "npm:0.97.2" - "@graphql-mesh/openapi": "npm:0.107.7" + "@graphql-mesh/openapi": "npm:0.107.8" "@graphql-mesh/transform-resolvers-composition": "npm:0.102.13" graphql: "npm:16.9.0" graphql-fields: "npm:2.0.3" @@ -5146,7 +5146,7 @@ __metadata: resolution: "@examples/persisted-operations@workspace:examples/persisted-operations" dependencies: "@graphql-mesh/cli": "npm:0.97.2" - "@graphql-mesh/json-schema": "npm:0.107.7" + "@graphql-mesh/json-schema": "npm:0.107.8" "@graphql-mesh/plugin-mock": "npm:0.102.14" "@graphql-yoga/plugin-sofa": "npm:3.10.2" graphql: "npm:16.9.0" @@ -5178,7 +5178,7 @@ __metadata: resolution: "@examples/programmatic-batching@workspace:examples/programmatic-batching" dependencies: "@graphql-mesh/cli": "npm:0.97.2" - "@graphql-mesh/openapi": "npm:0.107.7" + "@graphql-mesh/openapi": "npm:0.107.8" "@sinclair/typebox": "npm:0.34.4" concurrently: "npm:9.1.0" fets: "npm:0.8.4" @@ -5193,7 +5193,7 @@ __metadata: resolution: "@examples/reddit-example@workspace:examples/reddit-example" dependencies: "@graphql-mesh/cli": "npm:0.97.2" - "@graphql-mesh/json-schema": "npm:0.107.7" + "@graphql-mesh/json-schema": "npm:0.107.8" languageName: unknown linkType: soft @@ -5235,7 +5235,7 @@ __metadata: resolution: "@examples/spacex-cfw@workspace:examples/spacex-cfw" dependencies: "@envelop/depth-limit": "npm:4.0.0" - "@graphql-mesh/cache-cfw-kv": "npm:0.102.13" + "@graphql-mesh/cache-cfw-kv": "npm:0.103.0" "@graphql-mesh/cli": "npm:0.97.2" "@graphql-mesh/graphql": "npm:0.102.16" "@graphql-mesh/plugin-rate-limit": "npm:0.102.13" @@ -5907,7 +5907,7 @@ __metadata: languageName: unknown linkType: soft -"@graphql-mesh/cache-cfw-kv@npm:0.102.13, @graphql-mesh/cache-cfw-kv@npm:^0.102.13, @graphql-mesh/cache-cfw-kv@npm:^0.102.6, @graphql-mesh/cache-cfw-kv@workspace:packages/cache/cfw-kv": +"@graphql-mesh/cache-cfw-kv@npm:0.103.0, @graphql-mesh/cache-cfw-kv@npm:^0.103.0, @graphql-mesh/cache-cfw-kv@workspace:packages/cache/cfw-kv": version: 0.0.0-use.local resolution: "@graphql-mesh/cache-cfw-kv@workspace:packages/cache/cfw-kv" dependencies: @@ -5920,6 +5920,18 @@ __metadata: languageName: unknown linkType: soft +"@graphql-mesh/cache-cfw-kv@npm:^0.102.6": + version: 0.102.13 + resolution: "@graphql-mesh/cache-cfw-kv@npm:0.102.13" + peerDependencies: + "@graphql-mesh/types": ^0.102.13 + "@graphql-mesh/utils": ^0.102.13 + graphql: "*" + tslib: ^2.4.0 + checksum: 10c0/b99b86c0ed90e2fa0857262305f8d0976f850f29fd69bfe93caa9c4996b3183370a783b2857bd43cf7438b7b1ce1d6278ca02d4b971fed7d5449380dd5967829 + languageName: node + linkType: hard + "@graphql-mesh/cache-file@npm:0.102.13, @graphql-mesh/cache-file@workspace:packages/cache/file": version: 0.0.0-use.local resolution: "@graphql-mesh/cache-file@workspace:packages/cache/file" @@ -6213,13 +6225,13 @@ __metadata: languageName: unknown linkType: soft -"@graphql-mesh/json-schema@npm:0.107.7, @graphql-mesh/json-schema@npm:^0.107.7, @graphql-mesh/json-schema@workspace:packages/legacy/handlers/json-schema": +"@graphql-mesh/json-schema@npm:0.107.8, @graphql-mesh/json-schema@npm:^0.107.8, @graphql-mesh/json-schema@workspace:packages/legacy/handlers/json-schema": version: 0.0.0-use.local resolution: "@graphql-mesh/json-schema@workspace:packages/legacy/handlers/json-schema" dependencies: "@graphql-mesh/string-interpolation": "npm:0.5.6" "@json-schema-tools/meta-schema": "npm:1.7.5" - "@omnigraph/json-schema": "npm:0.107.7" + "@omnigraph/json-schema": "npm:0.107.8" graphql-compose: "npm:9.0.11" json-machete: "npm:0.97.4" peerDependencies: @@ -6345,12 +6357,12 @@ __metadata: languageName: unknown linkType: soft -"@graphql-mesh/openapi@npm:0.107.7, @graphql-mesh/openapi@workspace:packages/legacy/handlers/openapi": +"@graphql-mesh/openapi@npm:0.107.8, @graphql-mesh/openapi@workspace:packages/legacy/handlers/openapi": version: 0.0.0-use.local resolution: "@graphql-mesh/openapi@workspace:packages/legacy/handlers/openapi" dependencies: "@graphql-mesh/string-interpolation": "npm:0.5.6" - "@omnigraph/openapi": "npm:0.107.7" + "@omnigraph/openapi": "npm:0.107.8" peerDependencies: "@graphql-mesh/store": ^0.102.13 "@graphql-mesh/types": ^0.102.13 @@ -6687,7 +6699,7 @@ __metadata: version: 0.0.0-use.local resolution: "@graphql-mesh/raml@workspace:packages/legacy/handlers/raml" dependencies: - "@omnigraph/raml": "npm:0.107.7" + "@omnigraph/raml": "npm:0.107.8" peerDependencies: "@graphql-mesh/store": ^0.102.13 "@graphql-mesh/types": ^0.102.13 @@ -7200,7 +7212,7 @@ __metadata: languageName: unknown linkType: soft -"@graphql-mesh/transport-rest@npm:^0.7.14, @graphql-mesh/transport-rest@workspace:packages/transports/rest": +"@graphql-mesh/transport-rest@npm:^0.7.15, @graphql-mesh/transport-rest@workspace:packages/transports/rest": version: 0.0.0-use.local resolution: "@graphql-mesh/transport-rest@workspace:packages/transports/rest" dependencies: @@ -10010,13 +10022,13 @@ __metadata: languageName: unknown linkType: soft -"@omnigraph/json-schema@npm:0.107.7, @omnigraph/json-schema@npm:^0.107.7, @omnigraph/json-schema@workspace:*, @omnigraph/json-schema@workspace:packages/loaders/json-schema": +"@omnigraph/json-schema@npm:0.107.8, @omnigraph/json-schema@npm:^0.107.8, @omnigraph/json-schema@workspace:*, @omnigraph/json-schema@workspace:packages/loaders/json-schema": version: 0.0.0-use.local resolution: "@omnigraph/json-schema@workspace:packages/loaders/json-schema" dependencies: "@graphql-mesh/string-interpolation": "npm:0.5.6" "@graphql-mesh/transport-common": "npm:^0.7.13" - "@graphql-mesh/transport-rest": "npm:^0.7.14" + "@graphql-mesh/transport-rest": "npm:^0.7.15" "@graphql-tools/delegate": "npm:^10.0.28" "@json-schema-tools/meta-schema": "npm:1.7.5" "@types/qs": "npm:6.9.17" @@ -10111,14 +10123,14 @@ __metadata: languageName: unknown linkType: soft -"@omnigraph/openapi@npm:0.107.7, @omnigraph/openapi@npm:^0.107.7, @omnigraph/openapi@workspace:*, @omnigraph/openapi@workspace:packages/loaders/openapi": +"@omnigraph/openapi@npm:0.107.8, @omnigraph/openapi@npm:^0.107.8, @omnigraph/openapi@workspace:*, @omnigraph/openapi@workspace:packages/loaders/openapi": version: 0.0.0-use.local resolution: "@omnigraph/openapi@workspace:packages/loaders/openapi" dependencies: "@graphql-mesh/string-interpolation": "npm:^0.5.6" "@graphql-tools/delegate": "npm:^10.0.28" "@graphql-tools/utils": "npm:10.5.6" - "@omnigraph/json-schema": "npm:^0.107.7" + "@omnigraph/json-schema": "npm:^0.107.8" "@whatwg-node/fetch": "npm:0.10.1" change-case: "npm:^4.1.2" fets: "npm:0.8.4" @@ -10135,14 +10147,14 @@ __metadata: languageName: unknown linkType: soft -"@omnigraph/raml@npm:0.107.7, @omnigraph/raml@workspace:packages/loaders/raml": +"@omnigraph/raml@npm:0.107.8, @omnigraph/raml@workspace:packages/loaders/raml": version: 0.0.0-use.local resolution: "@omnigraph/raml@workspace:packages/loaders/raml" dependencies: "@ardatan/raml-1-parser": "npm:1.1.69" "@graphql-mesh/string-interpolation": "npm:0.5.6" "@graphql-tools/delegate": "npm:^10.0.28" - "@omnigraph/json-schema": "npm:0.107.7" + "@omnigraph/json-schema": "npm:0.107.8" "@whatwg-node/fetch": "npm:^0.10.0" change-case: "npm:4.1.2" json-machete: "npm:0.97.4" @@ -20963,7 +20975,7 @@ __metadata: resolution: "example-response-cache@workspace:examples/response-cache" dependencies: "@graphql-mesh/cli": "npm:^0.97.2" - "@graphql-mesh/json-schema": "npm:^0.107.7" + "@graphql-mesh/json-schema": "npm:^0.107.8" "@graphql-mesh/plugin-mock": "npm:^0.102.14" graphql: "npm:16.9.0" languageName: unknown