diff --git a/.changeset/@omnigraph_soap-8196-dependencies.md b/.changeset/@omnigraph_soap-8196-dependencies.md
deleted file mode 100644
index 13e075d488777..0000000000000
--- a/.changeset/@omnigraph_soap-8196-dependencies.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-"@omnigraph/soap": patch
----
-dependencies updates:
- - Added dependency [`@graphql-mesh/transport-common@^0.7.25` ↗︎](https://www.npmjs.com/package/@graphql-mesh/transport-common/v/0.7.25) (to `dependencies`)
diff --git a/.changeset/funny-kangaroos-think.md b/.changeset/funny-kangaroos-think.md
deleted file mode 100644
index b4889bca1b08a..0000000000000
--- a/.changeset/funny-kangaroos-think.md
+++ /dev/null
@@ -1,75 +0,0 @@
----
-'@graphql-mesh/transport-soap': patch
-'@omnigraph/soap': patch
-'@graphql-mesh/types': patch
----
-
-- You can now choose the name of the alias you want to use for SOAP body;
-
-```ts filename="mesh.config.ts" {4}
-import { defineConfig } from '@graphql-mesh/compose-cli'
-
-export const composeConfig = defineConfig({
- sources: [
- {
- sourceHandler: loadSOAPSubgraph('CountryInfo', {
- source:
- 'http://webservices.oorsprong.org/websamples.countryinfo/CountryInfoService.wso?WSDL',
- bodyAlias: 'my-body'
- })
- }
- ]
-})
-```
-
-- Then it will generate a body like below by using the alias;
-
-```xml
-
-
-
- baz
-
-
-
-```
-
-If you want to add SOAP headers to the request body like below;
-
-```xml
-
-
-
- user
- password
-
-
-```
-
-You can add the headers to the configuration like below;
-
-```ts filename="mesh.config.ts" {2,7-9}
-import { defineConfig } from '@graphql-mesh/compose-cli'
-import { loadSOAPSubgraph } from '@omnigraph/soap'
-
-export const composeConfig = defineConfig({
- subgraphs: [
- {
- sourceHandler: loadSOAPSubgraph('CountryInfo', {
- source:
- 'http://webservices.oorsprong.org/websamples.countryinfo/CountryInfoService.wso?WSDL',
- soapHeaders: {
- alias: 'header',
- namespace: 'http://foo.com',
- headers: {
- MyHeader: {
- UserName: 'user',
- Password: 'password'
- }
- }
- }
- })
- }
- ]
-})
-```
diff --git a/.changeset/tidy-masks-suffer.md b/.changeset/tidy-masks-suffer.md
deleted file mode 100644
index 17f1bb0ade1f4..0000000000000
--- a/.changeset/tidy-masks-suffer.md
+++ /dev/null
@@ -1,6 +0,0 @@
----
-'@graphql-mesh/transport-grpc': patch
-'@graphql-mesh/utils': patch
----
-
-Handle transformed gRPC sources correctly
diff --git a/e2e/thrift-calculator/package.json b/e2e/thrift-calculator/package.json
index 5c46d794acf76..1cd82a9a4cd10 100644
--- a/e2e/thrift-calculator/package.json
+++ b/e2e/thrift-calculator/package.json
@@ -10,7 +10,7 @@
"@creditkarma/thrift-server-express": "^1.0.4",
"@creditkarma/thrift-typescript": "^3.7.6",
"@graphql-hive/gateway": "^1.5.8",
- "@omnigraph/thrift": "^0.8.10",
+ "@omnigraph/thrift": "^0.8.11",
"express": "^4.18.2",
"graphql": "^16.9.0",
"thrift": "^0.21.0"
diff --git a/examples/auth0/package.json b/examples/auth0/package.json
index aac1896a1e97b..5e48440680bf0 100644
--- a/examples/auth0/package.json
+++ b/examples/auth0/package.json
@@ -10,9 +10,9 @@
},
"dependencies": {
"@envelop/auth0": "6.0.0",
- "@graphql-mesh/cli": "0.98.16",
- "@graphql-mesh/json-schema": "0.108.10",
- "@graphql-mesh/plugin-operation-field-permissions": "0.103.10",
+ "@graphql-mesh/cli": "0.98.17",
+ "@graphql-mesh/json-schema": "0.108.11",
+ "@graphql-mesh/plugin-operation-field-permissions": "0.103.11",
"graphql": "16.10.0"
},
"devDependencies": {
diff --git a/examples/cloudflare-workers/package.json b/examples/cloudflare-workers/package.json
index a8b07ea2187a0..46002096decda 100644
--- a/examples/cloudflare-workers/package.json
+++ b/examples/cloudflare-workers/package.json
@@ -2,10 +2,10 @@
"name": "@examples/cloudflare-workers",
"private": true,
"dependencies": {
- "@graphql-mesh/cache-cfw-kv": "0.104.10",
- "@graphql-mesh/cli": "0.98.16",
- "@graphql-mesh/json-schema": "0.108.10",
- "@graphql-mesh/plugin-response-cache": "0.103.10",
+ "@graphql-mesh/cache-cfw-kv": "0.104.11",
+ "@graphql-mesh/cli": "0.98.17",
+ "@graphql-mesh/json-schema": "0.108.11",
+ "@graphql-mesh/plugin-response-cache": "0.103.11",
"graphql": "16.10.0"
},
"devDependencies": {
diff --git a/examples/fastify/package.json b/examples/fastify/package.json
index 79c573fc4c527..52eb3d318995d 100644
--- a/examples/fastify/package.json
+++ b/examples/fastify/package.json
@@ -6,8 +6,8 @@
"start": "ts-node-dev src/index.ts"
},
"dependencies": {
- "@graphql-mesh/cli": "0.98.16",
- "@graphql-mesh/graphql": "0.103.11",
+ "@graphql-mesh/cli": "0.98.17",
+ "@graphql-mesh/graphql": "0.103.12",
"fastify": "5.2.1",
"graphql": "16.10.0",
"ts-node": "^10.9.2",
diff --git a/examples/federation-example/gateway-supergraph/package.json b/examples/federation-example/gateway-supergraph/package.json
index 93f7e159ff7ef..5acf2c6890471 100644
--- a/examples/federation-example/gateway-supergraph/package.json
+++ b/examples/federation-example/gateway-supergraph/package.json
@@ -3,8 +3,8 @@
"license": "MIT",
"private": true,
"dependencies": {
- "@graphql-mesh/cli": "0.98.16",
- "@graphql-mesh/supergraph": "0.9.11",
+ "@graphql-mesh/cli": "0.98.17",
+ "@graphql-mesh/supergraph": "0.9.12",
"graphql": "16.10.0"
}
}
diff --git a/examples/federation-example/gateway/package.json b/examples/federation-example/gateway/package.json
index 8835dd4d35d9b..2ec2a0597d634 100644
--- a/examples/federation-example/gateway/package.json
+++ b/examples/federation-example/gateway/package.json
@@ -3,9 +3,9 @@
"license": "MIT",
"private": true,
"dependencies": {
- "@graphql-mesh/cli": "0.98.16",
- "@graphql-mesh/graphql": "0.103.11",
- "@graphql-mesh/transform-federation": "0.103.10",
+ "@graphql-mesh/cli": "0.98.17",
+ "@graphql-mesh/graphql": "0.103.12",
+ "@graphql-mesh/transform-federation": "0.103.11",
"graphql": "16.10.0"
}
}
diff --git a/examples/gcp-functions/package.json b/examples/gcp-functions/package.json
index 93cd120a2c9fe..6172f0bf004e6 100644
--- a/examples/gcp-functions/package.json
+++ b/examples/gcp-functions/package.json
@@ -12,8 +12,8 @@
},
"dependencies": {
"@google-cloud/functions-framework": "3.4.5",
- "@graphql-mesh/cli": "0.98.16",
- "@graphql-mesh/json-schema": "0.108.10",
+ "@graphql-mesh/cli": "0.98.17",
+ "@graphql-mesh/json-schema": "0.108.11",
"@types/node": "22.10.5",
"graphql": "16.10.0",
"typescript": "^5.4.2"
diff --git a/examples/graphql-file-upload-example/package.json b/examples/graphql-file-upload-example/package.json
index 91d6977aa5937..610b2d8707054 100644
--- a/examples/graphql-file-upload-example/package.json
+++ b/examples/graphql-file-upload-example/package.json
@@ -8,8 +8,8 @@
"test": "jest"
},
"dependencies": {
- "@graphql-mesh/cli": "0.98.16",
- "@graphql-mesh/graphql": "0.103.11",
+ "@graphql-mesh/cli": "0.98.17",
+ "@graphql-mesh/graphql": "0.103.12",
"concurrently": "9.1.2",
"graphql": "16.10.0",
"graphql-yoga": "5.10.9",
diff --git a/examples/grpc-example/package.json b/examples/grpc-example/package.json
index 672ad27ac5493..191c42a240163 100644
--- a/examples/grpc-example/package.json
+++ b/examples/grpc-example/package.json
@@ -10,9 +10,9 @@
"test": "jest"
},
"dependencies": {
- "@graphql-mesh/cli": "0.98.16",
- "@graphql-mesh/grpc": "0.107.0",
- "@graphql-mesh/transform-naming-convention": "0.103.12",
+ "@graphql-mesh/cli": "0.98.17",
+ "@graphql-mesh/grpc": "0.107.1",
+ "@graphql-mesh/transform-naming-convention": "0.103.13",
"@grpc/grpc-js": "1.12.5",
"@grpc/proto-loader": "0.7.13",
"google-protobuf": "3.21.4",
diff --git a/examples/grpc-reflection-example/package.json b/examples/grpc-reflection-example/package.json
index 5d6adf8479dd7..5ef3bd9417d70 100644
--- a/examples/grpc-reflection-example/package.json
+++ b/examples/grpc-reflection-example/package.json
@@ -10,9 +10,9 @@
"test": "jest"
},
"dependencies": {
- "@graphql-mesh/cli": "0.98.16",
- "@graphql-mesh/grpc": "0.107.0",
- "@graphql-mesh/transform-naming-convention": "0.103.12",
+ "@graphql-mesh/cli": "0.98.17",
+ "@graphql-mesh/grpc": "0.107.1",
+ "@graphql-mesh/transform-naming-convention": "0.103.13",
"@grpc/grpc-js": "1.12.5",
"@grpc/proto-loader": "0.7.13",
"google-protobuf": "3.21.4",
diff --git a/examples/hasura-openbrewery-geodb/package.json b/examples/hasura-openbrewery-geodb/package.json
index f27e2e352695a..5993cf56a0b3a 100644
--- a/examples/hasura-openbrewery-geodb/package.json
+++ b/examples/hasura-openbrewery-geodb/package.json
@@ -6,8 +6,8 @@
"start": "mesh dev"
},
"dependencies": {
- "@graphql-mesh/cli": "0.98.16",
- "@graphql-mesh/json-schema": "0.108.10",
+ "@graphql-mesh/cli": "0.98.17",
+ "@graphql-mesh/json-schema": "0.108.11",
"graphql": "16.10.0"
}
}
diff --git a/examples/hello-world-esm/package.json b/examples/hello-world-esm/package.json
index 1f61b14dd92e3..883e52b258fe1 100644
--- a/examples/hello-world-esm/package.json
+++ b/examples/hello-world-esm/package.json
@@ -10,9 +10,9 @@
"test": "jest"
},
"dependencies": {
- "@graphql-mesh/cli": "0.98.16",
- "@graphql-mesh/json-schema": "0.108.10",
- "@graphql-mesh/plugin-mock": "0.103.11",
+ "@graphql-mesh/cli": "0.98.17",
+ "@graphql-mesh/json-schema": "0.108.11",
+ "@graphql-mesh/plugin-mock": "0.103.12",
"graphql": "16.10.0"
},
"devDependencies": {
diff --git a/examples/hello-world/package.json b/examples/hello-world/package.json
index b7284c5de0551..e9031b95d608a 100644
--- a/examples/hello-world/package.json
+++ b/examples/hello-world/package.json
@@ -7,9 +7,9 @@
"test": "jest"
},
"dependencies": {
- "@graphql-mesh/cli": "0.98.16",
- "@graphql-mesh/json-schema": "0.108.10",
- "@graphql-mesh/plugin-mock": "0.103.11",
+ "@graphql-mesh/cli": "0.98.17",
+ "@graphql-mesh/json-schema": "0.108.11",
+ "@graphql-mesh/plugin-mock": "0.103.12",
"@graphql-yoga/plugin-sofa": "3.10.9",
"graphql": "16.10.0"
},
diff --git a/examples/hive-example/gateway/package.json b/examples/hive-example/gateway/package.json
index 7ebd8e7353531..d1f7737d241d8 100644
--- a/examples/hive-example/gateway/package.json
+++ b/examples/hive-example/gateway/package.json
@@ -6,10 +6,10 @@
"start": "mesh dev"
},
"dependencies": {
- "@graphql-mesh/cli": "0.98.16",
- "@graphql-mesh/openapi": "0.108.12",
- "@graphql-mesh/plugin-hive": "0.103.10",
- "@graphql-mesh/transform-hive": "0.103.11",
+ "@graphql-mesh/cli": "0.98.17",
+ "@graphql-mesh/openapi": "0.108.13",
+ "@graphql-mesh/plugin-hive": "0.103.11",
+ "@graphql-mesh/transform-hive": "0.103.12",
"graphql": "16.10.0"
}
}
diff --git a/examples/hive-example/sources/authors/package.json b/examples/hive-example/sources/authors/package.json
index 5575786e4aa32..36ed2e5d32452 100644
--- a/examples/hive-example/sources/authors/package.json
+++ b/examples/hive-example/sources/authors/package.json
@@ -14,8 +14,8 @@
},
"devDependencies": {
"@graphql-hive/cli": "0.44.5",
- "@graphql-mesh/cli": "0.98.16",
- "@graphql-mesh/openapi": "0.108.12",
+ "@graphql-mesh/cli": "0.98.17",
+ "@graphql-mesh/openapi": "0.108.13",
"graphql": "16.10.0"
}
}
diff --git a/examples/hive-example/sources/books/package.json b/examples/hive-example/sources/books/package.json
index 88e8807f9c69d..cc6bf3344860b 100644
--- a/examples/hive-example/sources/books/package.json
+++ b/examples/hive-example/sources/books/package.json
@@ -14,8 +14,8 @@
},
"devDependencies": {
"@graphql-hive/cli": "0.44.5",
- "@graphql-mesh/cli": "0.98.16",
- "@graphql-mesh/openapi": "0.108.12",
+ "@graphql-mesh/cli": "0.98.17",
+ "@graphql-mesh/openapi": "0.108.13",
"graphql": "16.10.0"
}
}
diff --git a/examples/json-schema-covid/package.json b/examples/json-schema-covid/package.json
index ec29a8960951f..cd339477e74a7 100644
--- a/examples/json-schema-covid/package.json
+++ b/examples/json-schema-covid/package.json
@@ -11,9 +11,9 @@
"test": "jest"
},
"dependencies": {
- "@graphql-mesh/cli": "0.98.16",
- "@graphql-mesh/graphql": "0.103.11",
- "@graphql-mesh/json-schema": "0.108.10",
+ "@graphql-mesh/cli": "0.98.17",
+ "@graphql-mesh/graphql": "0.103.12",
+ "@graphql-mesh/json-schema": "0.108.11",
"graphql": "16.10.0"
},
"devDependencies": {
diff --git a/examples/json-schema-example/package.json b/examples/json-schema-example/package.json
index 78f98c481886c..de6a8afa97ea1 100644
--- a/examples/json-schema-example/package.json
+++ b/examples/json-schema-example/package.json
@@ -9,10 +9,10 @@
"test": "jest"
},
"dependencies": {
- "@graphql-mesh/cli": "0.98.16",
- "@graphql-mesh/json-schema": "0.108.10",
- "@graphql-mesh/plugin-mock": "0.103.11",
- "@graphql-mesh/transform-naming-convention": "0.103.12",
+ "@graphql-mesh/cli": "0.98.17",
+ "@graphql-mesh/json-schema": "0.108.11",
+ "@graphql-mesh/plugin-mock": "0.103.12",
+ "@graphql-mesh/transform-naming-convention": "0.103.13",
"graphql": "16.10.0"
},
"devDependencies": {
diff --git a/examples/json-schema-fhir/package.json b/examples/json-schema-fhir/package.json
index 70c0446518dfa..a813296c86c93 100644
--- a/examples/json-schema-fhir/package.json
+++ b/examples/json-schema-fhir/package.json
@@ -9,8 +9,8 @@
"start:prod": "mesh start"
},
"dependencies": {
- "@graphql-mesh/cli": "0.98.16",
- "@graphql-mesh/json-schema": "0.108.10",
+ "@graphql-mesh/cli": "0.98.17",
+ "@graphql-mesh/json-schema": "0.108.11",
"graphql": "16.10.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 ca245ba3ddd3f..5dad03dd02ec9 100644
--- a/examples/json-schema-file-upload/package.json
+++ b/examples/json-schema-file-upload/package.json
@@ -8,8 +8,8 @@
"start:mesh": "mesh dev"
},
"dependencies": {
- "@graphql-mesh/cli": "0.98.16",
- "@graphql-mesh/json-schema": "0.108.10",
+ "@graphql-mesh/cli": "0.98.17",
+ "@graphql-mesh/json-schema": "0.108.11",
"fets": "0.8.4",
"graphql": "16.10.0"
},
diff --git a/examples/json-schema-subscriptions/package.json b/examples/json-schema-subscriptions/package.json
index 7acb86c625496..16160599bdf9e 100644
--- a/examples/json-schema-subscriptions/package.json
+++ b/examples/json-schema-subscriptions/package.json
@@ -7,9 +7,9 @@
"start:mesh": "mesh dev"
},
"dependencies": {
- "@graphql-mesh/cli": "0.98.16",
- "@graphql-mesh/json-schema": "0.108.10",
- "@graphql-mesh/plugin-live-query": "0.103.10",
+ "@graphql-mesh/cli": "0.98.17",
+ "@graphql-mesh/json-schema": "0.108.11",
+ "@graphql-mesh/plugin-live-query": "0.103.11",
"@whatwg-node/fetch": "^0.10.0",
"fets": "0.8.4",
"graphql": "16.10.0"
diff --git a/examples/mongoose-example/package.json b/examples/mongoose-example/package.json
index 37646e8a9bcef..0dab25c087e33 100644
--- a/examples/mongoose-example/package.json
+++ b/examples/mongoose-example/package.json
@@ -6,8 +6,8 @@
"start": "mesh dev"
},
"dependencies": {
- "@graphql-mesh/cli": "0.98.16",
- "@graphql-mesh/mongoose": "0.103.10",
+ "@graphql-mesh/cli": "0.98.17",
+ "@graphql-mesh/mongoose": "0.103.11",
"graphql": "16.10.0",
"mongoose": "8.9.3"
},
diff --git a/examples/mysql-employees/package.json b/examples/mysql-employees/package.json
index 4cc303b250f5e..6dd2af6ef6ac2 100644
--- a/examples/mysql-employees/package.json
+++ b/examples/mysql-employees/package.json
@@ -6,8 +6,8 @@
"start": "mesh dev"
},
"dependencies": {
- "@graphql-mesh/cli": "0.98.16",
- "@graphql-mesh/mysql": "0.104.10",
+ "@graphql-mesh/cli": "0.98.17",
+ "@graphql-mesh/mysql": "0.104.11",
"graphql": "16.10.0"
}
}
diff --git a/examples/mysql-rfam/package.json b/examples/mysql-rfam/package.json
index 5699877f9ec25..a2826275df57c 100644
--- a/examples/mysql-rfam/package.json
+++ b/examples/mysql-rfam/package.json
@@ -7,8 +7,8 @@
"test": "jest"
},
"dependencies": {
- "@graphql-mesh/cli": "0.98.16",
- "@graphql-mesh/mysql": "0.104.10",
+ "@graphql-mesh/cli": "0.98.17",
+ "@graphql-mesh/mysql": "0.104.11",
"graphql": "16.10.0"
},
"devDependencies": {
diff --git a/examples/neo4j-example/package.json b/examples/neo4j-example/package.json
index c017b9ba15fd4..de88659a2a42b 100644
--- a/examples/neo4j-example/package.json
+++ b/examples/neo4j-example/package.json
@@ -6,9 +6,9 @@
"start": "mesh dev"
},
"dependencies": {
- "@graphql-mesh/cache-file": "0.103.11",
- "@graphql-mesh/cli": "0.98.16",
- "@graphql-mesh/neo4j": "0.105.10",
+ "@graphql-mesh/cache-file": "0.103.12",
+ "@graphql-mesh/cli": "0.98.17",
+ "@graphql-mesh/neo4j": "0.105.11",
"graphql": "16.10.0"
},
"resolutions": {
diff --git a/examples/nextjs-apollo-example/package.json b/examples/nextjs-apollo-example/package.json
index 12a8cbcd6f803..cdcd6d39ac8bc 100644
--- a/examples/nextjs-apollo-example/package.json
+++ b/examples/nextjs-apollo-example/package.json
@@ -10,10 +10,10 @@
"start:prod": "next start"
},
"dependencies": {
- "@graphql-mesh/cli": "0.98.16",
- "@graphql-mesh/config": "0.106.16",
- "@graphql-mesh/openapi": "0.108.12",
- "@graphql-mesh/runtime": "0.105.11",
+ "@graphql-mesh/cli": "0.98.17",
+ "@graphql-mesh/config": "0.106.17",
+ "@graphql-mesh/openapi": "0.108.13",
+ "@graphql-mesh/runtime": "0.105.12",
"apollo-server-micro": "3.13.0",
"graphql": "16.10.0",
"next": "15.1.4",
diff --git a/examples/nextjs-sdk-example/package.json b/examples/nextjs-sdk-example/package.json
index 2e4dfa1441328..c9aafa3378fc0 100644
--- a/examples/nextjs-sdk-example/package.json
+++ b/examples/nextjs-sdk-example/package.json
@@ -11,10 +11,10 @@
"start:prod": "next start"
},
"dependencies": {
- "@graphql-mesh/cli": "0.98.16",
- "@graphql-mesh/config": "0.106.16",
- "@graphql-mesh/openapi": "0.108.12",
- "@graphql-mesh/runtime": "0.105.11",
+ "@graphql-mesh/cli": "0.98.17",
+ "@graphql-mesh/config": "0.106.17",
+ "@graphql-mesh/openapi": "0.108.13",
+ "@graphql-mesh/runtime": "0.105.12",
"apollo-server-micro": "3.13.0",
"graphql": "16.10.0",
"next": "15.1.4",
diff --git a/examples/odata-microsoft/package.json b/examples/odata-microsoft/package.json
index 6498da7555b8e..599120fbf460c 100644
--- a/examples/odata-microsoft/package.json
+++ b/examples/odata-microsoft/package.json
@@ -7,8 +7,8 @@
"start:beta": "cross-env GRAPH_VERSION=\"beta\" mesh dev"
},
"dependencies": {
- "@graphql-mesh/cli": "0.98.16",
- "@graphql-mesh/odata": "0.105.10",
+ "@graphql-mesh/cli": "0.98.17",
+ "@graphql-mesh/odata": "0.105.11",
"cross-env": "7.0.3",
"graphql": "16.10.0"
}
diff --git a/examples/odata-msgraph-programmatic-ts/package.json b/examples/odata-msgraph-programmatic-ts/package.json
index 84f27491a2050..1158ecf4f5f44 100644
--- a/examples/odata-msgraph-programmatic-ts/package.json
+++ b/examples/odata-msgraph-programmatic-ts/package.json
@@ -7,10 +7,10 @@
"start": "ts-node src/index.ts"
},
"dependencies": {
- "@graphql-mesh/cli": "0.98.16",
- "@graphql-mesh/config": "0.106.16",
- "@graphql-mesh/odata": "0.105.10",
- "@graphql-mesh/runtime": "0.105.11",
+ "@graphql-mesh/cli": "0.98.17",
+ "@graphql-mesh/config": "0.106.17",
+ "@graphql-mesh/odata": "0.105.11",
+ "@graphql-mesh/runtime": "0.105.12",
"graphql": "16.10.0",
"ts-node": "^10.9.2"
}
diff --git a/examples/odata-msgraph-programmatic/package.json b/examples/odata-msgraph-programmatic/package.json
index 70a35889b0115..902d03aed6147 100644
--- a/examples/odata-msgraph-programmatic/package.json
+++ b/examples/odata-msgraph-programmatic/package.json
@@ -8,10 +8,10 @@
"start": "node index.js"
},
"dependencies": {
- "@graphql-mesh/cli": "0.98.16",
- "@graphql-mesh/config": "0.106.16",
- "@graphql-mesh/odata": "0.105.10",
- "@graphql-mesh/runtime": "0.105.11",
+ "@graphql-mesh/cli": "0.98.17",
+ "@graphql-mesh/config": "0.106.17",
+ "@graphql-mesh/odata": "0.105.11",
+ "@graphql-mesh/runtime": "0.105.12",
"graphql": "16.10.0"
}
}
diff --git a/examples/odata-trippin/package.json b/examples/odata-trippin/package.json
index 4c35be73f6de4..19b91fc603f5e 100644
--- a/examples/odata-trippin/package.json
+++ b/examples/odata-trippin/package.json
@@ -6,8 +6,8 @@
"start": "mesh dev"
},
"dependencies": {
- "@graphql-mesh/cli": "0.98.16",
- "@graphql-mesh/odata": "0.105.10",
+ "@graphql-mesh/cli": "0.98.17",
+ "@graphql-mesh/odata": "0.105.11",
"graphql": "16.10.0"
}
}
diff --git a/examples/openapi-javascript-wiki/package.json b/examples/openapi-javascript-wiki/package.json
index 85deac136e4c8..e3dd8ab26e21f 100644
--- a/examples/openapi-javascript-wiki/package.json
+++ b/examples/openapi-javascript-wiki/package.json
@@ -7,8 +7,8 @@
"start": "mesh dev"
},
"dependencies": {
- "@graphql-mesh/cli": "0.98.16",
- "@graphql-mesh/openapi": "0.108.12",
+ "@graphql-mesh/cli": "0.98.17",
+ "@graphql-mesh/openapi": "0.108.13",
"graphql": "16.10.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 3facc75ccae23..4d9b255aefb00 100644
--- a/examples/openapi-location-weather/package.json
+++ b/examples/openapi-location-weather/package.json
@@ -6,12 +6,12 @@
"start": "mesh dev"
},
"dependencies": {
- "@graphql-mesh/cli": "0.98.16",
- "@graphql-mesh/openapi": "0.108.12",
- "@graphql-mesh/plugin-response-cache": "0.103.10",
- "@graphql-mesh/runtime": "0.105.11",
- "@graphql-mesh/transform-cache": "0.103.11",
- "@graphql-mesh/transform-rename": "0.103.11",
+ "@graphql-mesh/cli": "0.98.17",
+ "@graphql-mesh/openapi": "0.108.13",
+ "@graphql-mesh/plugin-response-cache": "0.103.11",
+ "@graphql-mesh/runtime": "0.105.12",
+ "@graphql-mesh/transform-cache": "0.103.12",
+ "@graphql-mesh/transform-rename": "0.103.12",
"graphql": "16.10.0"
}
}
diff --git a/examples/openapi-meilisearch/package.json b/examples/openapi-meilisearch/package.json
index cdc625c8f813c..e1418c124e74c 100644
--- a/examples/openapi-meilisearch/package.json
+++ b/examples/openapi-meilisearch/package.json
@@ -6,8 +6,8 @@
"start": "mesh dev"
},
"dependencies": {
- "@graphql-mesh/cli": "0.98.16",
- "@graphql-mesh/openapi": "0.108.12",
+ "@graphql-mesh/cli": "0.98.17",
+ "@graphql-mesh/openapi": "0.108.13",
"graphql": "16.10.0"
}
}
diff --git a/examples/openapi-react-weatherbit/package.json b/examples/openapi-react-weatherbit/package.json
index 3888baa8163d8..5b8536ee777bc 100644
--- a/examples/openapi-react-weatherbit/package.json
+++ b/examples/openapi-react-weatherbit/package.json
@@ -15,7 +15,7 @@
"react-dom": "19.0.0"
},
"devDependencies": {
- "@graphql-mesh/cli": "0.98.16",
+ "@graphql-mesh/cli": "0.98.17",
"@types/react": "19.0.3",
"@types/react-dom": "19.0.2",
"@vitejs/plugin-react": "4.3.4",
diff --git a/examples/openapi-stackexchange/package.json b/examples/openapi-stackexchange/package.json
index 45d5f480f888e..ffd8fa587e7e0 100644
--- a/examples/openapi-stackexchange/package.json
+++ b/examples/openapi-stackexchange/package.json
@@ -6,8 +6,8 @@
"start": "mesh dev"
},
"dependencies": {
- "@graphql-mesh/cli": "0.98.16",
- "@graphql-mesh/openapi": "0.108.12",
+ "@graphql-mesh/cli": "0.98.17",
+ "@graphql-mesh/openapi": "0.108.13",
"graphql": "16.10.0"
}
}
diff --git a/examples/openapi-stripe/package.json b/examples/openapi-stripe/package.json
index eb7ad17f027cc..4c83796b6bed0 100644
--- a/examples/openapi-stripe/package.json
+++ b/examples/openapi-stripe/package.json
@@ -6,8 +6,8 @@
"start": "mesh dev"
},
"dependencies": {
- "@graphql-mesh/cli": "0.98.16",
- "@graphql-mesh/openapi": "0.108.12",
+ "@graphql-mesh/cli": "0.98.17",
+ "@graphql-mesh/openapi": "0.108.13",
"graphql": "16.10.0"
}
}
diff --git a/examples/openapi-subscriptions/package.json b/examples/openapi-subscriptions/package.json
index 9de6db57259e8..e7b9a9206d9be 100644
--- a/examples/openapi-subscriptions/package.json
+++ b/examples/openapi-subscriptions/package.json
@@ -7,8 +7,8 @@
"start:mesh": "mesh dev"
},
"dependencies": {
- "@graphql-mesh/cli": "0.98.16",
- "@graphql-mesh/openapi": "0.108.12",
+ "@graphql-mesh/cli": "0.98.17",
+ "@graphql-mesh/openapi": "0.108.13",
"@whatwg-node/fetch": "^0.10.0",
"concurrently": "9.1.2",
"fets": "^0.8.0",
diff --git a/examples/openapi-youtrack/package.json b/examples/openapi-youtrack/package.json
index 1398151f95fd3..b61c9130b183e 100644
--- a/examples/openapi-youtrack/package.json
+++ b/examples/openapi-youtrack/package.json
@@ -6,9 +6,9 @@
"start": "mesh dev"
},
"dependencies": {
- "@graphql-mesh/cli": "0.98.16",
- "@graphql-mesh/openapi": "0.108.12",
- "@graphql-mesh/transform-resolvers-composition": "0.103.10",
+ "@graphql-mesh/cli": "0.98.17",
+ "@graphql-mesh/openapi": "0.108.13",
+ "@graphql-mesh/transform-resolvers-composition": "0.103.11",
"graphql": "16.10.0",
"graphql-fields": "2.0.3"
}
diff --git a/examples/openwhisk-example/package.json b/examples/openwhisk-example/package.json
index 4d8246ce3f21b..92c58ec2e36ed 100644
--- a/examples/openwhisk-example/package.json
+++ b/examples/openwhisk-example/package.json
@@ -11,8 +11,8 @@
"start": "mesh dev"
},
"dependencies": {
- "@graphql-mesh/cli": "0.98.16",
- "@graphql-mesh/graphql": "0.103.11",
+ "@graphql-mesh/cli": "0.98.17",
+ "@graphql-mesh/graphql": "0.103.12",
"esbuild": "^0.24.0",
"graphql": "16.10.0",
"typescript": "^5.4.2"
diff --git a/examples/persisted-operations/package.json b/examples/persisted-operations/package.json
index b1a7e9b6f8187..1315da4117ec1 100644
--- a/examples/persisted-operations/package.json
+++ b/examples/persisted-operations/package.json
@@ -8,9 +8,9 @@
"test": "mesh build && jest"
},
"dependencies": {
- "@graphql-mesh/cli": "0.98.16",
- "@graphql-mesh/json-schema": "0.108.10",
- "@graphql-mesh/plugin-mock": "0.103.11",
+ "@graphql-mesh/cli": "0.98.17",
+ "@graphql-mesh/json-schema": "0.108.11",
+ "@graphql-mesh/plugin-mock": "0.103.12",
"@graphql-yoga/plugin-sofa": "3.10.9",
"graphql": "16.10.0"
},
diff --git a/examples/postgres-geodb/package.json b/examples/postgres-geodb/package.json
index 3de8dbd63b1a9..d549d6e1c351b 100644
--- a/examples/postgres-geodb/package.json
+++ b/examples/postgres-geodb/package.json
@@ -8,13 +8,13 @@
"start": "ts-node --transpile-only src/test-sdk.ts London"
},
"dependencies": {
- "@graphql-mesh/cache-file": "0.103.11",
- "@graphql-mesh/cli": "0.98.16",
- "@graphql-mesh/config": "0.106.16",
- "@graphql-mesh/graphql": "0.103.11",
- "@graphql-mesh/postgraphile": "0.103.10",
- "@graphql-mesh/runtime": "0.105.11",
- "@graphql-mesh/transform-prefix": "0.103.12",
+ "@graphql-mesh/cache-file": "0.103.12",
+ "@graphql-mesh/cli": "0.98.17",
+ "@graphql-mesh/config": "0.106.17",
+ "@graphql-mesh/graphql": "0.103.12",
+ "@graphql-mesh/postgraphile": "0.103.11",
+ "@graphql-mesh/runtime": "0.105.12",
+ "@graphql-mesh/transform-prefix": "0.103.13",
"graphql": "16.10.0"
},
"devDependencies": {
diff --git a/examples/programmatic-batching/package.json b/examples/programmatic-batching/package.json
index 2b7f2e2e08175..e4b266313df09 100644
--- a/examples/programmatic-batching/package.json
+++ b/examples/programmatic-batching/package.json
@@ -7,8 +7,8 @@
"start:mesh": "mesh dev"
},
"dependencies": {
- "@graphql-mesh/cli": "0.98.16",
- "@graphql-mesh/openapi": "0.108.12",
+ "@graphql-mesh/cli": "0.98.17",
+ "@graphql-mesh/openapi": "0.108.13",
"@sinclair/typebox": "0.34.13",
"fets": "0.8.4",
"graphql": "16.10.0"
diff --git a/examples/reddit-example/package.json b/examples/reddit-example/package.json
index b3aa5735e53bc..7fb9c9952e137 100644
--- a/examples/reddit-example/package.json
+++ b/examples/reddit-example/package.json
@@ -2,7 +2,7 @@
"name": "@examples/reddit-example",
"private": true,
"dependencies": {
- "@graphql-mesh/cli": "0.98.16",
- "@graphql-mesh/json-schema": "0.108.10"
+ "@graphql-mesh/cli": "0.98.17",
+ "@graphql-mesh/json-schema": "0.108.11"
}
}
diff --git a/examples/response-cache/CHANGELOG.md b/examples/response-cache/CHANGELOG.md
index 3457b5573e7bf..662135a3c0144 100644
--- a/examples/response-cache/CHANGELOG.md
+++ b/examples/response-cache/CHANGELOG.md
@@ -1,5 +1,14 @@
# example-response-cache
+## 0.4.17
+
+### Patch Changes
+
+- Updated dependencies []:
+ - @graphql-mesh/cli@0.98.17
+ - @graphql-mesh/json-schema@0.108.11
+ - @graphql-mesh/plugin-mock@0.103.12
+
## 0.4.16
### Patch Changes
diff --git a/examples/response-cache/package.json b/examples/response-cache/package.json
index 45201a7daadf5..8a0be8cb3dff6 100644
--- a/examples/response-cache/package.json
+++ b/examples/response-cache/package.json
@@ -1,6 +1,6 @@
{
"name": "example-response-cache",
- "version": "0.4.16",
+ "version": "0.4.17",
"license": "MIT",
"private": true,
"scripts": {
@@ -9,9 +9,9 @@
"test": "mesh build && jest"
},
"dependencies": {
- "@graphql-mesh/cli": "^0.98.16",
- "@graphql-mesh/json-schema": "^0.108.10",
- "@graphql-mesh/plugin-mock": "^0.103.11",
+ "@graphql-mesh/cli": "^0.98.17",
+ "@graphql-mesh/json-schema": "^0.108.11",
+ "@graphql-mesh/plugin-mock": "^0.103.12",
"graphql": "16.10.0"
}
}
diff --git a/examples/soap-country-info/package.json b/examples/soap-country-info/package.json
index a97a1e730fdf7..9ae1db7004949 100644
--- a/examples/soap-country-info/package.json
+++ b/examples/soap-country-info/package.json
@@ -6,9 +6,9 @@
"start": "mesh dev"
},
"dependencies": {
- "@graphql-mesh/cli": "0.98.16",
- "@graphql-mesh/plugin-snapshot": "0.103.10",
- "@graphql-mesh/soap": "0.105.10",
+ "@graphql-mesh/cli": "0.98.17",
+ "@graphql-mesh/plugin-snapshot": "0.103.11",
+ "@graphql-mesh/soap": "0.105.11",
"graphql": "16.10.0"
}
}
diff --git a/examples/soap-demo/package.json b/examples/soap-demo/package.json
index d35f11c260b87..e19d1c29ec9ff 100644
--- a/examples/soap-demo/package.json
+++ b/examples/soap-demo/package.json
@@ -10,8 +10,8 @@
"start:prod": "mesh start"
},
"dependencies": {
- "@graphql-mesh/cli": "0.98.16",
- "@graphql-mesh/soap": "0.105.10",
+ "@graphql-mesh/cli": "0.98.17",
+ "@graphql-mesh/soap": "0.105.11",
"graphql": "16.10.0"
},
"devDependencies": {
diff --git a/examples/soap-netsuite/package.json b/examples/soap-netsuite/package.json
index 2eb03e4839678..f6ca7e888a4e0 100644
--- a/examples/soap-netsuite/package.json
+++ b/examples/soap-netsuite/package.json
@@ -10,8 +10,8 @@
"start:prod": "mesh start"
},
"dependencies": {
- "@graphql-mesh/cli": "0.98.16",
- "@graphql-mesh/soap": "0.105.10",
+ "@graphql-mesh/cli": "0.98.17",
+ "@graphql-mesh/soap": "0.105.11",
"graphql": "16.10.0"
},
"devDependencies": {
diff --git a/examples/spacex-cfw/package.json b/examples/spacex-cfw/package.json
index bb6f56ec16125..3de25c4d1f315 100644
--- a/examples/spacex-cfw/package.json
+++ b/examples/spacex-cfw/package.json
@@ -3,11 +3,11 @@
"private": true,
"dependencies": {
"@envelop/depth-limit": "4.0.0",
- "@graphql-mesh/cache-cfw-kv": "0.104.10",
- "@graphql-mesh/cli": "0.98.16",
- "@graphql-mesh/graphql": "0.103.11",
- "@graphql-mesh/plugin-rate-limit": "0.103.10",
- "@graphql-mesh/plugin-response-cache": "0.103.10",
+ "@graphql-mesh/cache-cfw-kv": "0.104.11",
+ "@graphql-mesh/cli": "0.98.17",
+ "@graphql-mesh/graphql": "0.103.12",
+ "@graphql-mesh/plugin-rate-limit": "0.103.11",
+ "@graphql-mesh/plugin-response-cache": "0.103.11",
"graphql": "16.10.0"
},
"devDependencies": {
diff --git a/examples/sqlite-chinook/package.json b/examples/sqlite-chinook/package.json
index e8998c3080b34..efa709d34ea1c 100644
--- a/examples/sqlite-chinook/package.json
+++ b/examples/sqlite-chinook/package.json
@@ -6,8 +6,8 @@
"start": "mesh dev"
},
"dependencies": {
- "@graphql-mesh/cli": "0.98.16",
- "@graphql-mesh/tuql": "0.104.10",
+ "@graphql-mesh/cli": "0.98.17",
+ "@graphql-mesh/tuql": "0.104.11",
"graphql": "16.10.0"
},
"resolutions": {
diff --git a/examples/thrift-calculator/package.json b/examples/thrift-calculator/package.json
index 324a5004afe43..268774512adc6 100644
--- a/examples/thrift-calculator/package.json
+++ b/examples/thrift-calculator/package.json
@@ -13,8 +13,8 @@
"@creditkarma/thrift-server-core": "1.0.4",
"@creditkarma/thrift-server-express": "1.0.4",
"@creditkarma/thrift-typescript": "3.7.6",
- "@graphql-mesh/cli": "0.98.16",
- "@graphql-mesh/thrift": "0.105.10",
+ "@graphql-mesh/cli": "0.98.17",
+ "@graphql-mesh/thrift": "0.105.11",
"express": "4.21.2",
"graphql": "16.10.0",
"thrift": "0.21.0",
diff --git a/examples/type-merging-batching-example/package.json b/examples/type-merging-batching-example/package.json
index 38a997287790c..3fbc74120b602 100644
--- a/examples/type-merging-batching-example/package.json
+++ b/examples/type-merging-batching-example/package.json
@@ -5,10 +5,10 @@
"start": "mesh dev"
},
"dependencies": {
- "@graphql-mesh/cli": "0.98.16",
- "@graphql-mesh/graphql": "0.103.11",
- "@graphql-mesh/transform-rename": "0.103.11",
- "@graphql-mesh/transform-type-merging": "0.103.10",
+ "@graphql-mesh/cli": "0.98.17",
+ "@graphql-mesh/graphql": "0.103.12",
+ "@graphql-mesh/transform-rename": "0.103.12",
+ "@graphql-mesh/transform-type-merging": "0.103.11",
"graphql": "16.10.0"
}
}
diff --git a/examples/v1-next/apollo-federation-compatibility/CHANGELOG.md b/examples/v1-next/apollo-federation-compatibility/CHANGELOG.md
index f828ba9255c7b..b30c8981c7551 100644
--- a/examples/v1-next/apollo-federation-compatibility/CHANGELOG.md
+++ b/examples/v1-next/apollo-federation-compatibility/CHANGELOG.md
@@ -1,5 +1,7 @@
# example-apollo-federation-compatibility
+## 1.6.5
+
## 1.6.4
## 1.6.3
diff --git a/examples/v1-next/apollo-federation-compatibility/package.json b/examples/v1-next/apollo-federation-compatibility/package.json
index 1cbd3e1a681b8..fa82c22bc2805 100644
--- a/examples/v1-next/apollo-federation-compatibility/package.json
+++ b/examples/v1-next/apollo-federation-compatibility/package.json
@@ -1,6 +1,6 @@
{
"name": "example-apollo-federation-compatibility",
- "version": "1.6.4",
+ "version": "1.6.5",
"description": "Apollo Federation implemented with GraphQL Mesh",
"author": "Arda TANRIKULU ",
"private": true,
@@ -27,7 +27,7 @@
"@graphql-codegen/cli": "5.0.3",
"@graphql-codegen/typescript": "4.1.2",
"@graphql-codegen/typescript-resolvers": "4.4.1",
- "@graphql-mesh/compose-cli": "1.3.4",
+ "@graphql-mesh/compose-cli": "1.3.5",
"@types/node": "22.10.5",
"esbuild": "^0.24.0",
"lru-cache": "11.0.2"
diff --git a/examples/v1-next/auth0/package.json b/examples/v1-next/auth0/package.json
index 69b043b6f5db7..1ebf186878b32 100644
--- a/examples/v1-next/auth0/package.json
+++ b/examples/v1-next/auth0/package.json
@@ -12,7 +12,7 @@
"@envelop/auth0": "^6.0.0",
"@graphql-hive/gateway": "^1.5.8",
"@graphql-mesh/compose-cli": "workspace:^",
- "@graphql-mesh/plugin-operation-field-permissions": "^0.103.10",
+ "@graphql-mesh/plugin-operation-field-permissions": "^0.103.11",
"@omnigraph/json-schema": "workspace:^",
"graphql": "16.10.0"
},
diff --git a/examples/v1-next/integrations/cfw-breweries/package.json b/examples/v1-next/integrations/cfw-breweries/package.json
index 921a2467bc764..cb0bdd2425575 100644
--- a/examples/v1-next/integrations/cfw-breweries/package.json
+++ b/examples/v1-next/integrations/cfw-breweries/package.json
@@ -10,7 +10,7 @@
"@graphql-mesh/cache-cfw-kv": "workspace:^",
"@graphql-mesh/cache-localforage": "workspace:^",
"@graphql-mesh/compose-cli": "workspace:^",
- "@graphql-mesh/plugin-response-cache": "^0.103.10",
+ "@graphql-mesh/plugin-response-cache": "^0.103.11",
"@omnigraph/json-schema": "workspace:^",
"graphql": "16.10.0"
},
diff --git a/examples/v1-next/integrations/cfw-spacex/package.json b/examples/v1-next/integrations/cfw-spacex/package.json
index b8b55be93f68d..48e6c940b070b 100644
--- a/examples/v1-next/integrations/cfw-spacex/package.json
+++ b/examples/v1-next/integrations/cfw-spacex/package.json
@@ -8,8 +8,8 @@
"@envelop/depth-limit": "^4.0.0",
"@graphql-hive/gateway": "^1.5.8",
"@graphql-mesh/cache-cfw-kv": "workspace:^",
- "@graphql-mesh/plugin-rate-limit": "^0.103.10",
- "@graphql-mesh/plugin-response-cache": "^0.103.10",
+ "@graphql-mesh/plugin-rate-limit": "^0.103.11",
+ "@graphql-mesh/plugin-response-cache": "^0.103.11",
"graphql": "16.10.0"
},
"devDependencies": {
diff --git a/packages/cache/cfw-kv/CHANGELOG.md b/packages/cache/cfw-kv/CHANGELOG.md
index abbd27ac36441..60724050822a9 100644
--- a/packages/cache/cfw-kv/CHANGELOG.md
+++ b/packages/cache/cfw-kv/CHANGELOG.md
@@ -1,5 +1,15 @@
# @graphql-mesh/cache-cfw-kv
+## 0.104.11
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+
## 0.104.10
### Patch Changes
diff --git a/packages/cache/cfw-kv/package.json b/packages/cache/cfw-kv/package.json
index da0b71dce1d98..ec5abd0f40fd2 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.104.10",
+ "version": "0.104.11",
"type": "module",
"repository": {
"type": "git",
@@ -35,8 +35,8 @@
"graphql": "*"
},
"dependencies": {
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"tslib": "^2.4.0"
},
"devDependencies": {
diff --git a/packages/cache/file/CHANGELOG.md b/packages/cache/file/CHANGELOG.md
index c991f88d31318..19c3bfdd821c2 100644
--- a/packages/cache/file/CHANGELOG.md
+++ b/packages/cache/file/CHANGELOG.md
@@ -1,5 +1,15 @@
# @graphql-mesh/cache-file
+## 0.103.12
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+
## 0.103.11
### Patch Changes
diff --git a/packages/cache/file/package.json b/packages/cache/file/package.json
index 5337b1cf9e114..e3c76efb8fe0d 100644
--- a/packages/cache/file/package.json
+++ b/packages/cache/file/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/cache-file",
- "version": "0.103.11",
+ "version": "0.103.12",
"type": "module",
"repository": {
"type": "git",
@@ -36,8 +36,8 @@
},
"dependencies": {
"@graphql-mesh/cross-helpers": "^0.4.9",
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"dataloader": "2.2.3",
"tslib": "^2.4.0"
},
diff --git a/packages/cache/inmemory-lru/CHANGELOG.md b/packages/cache/inmemory-lru/CHANGELOG.md
index 1ce6b31acdeb4..3ff9e7bf5a88a 100644
--- a/packages/cache/inmemory-lru/CHANGELOG.md
+++ b/packages/cache/inmemory-lru/CHANGELOG.md
@@ -1,5 +1,15 @@
# @graphql-mesh/cache-inmemory-lru
+## 0.0.7
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+
## 0.0.6
### Patch Changes
diff --git a/packages/cache/inmemory-lru/package.json b/packages/cache/inmemory-lru/package.json
index 4861876f73fa2..2fa5b452b0457 100644
--- a/packages/cache/inmemory-lru/package.json
+++ b/packages/cache/inmemory-lru/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/cache-inmemory-lru",
- "version": "0.0.6",
+ "version": "0.0.7",
"type": "module",
"repository": {
"type": "git",
@@ -35,8 +35,8 @@
"graphql": "*"
},
"dependencies": {
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"@whatwg-node/disposablestack": "^0.0.5",
"tslib": "^2.4.0"
},
diff --git a/packages/cache/localforage/CHANGELOG.md b/packages/cache/localforage/CHANGELOG.md
index 1cb9a8ec12f7a..f6f85f5790133 100644
--- a/packages/cache/localforage/CHANGELOG.md
+++ b/packages/cache/localforage/CHANGELOG.md
@@ -1,5 +1,16 @@
# @graphql-mesh/cache-localforage
+## 0.103.12
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+ - @graphql-mesh/cache-inmemory-lru@0.0.7
+
## 0.103.11
### Patch Changes
diff --git a/packages/cache/localforage/package.json b/packages/cache/localforage/package.json
index 821e22c7f0467..c92159826f4d2 100644
--- a/packages/cache/localforage/package.json
+++ b/packages/cache/localforage/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/cache-localforage",
- "version": "0.103.11",
+ "version": "0.103.12",
"type": "module",
"repository": {
"type": "git",
@@ -35,9 +35,9 @@
"graphql": "*"
},
"dependencies": {
- "@graphql-mesh/cache-inmemory-lru": "^0.0.6",
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/cache-inmemory-lru": "^0.0.7",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"localforage": "1.10.0",
"tslib": "^2.4.0"
},
diff --git a/packages/cache/redis/CHANGELOG.md b/packages/cache/redis/CHANGELOG.md
index f120737986372..936d05b8bf3fb 100644
--- a/packages/cache/redis/CHANGELOG.md
+++ b/packages/cache/redis/CHANGELOG.md
@@ -1,5 +1,15 @@
# @graphql-mesh/cache-redis
+## 0.103.12
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+
## 0.103.11
### Patch Changes
diff --git a/packages/cache/redis/package.json b/packages/cache/redis/package.json
index bc8748f8f1da1..43a5248d41f66 100644
--- a/packages/cache/redis/package.json
+++ b/packages/cache/redis/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/cache-redis",
- "version": "0.103.11",
+ "version": "0.103.12",
"type": "module",
"repository": {
"type": "git",
@@ -37,8 +37,8 @@
"dependencies": {
"@graphql-mesh/cross-helpers": "^0.4.9",
"@graphql-mesh/string-interpolation": "0.5.7",
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"@whatwg-node/disposablestack": "^0.0.5",
"ioredis": "^5.3.2",
"ioredis-mock": "^8.8.3",
diff --git a/packages/compose-cli/CHANGELOG.md b/packages/compose-cli/CHANGELOG.md
index b5a2fbe43e1a6..27fa31afe6df5 100644
--- a/packages/compose-cli/CHANGELOG.md
+++ b/packages/compose-cli/CHANGELOG.md
@@ -1,5 +1,17 @@
# @graphql-mesh/compose-cli
+## 1.3.5
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+ - @graphql-mesh/fusion-composition@0.7.17
+ - @graphql-mesh/include@0.2.10
+
## 1.3.4
### Patch Changes
diff --git a/packages/compose-cli/package.json b/packages/compose-cli/package.json
index f13293397b29d..43069dffcf256 100644
--- a/packages/compose-cli/package.json
+++ b/packages/compose-cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/compose-cli",
- "version": "1.3.4",
+ "version": "1.3.5",
"type": "module",
"repository": {
"type": "git",
@@ -39,11 +39,11 @@
},
"dependencies": {
"@commander-js/extra-typings": "^13.0.0",
- "@graphql-mesh/fusion-composition": "^0.7.16",
- "@graphql-mesh/include": "^0.2.9",
+ "@graphql-mesh/fusion-composition": "^0.7.17",
+ "@graphql-mesh/include": "^0.2.10",
"@graphql-mesh/string-interpolation": "^0.5.7",
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"@graphql-tools/code-file-loader": "^8.1.7",
"@graphql-tools/graphql-file-loader": "^8.0.5",
"@graphql-tools/load": "^8.0.1",
diff --git a/packages/fusion/composition/CHANGELOG.md b/packages/fusion/composition/CHANGELOG.md
index 6dd29f79f13c1..0658737cc7c53 100644
--- a/packages/fusion/composition/CHANGELOG.md
+++ b/packages/fusion/composition/CHANGELOG.md
@@ -1,5 +1,13 @@
# @graphql-mesh/fusion-composition
+## 0.7.17
+
+### Patch Changes
+
+- Updated dependencies
+ [[`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/utils@0.103.11
+
## 0.7.16
### Patch Changes
diff --git a/packages/fusion/composition/package.json b/packages/fusion/composition/package.json
index 707c5a0ef84b2..56c57d606cc30 100644
--- a/packages/fusion/composition/package.json
+++ b/packages/fusion/composition/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/fusion-composition",
- "version": "0.7.16",
+ "version": "0.7.17",
"type": "module",
"description": "Basic composition utility for Fusion spec",
"repository": {
@@ -50,7 +50,7 @@
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
},
"dependencies": {
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/utils": "^0.103.11",
"@graphql-tools/schema": "^10.0.5",
"@graphql-tools/stitching-directives": "^3.1.9",
"@graphql-tools/utils": "^10.6.0",
diff --git a/packages/include/CHANGELOG.md b/packages/include/CHANGELOG.md
index 13e1690195b4b..4f8cbb331c58a 100644
--- a/packages/include/CHANGELOG.md
+++ b/packages/include/CHANGELOG.md
@@ -1,5 +1,13 @@
# @graphql-mesh/include
+## 0.2.10
+
+### Patch Changes
+
+- Updated dependencies
+ [[`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/utils@0.103.11
+
## 0.2.9
### Patch Changes
diff --git a/packages/include/package.json b/packages/include/package.json
index 361739a985b77..dec3ec370ba2d 100644
--- a/packages/include/package.json
+++ b/packages/include/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/include",
- "version": "0.2.9",
+ "version": "0.2.10",
"type": "module",
"repository": {
"type": "git",
@@ -46,7 +46,7 @@
},
"typings": "dist/typings/index.d.ts",
"dependencies": {
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/utils": "^0.103.11",
"dotenv": "^16.3.1",
"get-tsconfig": "^4.7.6",
"jiti": "^2.0.0",
diff --git a/packages/legacy/apollo-link/CHANGELOG.md b/packages/legacy/apollo-link/CHANGELOG.md
index 80116126d659f..7313c3f9471f9 100644
--- a/packages/legacy/apollo-link/CHANGELOG.md
+++ b/packages/legacy/apollo-link/CHANGELOG.md
@@ -1,5 +1,12 @@
# @graphql-mesh/apollo-link
+## 0.105.12
+
+### Patch Changes
+
+- Updated dependencies []:
+ - @graphql-mesh/runtime@0.105.12
+
## 0.105.11
### Patch Changes
diff --git a/packages/legacy/apollo-link/package.json b/packages/legacy/apollo-link/package.json
index 7875ee936fc0f..b4fc5ff044ca6 100644
--- a/packages/legacy/apollo-link/package.json
+++ b/packages/legacy/apollo-link/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/apollo-link",
- "version": "0.105.11",
+ "version": "0.105.12",
"type": "module",
"repository": {
"type": "git",
@@ -36,7 +36,7 @@
"graphql": "^15.2.0 || ^16.0.0"
},
"dependencies": {
- "@graphql-mesh/runtime": "^0.105.11",
+ "@graphql-mesh/runtime": "^0.105.12",
"@graphql-tools/utils": "^10.6.0",
"tslib": "^2.4.0"
},
diff --git a/packages/legacy/cli/CHANGELOG.md b/packages/legacy/cli/CHANGELOG.md
index b7c2204a0ed6c..91eca83a22fbb 100644
--- a/packages/legacy/cli/CHANGELOG.md
+++ b/packages/legacy/cli/CHANGELOG.md
@@ -1,5 +1,20 @@
# @graphql-mesh/cli
+## 0.98.17
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+ - @graphql-mesh/config@0.106.17
+ - @graphql-mesh/http@0.105.12
+ - @graphql-mesh/runtime@0.105.12
+ - @graphql-mesh/store@0.103.11
+ - @graphql-mesh/include@0.2.10
+
## 0.98.16
### Patch Changes
diff --git a/packages/legacy/cli/package.json b/packages/legacy/cli/package.json
index 900193af497c2..6641aaeced1cd 100644
--- a/packages/legacy/cli/package.json
+++ b/packages/legacy/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/cli",
- "version": "0.98.16",
+ "version": "0.98.17",
"type": "module",
"repository": {
"type": "git",
@@ -47,14 +47,14 @@
"@graphql-codegen/typescript-generic-sdk": "^3.1.0",
"@graphql-codegen/typescript-operations": "^4.0.0",
"@graphql-codegen/typescript-resolvers": "^4.0.0",
- "@graphql-mesh/config": "^0.106.16",
+ "@graphql-mesh/config": "^0.106.17",
"@graphql-mesh/cross-helpers": "^0.4.9",
- "@graphql-mesh/http": "^0.105.11",
- "@graphql-mesh/include": "^0.2.9",
- "@graphql-mesh/runtime": "^0.105.11",
- "@graphql-mesh/store": "^0.103.10",
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/http": "^0.105.12",
+ "@graphql-mesh/include": "^0.2.10",
+ "@graphql-mesh/runtime": "^0.105.12",
+ "@graphql-mesh/store": "^0.103.11",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"@graphql-tools/utils": "^10.6.0",
"ajv": "^8.12.0",
"change-case": "^4.1.2",
diff --git a/packages/legacy/config/CHANGELOG.md b/packages/legacy/config/CHANGELOG.md
index 28a4fc601321a..bce97d2738fe0 100644
--- a/packages/legacy/config/CHANGELOG.md
+++ b/packages/legacy/config/CHANGELOG.md
@@ -1,5 +1,20 @@
# @graphql-mesh/config
+## 0.106.17
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+ - @graphql-mesh/cache-localforage@0.103.12
+ - @graphql-mesh/merger-bare@0.104.14
+ - @graphql-mesh/merger-stitching@0.104.11
+ - @graphql-mesh/runtime@0.105.12
+ - @graphql-mesh/store@0.103.11
+
## 0.106.16
### Patch Changes
diff --git a/packages/legacy/config/package.json b/packages/legacy/config/package.json
index f1e1133a4da0c..66ac06bde21a6 100644
--- a/packages/legacy/config/package.json
+++ b/packages/legacy/config/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/config",
- "version": "0.106.16",
+ "version": "0.106.17",
"type": "module",
"repository": {
"type": "git",
@@ -36,14 +36,14 @@
},
"dependencies": {
"@envelop/core": "^5.0.0",
- "@graphql-mesh/cache-localforage": "^0.103.11",
+ "@graphql-mesh/cache-localforage": "^0.103.12",
"@graphql-mesh/cross-helpers": "^0.4.9",
- "@graphql-mesh/merger-bare": "^0.104.13",
- "@graphql-mesh/merger-stitching": "^0.104.10",
- "@graphql-mesh/runtime": "^0.105.11",
- "@graphql-mesh/store": "^0.103.10",
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/merger-bare": "^0.104.14",
+ "@graphql-mesh/merger-stitching": "^0.104.11",
+ "@graphql-mesh/runtime": "^0.105.12",
+ "@graphql-mesh/store": "^0.103.11",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"@graphql-tools/code-file-loader": "^8.0.0",
"@graphql-tools/graphql-file-loader": "^8.0.0",
"@graphql-tools/load": "^8.0.0",
diff --git a/packages/legacy/handlers/graphql/CHANGELOG.md b/packages/legacy/handlers/graphql/CHANGELOG.md
index 6b939cc2624be..96d5adba51291 100644
--- a/packages/legacy/handlers/graphql/CHANGELOG.md
+++ b/packages/legacy/handlers/graphql/CHANGELOG.md
@@ -1,5 +1,16 @@
# @graphql-mesh/graphql
+## 0.103.12
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+ - @graphql-mesh/store@0.103.11
+
## 0.103.11
### Patch Changes
diff --git a/packages/legacy/handlers/graphql/package.json b/packages/legacy/handlers/graphql/package.json
index 4847195e0b2a8..f0a26814b02d7 100644
--- a/packages/legacy/handlers/graphql/package.json
+++ b/packages/legacy/handlers/graphql/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/graphql",
- "version": "0.103.11",
+ "version": "0.103.12",
"type": "module",
"repository": {
"type": "git",
@@ -36,10 +36,10 @@
},
"dependencies": {
"@graphql-mesh/cross-helpers": "^0.4.9",
- "@graphql-mesh/store": "^0.103.10",
+ "@graphql-mesh/store": "^0.103.11",
"@graphql-mesh/string-interpolation": "^0.5.7",
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"@graphql-tools/delegate": "^10.0.28",
"@graphql-tools/federation": "^3.0.0",
"@graphql-tools/merge": "^9.0.12",
diff --git a/packages/legacy/handlers/grpc/CHANGELOG.md b/packages/legacy/handlers/grpc/CHANGELOG.md
index 3a4aa82dad052..765f13c335c91 100644
--- a/packages/legacy/handlers/grpc/CHANGELOG.md
+++ b/packages/legacy/handlers/grpc/CHANGELOG.md
@@ -1,5 +1,17 @@
# @graphql-mesh/grpc
+## 0.107.1
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/transport-grpc@0.2.1
+ - @graphql-mesh/utils@0.103.11
+ - @graphql-mesh/store@0.103.11
+
## 0.107.0
### Minor Changes
diff --git a/packages/legacy/handlers/grpc/package.json b/packages/legacy/handlers/grpc/package.json
index fd6103241ef3d..cc4f808d0bb54 100644
--- a/packages/legacy/handlers/grpc/package.json
+++ b/packages/legacy/handlers/grpc/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/grpc",
- "version": "0.107.0",
+ "version": "0.107.1",
"type": "module",
"repository": {
"type": "git",
@@ -35,10 +35,10 @@
"graphql": "*"
},
"dependencies": {
- "@graphql-mesh/store": "^0.103.10",
- "@graphql-mesh/transport-grpc": "^0.2.0",
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/store": "^0.103.11",
+ "@graphql-mesh/transport-grpc": "^0.2.1",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"@omnigraph/grpc": "^0.2.0",
"tslib": "^2.4.0"
},
diff --git a/packages/legacy/handlers/json-schema/CHANGELOG.md b/packages/legacy/handlers/json-schema/CHANGELOG.md
index f6900ee7f0b7c..67af101c1f00c 100644
--- a/packages/legacy/handlers/json-schema/CHANGELOG.md
+++ b/packages/legacy/handlers/json-schema/CHANGELOG.md
@@ -1,5 +1,17 @@
# @graphql-mesh/json-schema
+## 0.108.11
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+ - @graphql-mesh/store@0.103.11
+ - @omnigraph/json-schema@0.108.11
+
## 0.108.10
### Patch Changes
diff --git a/packages/legacy/handlers/json-schema/package.json b/packages/legacy/handlers/json-schema/package.json
index a6cbe7fe27c42..dd0ec3ec8754e 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.108.10",
+ "version": "0.108.11",
"type": "module",
"repository": {
"type": "git",
@@ -36,12 +36,12 @@
},
"dependencies": {
"@graphql-mesh/cross-helpers": "^0.4.9",
- "@graphql-mesh/store": "^0.103.10",
+ "@graphql-mesh/store": "^0.103.11",
"@graphql-mesh/string-interpolation": "0.5.7",
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"@json-schema-tools/meta-schema": "1.7.5",
- "@omnigraph/json-schema": "0.108.10",
+ "@omnigraph/json-schema": "0.108.11",
"graphql-compose": "9.0.11",
"json-machete": "0.97.5",
"tslib": "^2.4.0"
diff --git a/packages/legacy/handlers/mongoose/CHANGELOG.md b/packages/legacy/handlers/mongoose/CHANGELOG.md
index 7ae42c3a4ea4d..0a81944133e8a 100644
--- a/packages/legacy/handlers/mongoose/CHANGELOG.md
+++ b/packages/legacy/handlers/mongoose/CHANGELOG.md
@@ -1,5 +1,15 @@
# @graphql-mesh/mongoose
+## 0.103.11
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+
## 0.103.10
### Patch Changes
diff --git a/packages/legacy/handlers/mongoose/package.json b/packages/legacy/handlers/mongoose/package.json
index 5b51f242b53b1..9fade707636ac 100644
--- a/packages/legacy/handlers/mongoose/package.json
+++ b/packages/legacy/handlers/mongoose/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/mongoose",
- "version": "0.103.10",
+ "version": "0.103.11",
"type": "module",
"repository": {
"type": "git",
@@ -36,8 +36,8 @@
},
"dependencies": {
"@graphql-mesh/string-interpolation": "^0.5.7",
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"graphql-compose": "^9.0.11",
"graphql-compose-connection": "^8.2.1",
"graphql-compose-mongoose": "^10.0.0",
diff --git a/packages/legacy/handlers/mysql/CHANGELOG.md b/packages/legacy/handlers/mysql/CHANGELOG.md
index 5c6dfdb9d943b..94cc60b26bc34 100644
--- a/packages/legacy/handlers/mysql/CHANGELOG.md
+++ b/packages/legacy/handlers/mysql/CHANGELOG.md
@@ -1,5 +1,17 @@
# @graphql-mesh/mysql
+## 0.104.11
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+ - @graphql-mesh/store@0.103.11
+ - @omnigraph/mysql@0.8.11
+
## 0.104.10
### Patch Changes
diff --git a/packages/legacy/handlers/mysql/package.json b/packages/legacy/handlers/mysql/package.json
index f7193e3c3ae7c..11e92b298a37d 100644
--- a/packages/legacy/handlers/mysql/package.json
+++ b/packages/legacy/handlers/mysql/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/mysql",
- "version": "0.104.10",
+ "version": "0.104.11",
"type": "module",
"repository": {
"type": "git",
@@ -35,11 +35,11 @@
"graphql": "*"
},
"dependencies": {
- "@graphql-mesh/store": "^0.103.10",
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/store": "^0.103.11",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"@graphql-tools/utils": "^10.6.0",
- "@omnigraph/mysql": "^0.8.10",
+ "@omnigraph/mysql": "^0.8.11",
"tslib": "^2.4.0"
},
"publishConfig": {
diff --git a/packages/legacy/handlers/neo4j/CHANGELOG.md b/packages/legacy/handlers/neo4j/CHANGELOG.md
index f45c9b73fc321..3c84d1ffbbb6c 100644
--- a/packages/legacy/handlers/neo4j/CHANGELOG.md
+++ b/packages/legacy/handlers/neo4j/CHANGELOG.md
@@ -1,5 +1,17 @@
# @graphql-mesh/neo4j
+## 0.105.11
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+ - @graphql-mesh/store@0.103.11
+ - @omnigraph/neo4j@0.9.11
+
## 0.105.10
### Patch Changes
diff --git a/packages/legacy/handlers/neo4j/package.json b/packages/legacy/handlers/neo4j/package.json
index b88429be0a764..9adb1646cff3f 100644
--- a/packages/legacy/handlers/neo4j/package.json
+++ b/packages/legacy/handlers/neo4j/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/neo4j",
- "version": "0.105.10",
+ "version": "0.105.11",
"type": "module",
"repository": {
"type": "git",
@@ -35,10 +35,10 @@
"graphql": "*"
},
"dependencies": {
- "@graphql-mesh/store": "^0.103.10",
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
- "@omnigraph/neo4j": "^0.9.10",
+ "@graphql-mesh/store": "^0.103.11",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
+ "@omnigraph/neo4j": "^0.9.11",
"tslib": "^2.4.0"
},
"publishConfig": {
diff --git a/packages/legacy/handlers/odata/CHANGELOG.md b/packages/legacy/handlers/odata/CHANGELOG.md
index e6d401f1df9e7..98ad943101c99 100644
--- a/packages/legacy/handlers/odata/CHANGELOG.md
+++ b/packages/legacy/handlers/odata/CHANGELOG.md
@@ -1,5 +1,15 @@
# @graphql-mesh/odata
+## 0.105.11
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/store@0.103.11
+ - @omnigraph/odata@0.1.11
+
## 0.105.10
### Patch Changes
diff --git a/packages/legacy/handlers/odata/package.json b/packages/legacy/handlers/odata/package.json
index b52e05ad3156e..0134fb7528a85 100644
--- a/packages/legacy/handlers/odata/package.json
+++ b/packages/legacy/handlers/odata/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/odata",
- "version": "0.105.10",
+ "version": "0.105.11",
"type": "module",
"repository": {
"type": "git",
@@ -35,9 +35,9 @@
"graphql": "*"
},
"dependencies": {
- "@graphql-mesh/store": "^0.103.10",
- "@graphql-mesh/types": "^0.103.10",
- "@omnigraph/odata": "^0.1.10",
+ "@graphql-mesh/store": "^0.103.11",
+ "@graphql-mesh/types": "^0.103.11",
+ "@omnigraph/odata": "^0.1.11",
"tslib": "^2.4.0"
},
"publishConfig": {
diff --git a/packages/legacy/handlers/openapi/CHANGELOG.md b/packages/legacy/handlers/openapi/CHANGELOG.md
index 9c95078a280a3..6cb83755484be 100644
--- a/packages/legacy/handlers/openapi/CHANGELOG.md
+++ b/packages/legacy/handlers/openapi/CHANGELOG.md
@@ -1,5 +1,17 @@
# @graphql-mesh/openapi
+## 0.108.13
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+ - @graphql-mesh/store@0.103.11
+ - @omnigraph/openapi@0.108.13
+
## 0.108.12
### Patch Changes
diff --git a/packages/legacy/handlers/openapi/package.json b/packages/legacy/handlers/openapi/package.json
index 1332b540f05bf..b15a95ef95f12 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.108.12",
+ "version": "0.108.13",
"type": "module",
"repository": {
"type": "git",
@@ -35,11 +35,11 @@
"graphql": "*"
},
"dependencies": {
- "@graphql-mesh/store": "^0.103.10",
+ "@graphql-mesh/store": "^0.103.11",
"@graphql-mesh/string-interpolation": "0.5.7",
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
- "@omnigraph/openapi": "0.108.12",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
+ "@omnigraph/openapi": "0.108.13",
"tslib": "^2.4.0"
},
"publishConfig": {
diff --git a/packages/legacy/handlers/postgraphile/CHANGELOG.md b/packages/legacy/handlers/postgraphile/CHANGELOG.md
index a39fa7957ec45..188b8a5f9f34b 100644
--- a/packages/legacy/handlers/postgraphile/CHANGELOG.md
+++ b/packages/legacy/handlers/postgraphile/CHANGELOG.md
@@ -1,5 +1,16 @@
# @graphql-mesh/postgraphile
+## 0.103.11
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+ - @graphql-mesh/store@0.103.11
+
## 0.103.10
### Patch Changes
diff --git a/packages/legacy/handlers/postgraphile/package.json b/packages/legacy/handlers/postgraphile/package.json
index 8188954eceb91..c15ec9b69879b 100644
--- a/packages/legacy/handlers/postgraphile/package.json
+++ b/packages/legacy/handlers/postgraphile/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/postgraphile",
- "version": "0.103.10",
+ "version": "0.103.11",
"type": "module",
"repository": {
"type": "git",
@@ -36,10 +36,10 @@
},
"dependencies": {
"@graphql-mesh/cross-helpers": "^0.4.9",
- "@graphql-mesh/store": "^0.103.10",
+ "@graphql-mesh/store": "^0.103.11",
"@graphql-mesh/string-interpolation": "^0.5.7",
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"@graphql-tools/delegate": "^10.0.28",
"pg": "^8.6.0",
"postgraphile": "^4.13.0",
diff --git a/packages/legacy/handlers/raml/CHANGELOG.md b/packages/legacy/handlers/raml/CHANGELOG.md
index d8d69239cd154..eda1b1e4c8a5a 100644
--- a/packages/legacy/handlers/raml/CHANGELOG.md
+++ b/packages/legacy/handlers/raml/CHANGELOG.md
@@ -1,5 +1,17 @@
# @graphql-mesh/raml
+## 0.108.11
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+ - @graphql-mesh/store@0.103.11
+ - @omnigraph/raml@0.108.11
+
## 0.108.10
### Patch Changes
diff --git a/packages/legacy/handlers/raml/package.json b/packages/legacy/handlers/raml/package.json
index a0a905e1d6956..036539684d46a 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.108.10",
+ "version": "0.108.11",
"type": "module",
"repository": {
"type": "git",
@@ -35,10 +35,10 @@
"graphql": "*"
},
"dependencies": {
- "@graphql-mesh/store": "^0.103.10",
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
- "@omnigraph/raml": "0.108.10",
+ "@graphql-mesh/store": "^0.103.11",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
+ "@omnigraph/raml": "0.108.11",
"tslib": "^2.4.0"
},
"publishConfig": {
diff --git a/packages/legacy/handlers/soap/CHANGELOG.md b/packages/legacy/handlers/soap/CHANGELOG.md
index 95b96cb63b832..b3532c6291b09 100644
--- a/packages/legacy/handlers/soap/CHANGELOG.md
+++ b/packages/legacy/handlers/soap/CHANGELOG.md
@@ -1,5 +1,18 @@
# @graphql-mesh/soap
+## 0.105.11
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @omnigraph/soap@0.105.11
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+ - @graphql-mesh/store@0.103.11
+
## 0.105.10
### Patch Changes
diff --git a/packages/legacy/handlers/soap/package.json b/packages/legacy/handlers/soap/package.json
index 7dc87586eaaa8..f25919d8b768a 100644
--- a/packages/legacy/handlers/soap/package.json
+++ b/packages/legacy/handlers/soap/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/soap",
- "version": "0.105.10",
+ "version": "0.105.11",
"type": "module",
"repository": {
"type": "git",
@@ -36,12 +36,12 @@
},
"dependencies": {
"@graphql-mesh/cross-helpers": "^0.4.9",
- "@graphql-mesh/store": "^0.103.10",
+ "@graphql-mesh/store": "^0.103.11",
"@graphql-mesh/string-interpolation": "^0.5.7",
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"@graphql-tools/utils": "^10.6.0",
- "@omnigraph/soap": "0.105.10",
+ "@omnigraph/soap": "0.105.11",
"tslib": "^2.4.0"
},
"publishConfig": {
diff --git a/packages/legacy/handlers/supergraph/CHANGELOG.md b/packages/legacy/handlers/supergraph/CHANGELOG.md
index 9c8d67372170a..ee61fec288acc 100644
--- a/packages/legacy/handlers/supergraph/CHANGELOG.md
+++ b/packages/legacy/handlers/supergraph/CHANGELOG.md
@@ -1,5 +1,16 @@
# @graphql-mesh/supergraph
+## 0.9.12
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+ - @graphql-mesh/store@0.103.11
+
## 0.9.11
### Patch Changes
diff --git a/packages/legacy/handlers/supergraph/package.json b/packages/legacy/handlers/supergraph/package.json
index be67cff2ae9b1..6f4bcdebdcd1e 100644
--- a/packages/legacy/handlers/supergraph/package.json
+++ b/packages/legacy/handlers/supergraph/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/supergraph",
- "version": "0.9.11",
+ "version": "0.9.12",
"type": "module",
"repository": {
"type": "git",
@@ -36,10 +36,10 @@
},
"dependencies": {
"@graphql-mesh/cross-helpers": "^0.4.9",
- "@graphql-mesh/store": "^0.103.10",
+ "@graphql-mesh/store": "^0.103.11",
"@graphql-mesh/string-interpolation": "^0.5.7",
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"@graphql-tools/federation": "^3.0.0",
"@graphql-tools/url-loader": "^8.0.9",
"@graphql-tools/utils": "^10.6.0",
diff --git a/packages/legacy/handlers/thrift/CHANGELOG.md b/packages/legacy/handlers/thrift/CHANGELOG.md
index 06acd5ba9081c..1773a253e594f 100644
--- a/packages/legacy/handlers/thrift/CHANGELOG.md
+++ b/packages/legacy/handlers/thrift/CHANGELOG.md
@@ -1,5 +1,17 @@
# @graphql-mesh/thrift
+## 0.105.11
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+ - @graphql-mesh/store@0.103.11
+ - @omnigraph/thrift@0.8.11
+
## 0.105.10
### Patch Changes
diff --git a/packages/legacy/handlers/thrift/package.json b/packages/legacy/handlers/thrift/package.json
index f27b313a8d84a..48a155e69d6a4 100644
--- a/packages/legacy/handlers/thrift/package.json
+++ b/packages/legacy/handlers/thrift/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/thrift",
- "version": "0.105.10",
+ "version": "0.105.11",
"type": "module",
"repository": {
"type": "git",
@@ -36,11 +36,11 @@
},
"dependencies": {
"@graphql-mesh/cross-helpers": "^0.4.9",
- "@graphql-mesh/store": "^0.103.10",
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/store": "^0.103.11",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"@graphql-tools/utils": "^10.6.0",
- "@omnigraph/thrift": "^0.8.10",
+ "@omnigraph/thrift": "^0.8.11",
"tslib": "^2.4.0"
},
"devDependencies": {
diff --git a/packages/legacy/handlers/tuql/CHANGELOG.md b/packages/legacy/handlers/tuql/CHANGELOG.md
index 00b48e53ba3d2..f044ce53a7cfd 100644
--- a/packages/legacy/handlers/tuql/CHANGELOG.md
+++ b/packages/legacy/handlers/tuql/CHANGELOG.md
@@ -1,5 +1,14 @@
# @graphql-mesh/tuql
+## 0.104.11
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1)]:
+ - @graphql-mesh/types@0.103.11
+ - @omnigraph/sqlite@0.7.11
+
## 0.104.10
### Patch Changes
diff --git a/packages/legacy/handlers/tuql/package.json b/packages/legacy/handlers/tuql/package.json
index 386edd733d2c3..d4d12712e4e95 100644
--- a/packages/legacy/handlers/tuql/package.json
+++ b/packages/legacy/handlers/tuql/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/tuql",
- "version": "0.104.10",
+ "version": "0.104.11",
"type": "module",
"repository": {
"type": "git",
@@ -35,8 +35,8 @@
"graphql": "*"
},
"dependencies": {
- "@graphql-mesh/types": "^0.103.10",
- "@omnigraph/sqlite": "^0.7.10",
+ "@graphql-mesh/types": "^0.103.11",
+ "@omnigraph/sqlite": "^0.7.11",
"tslib": "^2.4.0"
},
"publishConfig": {
diff --git a/packages/legacy/http/CHANGELOG.md b/packages/legacy/http/CHANGELOG.md
index a3d7b8136f242..9c9c429c3918b 100644
--- a/packages/legacy/http/CHANGELOG.md
+++ b/packages/legacy/http/CHANGELOG.md
@@ -1,5 +1,16 @@
# @graphql-mesh/http
+## 0.105.12
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+ - @graphql-mesh/runtime@0.105.12
+
## 0.105.11
### Patch Changes
diff --git a/packages/legacy/http/package.json b/packages/legacy/http/package.json
index 2d9c27c2493c9..9fccce039f11e 100644
--- a/packages/legacy/http/package.json
+++ b/packages/legacy/http/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/http",
- "version": "0.105.11",
+ "version": "0.105.12",
"type": "module",
"repository": {
"type": "git",
@@ -36,9 +36,9 @@
},
"dependencies": {
"@graphql-mesh/cross-helpers": "^0.4.9",
- "@graphql-mesh/runtime": "^0.105.11",
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/runtime": "^0.105.12",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"@graphql-tools/utils": "^10.6.0",
"@whatwg-node/server": "^0.9.46",
"graphql-yoga": "^5.7.0",
diff --git a/packages/legacy/mergers/bare/CHANGELOG.md b/packages/legacy/mergers/bare/CHANGELOG.md
index f8f8dddbd2e2a..4ad49691b5837 100644
--- a/packages/legacy/mergers/bare/CHANGELOG.md
+++ b/packages/legacy/mergers/bare/CHANGELOG.md
@@ -1,5 +1,16 @@
# @graphql-mesh/merger-bare
+## 0.104.14
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+ - @graphql-mesh/merger-stitching@0.104.11
+
## 0.104.13
### Patch Changes
diff --git a/packages/legacy/mergers/bare/package.json b/packages/legacy/mergers/bare/package.json
index 484aaf8d299ee..979253d2dd142 100644
--- a/packages/legacy/mergers/bare/package.json
+++ b/packages/legacy/mergers/bare/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/merger-bare",
- "version": "0.104.13",
+ "version": "0.104.14",
"type": "module",
"repository": {
"type": "git",
@@ -35,9 +35,9 @@
"graphql": "*"
},
"dependencies": {
- "@graphql-mesh/merger-stitching": "0.104.10",
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/merger-stitching": "0.104.11",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"@graphql-tools/schema": "^10.0.13",
"@graphql-tools/utils": "^10.6.0",
"tslib": "^2.4.0"
diff --git a/packages/legacy/mergers/stitching/CHANGELOG.md b/packages/legacy/mergers/stitching/CHANGELOG.md
index cdf76c3ba132f..68e160e4cb4ce 100644
--- a/packages/legacy/mergers/stitching/CHANGELOG.md
+++ b/packages/legacy/mergers/stitching/CHANGELOG.md
@@ -1,5 +1,16 @@
# @graphql-mesh/merger-stitching
+## 0.104.11
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+ - @graphql-mesh/store@0.103.11
+
## 0.104.10
### Patch Changes
diff --git a/packages/legacy/mergers/stitching/package.json b/packages/legacy/mergers/stitching/package.json
index d6e54751c2cdc..ffbaafb30d2fb 100644
--- a/packages/legacy/mergers/stitching/package.json
+++ b/packages/legacy/mergers/stitching/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/merger-stitching",
- "version": "0.104.10",
+ "version": "0.104.11",
"type": "module",
"repository": {
"type": "git",
@@ -35,9 +35,9 @@
"graphql": "*"
},
"dependencies": {
- "@graphql-mesh/store": "^0.103.10",
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/store": "^0.103.11",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"@graphql-tools/delegate": "^10.0.28",
"@graphql-tools/schema": "^10.0.5",
"@graphql-tools/stitch": "^9.2.17",
diff --git a/packages/legacy/migrate-config-cli/CHANGELOG.md b/packages/legacy/migrate-config-cli/CHANGELOG.md
index f82bf8db2e64c..cd772c1f82bed 100644
--- a/packages/legacy/migrate-config-cli/CHANGELOG.md
+++ b/packages/legacy/migrate-config-cli/CHANGELOG.md
@@ -1,5 +1,18 @@
# @graphql-mesh/migrate-config-cli
+## 1.4.9
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+ - @graphql-mesh/compose-cli@1.3.5
+ - @graphql-mesh/cli@0.98.17
+ - @graphql-mesh/config@0.106.17
+
## 1.4.8
### Patch Changes
diff --git a/packages/legacy/migrate-config-cli/package.json b/packages/legacy/migrate-config-cli/package.json
index 0f1e2a1d92245..b96d480f13b8e 100644
--- a/packages/legacy/migrate-config-cli/package.json
+++ b/packages/legacy/migrate-config-cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/migrate-config-cli",
- "version": "1.4.8",
+ "version": "1.4.9",
"type": "module",
"repository": {
"type": "git",
@@ -38,11 +38,11 @@
"graphql": "*"
},
"dependencies": {
- "@graphql-mesh/cli": "^0.98.16",
- "@graphql-mesh/compose-cli": "^1.3.4",
- "@graphql-mesh/config": "^0.106.16",
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/cli": "^0.98.17",
+ "@graphql-mesh/compose-cli": "^1.3.5",
+ "@graphql-mesh/config": "^0.106.17",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"lodash.kebabcase": "^4.1.1",
"prettier": "^3.3.3",
"tslib": "^2.4.0"
diff --git a/packages/legacy/runtime/CHANGELOG.md b/packages/legacy/runtime/CHANGELOG.md
index 6cc200eef691e..390f483cb6d45 100644
--- a/packages/legacy/runtime/CHANGELOG.md
+++ b/packages/legacy/runtime/CHANGELOG.md
@@ -1,5 +1,15 @@
# @graphql-mesh/runtime
+## 0.105.12
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+
## 0.105.11
### Patch Changes
diff --git a/packages/legacy/runtime/package.json b/packages/legacy/runtime/package.json
index 6a4bfeacd41a9..eb0a393f9aeb3 100644
--- a/packages/legacy/runtime/package.json
+++ b/packages/legacy/runtime/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/runtime",
- "version": "0.105.11",
+ "version": "0.105.12",
"type": "module",
"repository": {
"type": "git",
@@ -40,8 +40,8 @@
"@envelop/graphql-jit": "^8.0.0",
"@graphql-mesh/cross-helpers": "^0.4.9",
"@graphql-mesh/string-interpolation": "^0.5.7",
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"@graphql-tools/batch-delegate": "^9.0.9",
"@graphql-tools/delegate": "^10.0.28",
"@graphql-tools/executor": "^1.3.2",
diff --git a/packages/legacy/store/CHANGELOG.md b/packages/legacy/store/CHANGELOG.md
index 1568fa7fbf829..a887457c5f77f 100644
--- a/packages/legacy/store/CHANGELOG.md
+++ b/packages/legacy/store/CHANGELOG.md
@@ -1,5 +1,15 @@
# @graphql-mesh/store
+## 0.103.11
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+
## 0.103.10
### Patch Changes
diff --git a/packages/legacy/store/package.json b/packages/legacy/store/package.json
index e0b022166bb1c..659ff9d9c42b7 100644
--- a/packages/legacy/store/package.json
+++ b/packages/legacy/store/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/store",
- "version": "0.103.10",
+ "version": "0.103.11",
"type": "module",
"repository": {
"type": "git",
@@ -37,8 +37,8 @@
"dependencies": {
"@graphql-inspector/core": "6.2.1",
"@graphql-mesh/cross-helpers": "^0.4.9",
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"@graphql-tools/utils": "^10.6.0",
"tslib": "^2.4.0"
},
diff --git a/packages/legacy/transforms/cache/CHANGELOG.md b/packages/legacy/transforms/cache/CHANGELOG.md
index bedf9d6524034..4cc8fc377d378 100644
--- a/packages/legacy/transforms/cache/CHANGELOG.md
+++ b/packages/legacy/transforms/cache/CHANGELOG.md
@@ -1,5 +1,15 @@
# @graphql-mesh/transform-cache
+## 0.103.12
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+
## 0.103.11
### Patch Changes
diff --git a/packages/legacy/transforms/cache/package.json b/packages/legacy/transforms/cache/package.json
index ff7c584e85c78..72fe011d03ab8 100644
--- a/packages/legacy/transforms/cache/package.json
+++ b/packages/legacy/transforms/cache/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/transform-cache",
- "version": "0.103.11",
+ "version": "0.103.12",
"type": "module",
"repository": {
"type": "git",
@@ -37,8 +37,8 @@
"dependencies": {
"@graphql-mesh/cross-helpers": "^0.4.9",
"@graphql-mesh/string-interpolation": "^0.5.7",
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"@graphql-tools/resolvers-composition": "^7.0.0",
"@graphql-tools/schema": "^10.0.5",
"@graphql-tools/utils": "^10.6.0",
@@ -46,7 +46,7 @@
"tslib": "^2.4.0"
},
"devDependencies": {
- "@graphql-mesh/cache-localforage": "0.103.11"
+ "@graphql-mesh/cache-localforage": "0.103.12"
},
"publishConfig": {
"access": "public",
diff --git a/packages/legacy/transforms/encapsulate/CHANGELOG.md b/packages/legacy/transforms/encapsulate/CHANGELOG.md
index 21cbfea620317..87fb6dd2d5e81 100644
--- a/packages/legacy/transforms/encapsulate/CHANGELOG.md
+++ b/packages/legacy/transforms/encapsulate/CHANGELOG.md
@@ -1,5 +1,15 @@
# @graphql-mesh/transform-encapsulate
+## 0.103.11
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+
## 0.103.10
### Patch Changes
diff --git a/packages/legacy/transforms/encapsulate/package.json b/packages/legacy/transforms/encapsulate/package.json
index 2c19cc19de646..9b72ff06d116f 100644
--- a/packages/legacy/transforms/encapsulate/package.json
+++ b/packages/legacy/transforms/encapsulate/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/transform-encapsulate",
- "version": "0.103.10",
+ "version": "0.103.11",
"type": "module",
"repository": {
"type": "git",
@@ -35,8 +35,8 @@
"graphql": "*"
},
"dependencies": {
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"@graphql-tools/delegate": "^10.0.28",
"@graphql-tools/utils": "^10.6.0",
"@graphql-tools/wrap": "^10.0.12",
diff --git a/packages/legacy/transforms/extend/CHANGELOG.md b/packages/legacy/transforms/extend/CHANGELOG.md
index 1a6cb5057c69a..8caeea87ac368 100644
--- a/packages/legacy/transforms/extend/CHANGELOG.md
+++ b/packages/legacy/transforms/extend/CHANGELOG.md
@@ -1,5 +1,15 @@
# @graphql-mesh/transform-extend
+## 0.103.11
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+
## 0.103.10
### Patch Changes
diff --git a/packages/legacy/transforms/extend/package.json b/packages/legacy/transforms/extend/package.json
index 29f3b1f1e760a..1b288459e2d03 100644
--- a/packages/legacy/transforms/extend/package.json
+++ b/packages/legacy/transforms/extend/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/transform-extend",
- "version": "0.103.10",
+ "version": "0.103.11",
"type": "module",
"repository": {
"type": "git",
@@ -36,8 +36,8 @@
},
"dependencies": {
"@graphql-mesh/cross-helpers": "^0.4.9",
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"@graphql-tools/code-file-loader": "^8.1.3",
"@graphql-tools/graphql-file-loader": "^8.0.1",
"@graphql-tools/load": "^8.0.2",
diff --git a/packages/legacy/transforms/federation/CHANGELOG.md b/packages/legacy/transforms/federation/CHANGELOG.md
index 57339c7a63f19..27300d1c3c6c8 100644
--- a/packages/legacy/transforms/federation/CHANGELOG.md
+++ b/packages/legacy/transforms/federation/CHANGELOG.md
@@ -1,5 +1,15 @@
# @graphql-mesh/transform-federation
+## 0.103.11
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+
## 0.103.10
### Patch Changes
diff --git a/packages/legacy/transforms/federation/package.json b/packages/legacy/transforms/federation/package.json
index fe080a933e3b3..70a6d3084fd6f 100644
--- a/packages/legacy/transforms/federation/package.json
+++ b/packages/legacy/transforms/federation/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/transform-federation",
- "version": "0.103.10",
+ "version": "0.103.11",
"type": "module",
"repository": {
"type": "git",
@@ -37,8 +37,8 @@
"dependencies": {
"@apollo/subgraph": "^2.4.1",
"@graphql-mesh/string-interpolation": "^0.5.7",
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"@graphql-tools/delegate": "^10.0.28",
"@graphql-tools/stitching-directives": "^3.1.9",
"@graphql-tools/utils": "^10.6.0",
diff --git a/packages/legacy/transforms/filter-schema/CHANGELOG.md b/packages/legacy/transforms/filter-schema/CHANGELOG.md
index 8157504ba2bf5..8d626352b0827 100644
--- a/packages/legacy/transforms/filter-schema/CHANGELOG.md
+++ b/packages/legacy/transforms/filter-schema/CHANGELOG.md
@@ -1,5 +1,15 @@
# @graphql-mesh/transform-filter-schema
+## 0.103.11
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+
## 0.103.10
### Patch Changes
diff --git a/packages/legacy/transforms/filter-schema/package.json b/packages/legacy/transforms/filter-schema/package.json
index 4b1bf4c27d599..bbfdc66ad7df7 100644
--- a/packages/legacy/transforms/filter-schema/package.json
+++ b/packages/legacy/transforms/filter-schema/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/transform-filter-schema",
- "version": "0.103.10",
+ "version": "0.103.11",
"type": "module",
"repository": {
"type": "git",
@@ -35,8 +35,8 @@
"graphql": "*"
},
"dependencies": {
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"@graphql-tools/delegate": "^10.0.28",
"@graphql-tools/utils": "^10.6.0",
"@graphql-tools/wrap": "^10.0.12",
diff --git a/packages/legacy/transforms/hive/CHANGELOG.md b/packages/legacy/transforms/hive/CHANGELOG.md
index e041a19c636bd..edf96b635e264 100644
--- a/packages/legacy/transforms/hive/CHANGELOG.md
+++ b/packages/legacy/transforms/hive/CHANGELOG.md
@@ -1,5 +1,13 @@
# @graphql-mesh/transform-hive
+## 0.103.12
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1)]:
+ - @graphql-mesh/types@0.103.11
+
## 0.103.11
### Patch Changes
diff --git a/packages/legacy/transforms/hive/package.json b/packages/legacy/transforms/hive/package.json
index e1a45d4601328..16afa213bac2e 100644
--- a/packages/legacy/transforms/hive/package.json
+++ b/packages/legacy/transforms/hive/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/transform-hive",
- "version": "0.103.11",
+ "version": "0.103.12",
"type": "module",
"repository": {
"type": "git",
@@ -39,7 +39,7 @@
"@graphql-hive/yoga": "^0.39.0",
"@graphql-mesh/cross-helpers": "^0.4.9",
"@graphql-mesh/string-interpolation": "^0.5.7",
- "@graphql-mesh/types": "^0.103.10",
+ "@graphql-mesh/types": "^0.103.11",
"@graphql-tools/delegate": "^10.0.28",
"@graphql-tools/utils": "^10.6.0",
"tslib": "^2.4.0"
diff --git a/packages/legacy/transforms/hoist-field/CHANGELOG.md b/packages/legacy/transforms/hoist-field/CHANGELOG.md
index 74689c7cf9d56..9ea51383822b2 100644
--- a/packages/legacy/transforms/hoist-field/CHANGELOG.md
+++ b/packages/legacy/transforms/hoist-field/CHANGELOG.md
@@ -1,5 +1,15 @@
# @graphql-mesh/transform-hoist-field
+## 0.103.12
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+
## 0.103.11
### Patch Changes
diff --git a/packages/legacy/transforms/hoist-field/package.json b/packages/legacy/transforms/hoist-field/package.json
index 38650310bec28..d1c955b622dcb 100644
--- a/packages/legacy/transforms/hoist-field/package.json
+++ b/packages/legacy/transforms/hoist-field/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/transform-hoist-field",
- "version": "0.103.11",
+ "version": "0.103.12",
"type": "module",
"repository": {
"type": "git",
@@ -35,14 +35,14 @@
"graphql": "*"
},
"dependencies": {
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"@graphql-tools/delegate": "^10.0.28",
"@graphql-tools/utils": "^10.6.0",
"@graphql-tools/wrap": "^10.0.12"
},
"devDependencies": {
- "@graphql-mesh/cache-localforage": "0.103.11"
+ "@graphql-mesh/cache-localforage": "0.103.12"
},
"publishConfig": {
"access": "public",
diff --git a/packages/legacy/transforms/naming-convention/CHANGELOG.md b/packages/legacy/transforms/naming-convention/CHANGELOG.md
index 3e13aac2eedab..995e0bcce9b82 100644
--- a/packages/legacy/transforms/naming-convention/CHANGELOG.md
+++ b/packages/legacy/transforms/naming-convention/CHANGELOG.md
@@ -1,5 +1,15 @@
# @graphql-mesh/transform-naming-convention
+## 0.103.13
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+
## 0.103.12
### Patch Changes
diff --git a/packages/legacy/transforms/naming-convention/package.json b/packages/legacy/transforms/naming-convention/package.json
index 80254c78291e4..390e849651de3 100644
--- a/packages/legacy/transforms/naming-convention/package.json
+++ b/packages/legacy/transforms/naming-convention/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/transform-naming-convention",
- "version": "0.103.12",
+ "version": "0.103.13",
"type": "module",
"repository": {
"type": "git",
@@ -35,8 +35,8 @@
"graphql": "*"
},
"dependencies": {
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"@graphql-tools/delegate": "^10.0.28",
"@graphql-tools/utils": "^10.6.0",
"@graphql-tools/wrap": "^10.0.12",
@@ -47,7 +47,7 @@
"upper-case": "^2.0.2"
},
"devDependencies": {
- "@graphql-mesh/cache-localforage": "^0.103.11",
+ "@graphql-mesh/cache-localforage": "^0.103.12",
"@graphql-tools/schema": "10.0.16"
},
"publishConfig": {
diff --git a/packages/legacy/transforms/prefix/CHANGELOG.md b/packages/legacy/transforms/prefix/CHANGELOG.md
index b356911a9e0ee..54eefdc4d0ad8 100644
--- a/packages/legacy/transforms/prefix/CHANGELOG.md
+++ b/packages/legacy/transforms/prefix/CHANGELOG.md
@@ -1,5 +1,15 @@
# @graphql-mesh/transform-prefix
+## 0.103.13
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+
## 0.103.12
### Patch Changes
diff --git a/packages/legacy/transforms/prefix/package.json b/packages/legacy/transforms/prefix/package.json
index 32317ae118711..1d2e5f952677f 100644
--- a/packages/legacy/transforms/prefix/package.json
+++ b/packages/legacy/transforms/prefix/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/transform-prefix",
- "version": "0.103.12",
+ "version": "0.103.13",
"type": "module",
"repository": {
"type": "git",
@@ -35,8 +35,8 @@
"graphql": "*"
},
"dependencies": {
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"@graphql-tools/delegate": "^10.0.28",
"@graphql-tools/utils": "^10.6.0",
"@graphql-tools/wrap": "^10.0.12",
@@ -44,7 +44,7 @@
"tslib": "^2.4.0"
},
"devDependencies": {
- "@graphql-mesh/cache-localforage": "0.103.11",
+ "@graphql-mesh/cache-localforage": "0.103.12",
"@graphql-tools/schema": "10.0.16"
},
"publishConfig": {
diff --git a/packages/legacy/transforms/prune/CHANGELOG.md b/packages/legacy/transforms/prune/CHANGELOG.md
index 0151bffec823d..74f10d37ddfa6 100644
--- a/packages/legacy/transforms/prune/CHANGELOG.md
+++ b/packages/legacy/transforms/prune/CHANGELOG.md
@@ -1,5 +1,13 @@
# @graphql-mesh/transform-prune
+## 0.103.11
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1)]:
+ - @graphql-mesh/types@0.103.11
+
## 0.103.10
### Patch Changes
diff --git a/packages/legacy/transforms/prune/package.json b/packages/legacy/transforms/prune/package.json
index 542dbffa499b3..d0d38edb41436 100644
--- a/packages/legacy/transforms/prune/package.json
+++ b/packages/legacy/transforms/prune/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/transform-prune",
- "version": "0.103.10",
+ "version": "0.103.11",
"type": "module",
"repository": {
"type": "git",
@@ -35,7 +35,7 @@
"graphql": "*"
},
"dependencies": {
- "@graphql-mesh/types": "^0.103.10",
+ "@graphql-mesh/types": "^0.103.11",
"@graphql-tools/utils": "^10.6.0",
"tslib": "^2.4.0"
},
diff --git a/packages/legacy/transforms/rate-limit/CHANGELOG.md b/packages/legacy/transforms/rate-limit/CHANGELOG.md
index feb92c2c0a17c..cc5428f10c6d2 100644
--- a/packages/legacy/transforms/rate-limit/CHANGELOG.md
+++ b/packages/legacy/transforms/rate-limit/CHANGELOG.md
@@ -1,5 +1,15 @@
# @graphql-mesh/transform-rate-limit
+## 0.103.12
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+
## 0.103.11
### Patch Changes
diff --git a/packages/legacy/transforms/rate-limit/package.json b/packages/legacy/transforms/rate-limit/package.json
index af5d20d577f7b..0ec3462d36b8b 100644
--- a/packages/legacy/transforms/rate-limit/package.json
+++ b/packages/legacy/transforms/rate-limit/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/transform-rate-limit",
- "version": "0.103.11",
+ "version": "0.103.12",
"type": "module",
"repository": {
"type": "git",
@@ -37,14 +37,14 @@
"dependencies": {
"@graphql-mesh/cross-helpers": "^0.4.9",
"@graphql-mesh/string-interpolation": "^0.5.7",
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"@graphql-tools/utils": "^10.6.0",
"minimatch": "^10.0.0",
"tslib": "^2.4.0"
},
"devDependencies": {
- "@graphql-mesh/cache-localforage": "0.103.11",
+ "@graphql-mesh/cache-localforage": "0.103.12",
"@graphql-tools/schema": "10.0.16",
"@graphql-tools/wrap": "10.0.27"
},
diff --git a/packages/legacy/transforms/rename/CHANGELOG.md b/packages/legacy/transforms/rename/CHANGELOG.md
index ddbddf157b8e3..34442019af6f3 100644
--- a/packages/legacy/transforms/rename/CHANGELOG.md
+++ b/packages/legacy/transforms/rename/CHANGELOG.md
@@ -1,5 +1,15 @@
# @graphql-mesh/transform-rename
+## 0.103.12
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+
## 0.103.11
### Patch Changes
diff --git a/packages/legacy/transforms/rename/package.json b/packages/legacy/transforms/rename/package.json
index 389dd823cf1e7..d73b75b8baf39 100644
--- a/packages/legacy/transforms/rename/package.json
+++ b/packages/legacy/transforms/rename/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/transform-rename",
- "version": "0.103.11",
+ "version": "0.103.12",
"type": "module",
"repository": {
"type": "git",
@@ -35,8 +35,8 @@
"graphql": "*"
},
"dependencies": {
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"@graphql-tools/delegate": "^10.0.28",
"@graphql-tools/utils": "^10.6.0",
"@graphql-tools/wrap": "^10.0.12",
@@ -44,7 +44,7 @@
"tslib": "^2.4.0"
},
"devDependencies": {
- "@graphql-mesh/cache-localforage": "0.103.11",
+ "@graphql-mesh/cache-localforage": "0.103.12",
"@graphql-tools/schema": "10.0.16"
},
"publishConfig": {
diff --git a/packages/legacy/transforms/replace-field/CHANGELOG.md b/packages/legacy/transforms/replace-field/CHANGELOG.md
index 0c54263962b9b..511e6bab64f0c 100644
--- a/packages/legacy/transforms/replace-field/CHANGELOG.md
+++ b/packages/legacy/transforms/replace-field/CHANGELOG.md
@@ -1,5 +1,15 @@
# @graphql-mesh/replace-field
+## 0.103.12
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+
## 0.103.11
### Patch Changes
diff --git a/packages/legacy/transforms/replace-field/package.json b/packages/legacy/transforms/replace-field/package.json
index c14b52a32a3a1..dcdfc27a0a1c8 100644
--- a/packages/legacy/transforms/replace-field/package.json
+++ b/packages/legacy/transforms/replace-field/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/transform-replace-field",
- "version": "0.103.11",
+ "version": "0.103.12",
"type": "module",
"repository": {
"type": "git",
@@ -35,8 +35,8 @@
"graphql": "*"
},
"dependencies": {
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"@graphql-tools/code-file-loader": "^8.0.0",
"@graphql-tools/graphql-file-loader": "^8.0.0",
"@graphql-tools/load": "^8.0.0",
@@ -44,7 +44,7 @@
"tslib": "^2.4.0"
},
"devDependencies": {
- "@graphql-mesh/cache-localforage": "0.103.11",
+ "@graphql-mesh/cache-localforage": "0.103.12",
"@graphql-tools/schema": "10.0.16"
},
"publishConfig": {
diff --git a/packages/legacy/transforms/resolvers-composition/CHANGELOG.md b/packages/legacy/transforms/resolvers-composition/CHANGELOG.md
index f487f3752b7da..6f54a0e73da9b 100644
--- a/packages/legacy/transforms/resolvers-composition/CHANGELOG.md
+++ b/packages/legacy/transforms/resolvers-composition/CHANGELOG.md
@@ -1,5 +1,15 @@
# @graphql-mesh/transform-resolvers-composition
+## 0.103.11
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+
## 0.103.10
### Patch Changes
diff --git a/packages/legacy/transforms/resolvers-composition/package.json b/packages/legacy/transforms/resolvers-composition/package.json
index 3b6f6a17ca454..994e890fb1d10 100644
--- a/packages/legacy/transforms/resolvers-composition/package.json
+++ b/packages/legacy/transforms/resolvers-composition/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/transform-resolvers-composition",
- "version": "0.103.10",
+ "version": "0.103.11",
"type": "module",
"repository": {
"type": "git",
@@ -35,8 +35,8 @@
"graphql": "*"
},
"dependencies": {
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"@graphql-tools/resolvers-composition": "^7.0.0",
"@graphql-tools/schema": "^10.0.5",
"tslib": "^2.4.0"
diff --git a/packages/legacy/transforms/transfer-schema/CHANGELOG.md b/packages/legacy/transforms/transfer-schema/CHANGELOG.md
index 4a1fe75e7c488..9cc0d192da982 100644
--- a/packages/legacy/transforms/transfer-schema/CHANGELOG.md
+++ b/packages/legacy/transforms/transfer-schema/CHANGELOG.md
@@ -1,5 +1,15 @@
# @graphql-mesh/transform-transfer-schema
+## 0.103.11
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+
## 0.103.10
### Patch Changes
diff --git a/packages/legacy/transforms/transfer-schema/package.json b/packages/legacy/transforms/transfer-schema/package.json
index 2db6dbfb63694..ad63ea1403aeb 100644
--- a/packages/legacy/transforms/transfer-schema/package.json
+++ b/packages/legacy/transforms/transfer-schema/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/transform-transfer-schema",
- "version": "0.103.10",
+ "version": "0.103.11",
"type": "module",
"repository": {
"type": "git",
@@ -35,8 +35,8 @@
"graphql": "*"
},
"dependencies": {
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"@graphql-tools/utils": "^10.6.0",
"micromatch": "4.0.8"
},
diff --git a/packages/legacy/transforms/type-merging/CHANGELOG.md b/packages/legacy/transforms/type-merging/CHANGELOG.md
index 38212c3ab2176..c9409dffae3c1 100644
--- a/packages/legacy/transforms/type-merging/CHANGELOG.md
+++ b/packages/legacy/transforms/type-merging/CHANGELOG.md
@@ -1,5 +1,15 @@
# @graphql-mesh/transform-type-merging
+## 0.103.11
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+
## 0.103.10
### Patch Changes
diff --git a/packages/legacy/transforms/type-merging/package.json b/packages/legacy/transforms/type-merging/package.json
index 8dbd34fc3ecd5..fec46c3fb16c2 100644
--- a/packages/legacy/transforms/type-merging/package.json
+++ b/packages/legacy/transforms/type-merging/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/transform-type-merging",
- "version": "0.103.10",
+ "version": "0.103.11",
"type": "module",
"repository": {
"type": "git",
@@ -35,8 +35,8 @@
"graphql": "*"
},
"dependencies": {
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"@graphql-tools/delegate": "^10.0.28",
"@graphql-tools/stitching-directives": "^3.1.9",
"tslib": "^2.4.0"
diff --git a/packages/legacy/types/CHANGELOG.md b/packages/legacy/types/CHANGELOG.md
index 985f661f867cc..17eb7433d7085 100644
--- a/packages/legacy/types/CHANGELOG.md
+++ b/packages/legacy/types/CHANGELOG.md
@@ -1,5 +1,85 @@
# @graphql-mesh/types
+## 0.103.11
+
+### Patch Changes
+
+- [#8196](https://github.com/ardatan/graphql-mesh/pull/8196)
+ [`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1)
+ Thanks [@ardatan](https://github.com/ardatan)! - - You can now choose the name of the alias you
+ want to use for SOAP body;
+
+ ```ts filename="mesh.config.ts" {4}
+ import { defineConfig } from '@graphql-mesh/compose-cli'
+
+ export const composeConfig = defineConfig({
+ sources: [
+ {
+ sourceHandler: loadSOAPSubgraph('CountryInfo', {
+ source:
+ 'http://webservices.oorsprong.org/websamples.countryinfo/CountryInfoService.wso?WSDL',
+ bodyAlias: 'my-body'
+ })
+ }
+ ]
+ })
+ ```
+
+ - Then it will generate a body like below by using the alias;
+
+ ```xml
+
+
+
+ baz
+
+
+
+ ```
+
+ If you want to add SOAP headers to the request body like below;
+
+ ```xml
+
+
+
+ user
+ password
+
+
+ ```
+
+ You can add the headers to the configuration like below;
+
+ ```ts filename="mesh.config.ts" {2,7-9}
+ import { defineConfig } from '@graphql-mesh/compose-cli'
+ import { loadSOAPSubgraph } from '@omnigraph/soap'
+
+ export const composeConfig = defineConfig({
+ subgraphs: [
+ {
+ sourceHandler: loadSOAPSubgraph('CountryInfo', {
+ source:
+ 'http://webservices.oorsprong.org/websamples.countryinfo/CountryInfoService.wso?WSDL',
+ soapHeaders: {
+ alias: 'header',
+ namespace: 'http://foo.com',
+ headers: {
+ MyHeader: {
+ UserName: 'user',
+ Password: 'password'
+ }
+ }
+ }
+ })
+ }
+ ]
+ })
+ ```
+
+- Updated dependencies []:
+ - @graphql-mesh/store@0.103.11
+
## 0.103.10
### Patch Changes
diff --git a/packages/legacy/types/package.json b/packages/legacy/types/package.json
index a90d73d6c3054..95170bc9568ac 100644
--- a/packages/legacy/types/package.json
+++ b/packages/legacy/types/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/types",
- "version": "0.103.10",
+ "version": "0.103.11",
"type": "module",
"repository": {
"type": "git",
@@ -35,7 +35,7 @@
"graphql": "*"
},
"dependencies": {
- "@graphql-mesh/store": "^0.103.10",
+ "@graphql-mesh/store": "^0.103.11",
"@graphql-tools/batch-delegate": "^9.0.10",
"@graphql-tools/delegate": "^10.0.28",
"@graphql-tools/utils": "^10.6.0",
diff --git a/packages/legacy/urql/CHANGELOG.md b/packages/legacy/urql/CHANGELOG.md
index a815602f07538..05681c47eb15f 100644
--- a/packages/legacy/urql/CHANGELOG.md
+++ b/packages/legacy/urql/CHANGELOG.md
@@ -1,5 +1,12 @@
# @graphql-mesh/urql-exchange
+## 0.105.12
+
+### Patch Changes
+
+- Updated dependencies []:
+ - @graphql-mesh/runtime@0.105.12
+
## 0.105.11
### Patch Changes
diff --git a/packages/legacy/urql/package.json b/packages/legacy/urql/package.json
index 969ef4569e8c6..bf11ea2a8352a 100644
--- a/packages/legacy/urql/package.json
+++ b/packages/legacy/urql/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/urql-exchange",
- "version": "0.105.11",
+ "version": "0.105.12",
"type": "module",
"repository": {
"type": "git",
@@ -36,7 +36,7 @@
"graphql": "^15.2.0 || ^16.0.0"
},
"dependencies": {
- "@graphql-mesh/runtime": "^0.105.11",
+ "@graphql-mesh/runtime": "^0.105.12",
"@graphql-tools/utils": "^10.6.0",
"tslib": "^2.4.0",
"value-or-promise": "^1.0.12",
diff --git a/packages/legacy/utils/CHANGELOG.md b/packages/legacy/utils/CHANGELOG.md
index ae5402d5badbf..092e8f1e86b78 100644
--- a/packages/legacy/utils/CHANGELOG.md
+++ b/packages/legacy/utils/CHANGELOG.md
@@ -1,5 +1,17 @@
# @graphql-mesh/utils
+## 0.103.11
+
+### Patch Changes
+
+- [#8226](https://github.com/ardatan/graphql-mesh/pull/8226)
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)
+ Thanks [@iamchanii](https://github.com/iamchanii)! - Handle transformed gRPC sources correctly
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1)]:
+ - @graphql-mesh/types@0.103.11
+
## 0.103.10
### Patch Changes
diff --git a/packages/legacy/utils/package.json b/packages/legacy/utils/package.json
index 501996f01eacb..fb443bdd44c20 100644
--- a/packages/legacy/utils/package.json
+++ b/packages/legacy/utils/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/utils",
- "version": "0.103.10",
+ "version": "0.103.11",
"type": "module",
"repository": {
"type": "git",
@@ -37,7 +37,7 @@
"dependencies": {
"@graphql-mesh/cross-helpers": "^0.4.9",
"@graphql-mesh/string-interpolation": "^0.5.7",
- "@graphql-mesh/types": "^0.103.10",
+ "@graphql-mesh/types": "^0.103.11",
"@graphql-tools/batch-delegate": "^9.0.16",
"@graphql-tools/delegate": "^10.0.28",
"@graphql-tools/utils": "^10.6.0",
diff --git a/packages/loaders/json-schema/CHANGELOG.md b/packages/loaders/json-schema/CHANGELOG.md
index 4b40b3c15f6df..adab0ec10a12d 100644
--- a/packages/loaders/json-schema/CHANGELOG.md
+++ b/packages/loaders/json-schema/CHANGELOG.md
@@ -1,5 +1,16 @@
# @omnigraph/json-schema
+## 0.108.11
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+ - @graphql-mesh/transport-rest@0.8.11
+
## 0.108.10
### Patch Changes
diff --git a/packages/loaders/json-schema/package.json b/packages/loaders/json-schema/package.json
index c19c0cf1e5efb..1e1aac703856d 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.108.10",
+ "version": "0.108.11",
"type": "module",
"repository": {
"type": "git",
@@ -38,9 +38,9 @@
"@graphql-mesh/cross-helpers": "^0.4.9",
"@graphql-mesh/string-interpolation": "0.5.7",
"@graphql-mesh/transport-common": "^0.7.13",
- "@graphql-mesh/transport-rest": "^0.8.10",
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/transport-rest": "^0.8.11",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"@graphql-tools/delegate": "^10.0.28",
"@graphql-tools/utils": "^10.6.0",
"@json-schema-tools/meta-schema": "1.7.5",
diff --git a/packages/loaders/mysql/CHANGELOG.md b/packages/loaders/mysql/CHANGELOG.md
index 5334b92f558c0..0a2461b5e9f98 100644
--- a/packages/loaders/mysql/CHANGELOG.md
+++ b/packages/loaders/mysql/CHANGELOG.md
@@ -1,5 +1,16 @@
# @omnigraph/mysql
+## 0.8.11
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+ - @graphql-mesh/transport-mysql@0.8.11
+
## 0.8.10
### Patch Changes
diff --git a/packages/loaders/mysql/package.json b/packages/loaders/mysql/package.json
index c60bfb25cb7f9..f0b91f1cb5bae 100644
--- a/packages/loaders/mysql/package.json
+++ b/packages/loaders/mysql/package.json
@@ -1,6 +1,6 @@
{
"name": "@omnigraph/mysql",
- "version": "0.8.10",
+ "version": "0.8.11",
"type": "module",
"repository": {
"type": "git",
@@ -37,9 +37,9 @@
"dependencies": {
"@graphql-mesh/cross-helpers": "^0.4.9",
"@graphql-mesh/string-interpolation": "^0.5.7",
- "@graphql-mesh/transport-mysql": "^0.8.10",
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/transport-mysql": "^0.8.11",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"@graphql-tools/delegate": "^10.0.28",
"@graphql-tools/utils": "^10.6.0",
"graphql-compose": "^9.0.11",
diff --git a/packages/loaders/neo4j/CHANGELOG.md b/packages/loaders/neo4j/CHANGELOG.md
index 8ffc68667c822..0c737b2c1316c 100644
--- a/packages/loaders/neo4j/CHANGELOG.md
+++ b/packages/loaders/neo4j/CHANGELOG.md
@@ -1,5 +1,14 @@
# @omnigraph/neo4j
+## 0.9.11
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/transport-neo4j@0.8.11
+
## 0.9.10
### Patch Changes
diff --git a/packages/loaders/neo4j/package.json b/packages/loaders/neo4j/package.json
index ed98f766687fa..cf68683671f90 100644
--- a/packages/loaders/neo4j/package.json
+++ b/packages/loaders/neo4j/package.json
@@ -1,6 +1,6 @@
{
"name": "@omnigraph/neo4j",
- "version": "0.9.10",
+ "version": "0.9.11",
"type": "module",
"repository": {
"type": "git",
@@ -35,8 +35,8 @@
"graphql": "*"
},
"dependencies": {
- "@graphql-mesh/transport-neo4j": "^0.8.10",
- "@graphql-mesh/types": "^0.103.10",
+ "@graphql-mesh/transport-neo4j": "^0.8.11",
+ "@graphql-mesh/types": "^0.103.11",
"@graphql-tools/delegate": "^10.0.28",
"@graphql-tools/schema": "^10.0.5",
"@neo4j/introspector": "^4.0.0",
diff --git a/packages/loaders/odata/CHANGELOG.md b/packages/loaders/odata/CHANGELOG.md
index 2699d6f138c17..41cb1c409a970 100644
--- a/packages/loaders/odata/CHANGELOG.md
+++ b/packages/loaders/odata/CHANGELOG.md
@@ -1,5 +1,16 @@
# @omnigraph/odata
+## 0.1.11
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+ - @graphql-mesh/store@0.103.11
+
## 0.1.10
### Patch Changes
diff --git a/packages/loaders/odata/package.json b/packages/loaders/odata/package.json
index a2d86a2d610e6..66105e777da5a 100644
--- a/packages/loaders/odata/package.json
+++ b/packages/loaders/odata/package.json
@@ -1,6 +1,6 @@
{
"name": "@omnigraph/odata",
- "version": "0.1.10",
+ "version": "0.1.11",
"type": "module",
"repository": {
"type": "git",
@@ -36,10 +36,10 @@
},
"dependencies": {
"@graphql-mesh/cross-helpers": "^0.4.9",
- "@graphql-mesh/store": "^0.103.10",
+ "@graphql-mesh/store": "^0.103.11",
"@graphql-mesh/string-interpolation": "^0.5.7",
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"@graphql-tools/delegate": "^10.0.28",
"@graphql-tools/utils": "^10.6.0",
"@whatwg-node/fetch": "^0.10.0",
diff --git a/packages/loaders/openapi/CHANGELOG.md b/packages/loaders/openapi/CHANGELOG.md
index 62f2949d6d159..0b887f82eb954 100644
--- a/packages/loaders/openapi/CHANGELOG.md
+++ b/packages/loaders/openapi/CHANGELOG.md
@@ -1,5 +1,17 @@
# @omnigraph/openapi
+## 0.108.13
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+ - @omnigraph/json-schema@0.108.11
+ - @graphql-mesh/fusion-composition@0.7.17
+
## 0.108.12
### Patch Changes
diff --git a/packages/loaders/openapi/package.json b/packages/loaders/openapi/package.json
index 4fee576dc7116..9cfba92c0405f 100644
--- a/packages/loaders/openapi/package.json
+++ b/packages/loaders/openapi/package.json
@@ -1,6 +1,6 @@
{
"name": "@omnigraph/openapi",
- "version": "0.108.12",
+ "version": "0.108.13",
"type": "module",
"repository": {
"type": "git",
@@ -36,12 +36,12 @@
},
"dependencies": {
"@graphql-mesh/cross-helpers": "^0.4.9",
- "@graphql-mesh/fusion-composition": "^0.7.16",
+ "@graphql-mesh/fusion-composition": "^0.7.17",
"@graphql-mesh/string-interpolation": "^0.5.7",
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"@graphql-tools/utils": "^10.6.4",
- "@omnigraph/json-schema": "^0.108.10",
+ "@omnigraph/json-schema": "^0.108.11",
"change-case": "^4.1.2",
"json-machete": "^0.97.5",
"openapi-types": "^12.1.0",
diff --git a/packages/loaders/raml/CHANGELOG.md b/packages/loaders/raml/CHANGELOG.md
index 57171403db60a..c9d1207308dc8 100644
--- a/packages/loaders/raml/CHANGELOG.md
+++ b/packages/loaders/raml/CHANGELOG.md
@@ -1,5 +1,16 @@
# @omnigraph/raml
+## 0.108.11
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+ - @omnigraph/json-schema@0.108.11
+
## 0.108.10
### Patch Changes
diff --git a/packages/loaders/raml/package.json b/packages/loaders/raml/package.json
index dd2f5501f8b82..f4785d53e063b 100644
--- a/packages/loaders/raml/package.json
+++ b/packages/loaders/raml/package.json
@@ -1,6 +1,6 @@
{
"name": "@omnigraph/raml",
- "version": "0.108.10",
+ "version": "0.108.11",
"type": "module",
"repository": {
"type": "git",
@@ -38,11 +38,11 @@
"@ardatan/raml-1-parser": "1.1.69",
"@graphql-mesh/cross-helpers": "^0.4.9",
"@graphql-mesh/string-interpolation": "0.5.7",
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"@graphql-tools/delegate": "^10.0.28",
"@graphql-tools/utils": "^10.6.0",
- "@omnigraph/json-schema": "0.108.10",
+ "@omnigraph/json-schema": "0.108.11",
"@whatwg-node/fetch": "^0.10.0",
"change-case": "4.1.2",
"json-machete": "0.97.5",
diff --git a/packages/loaders/soap/CHANGELOG.md b/packages/loaders/soap/CHANGELOG.md
index 1accf1862d7f8..2ba33c6ce87be 100644
--- a/packages/loaders/soap/CHANGELOG.md
+++ b/packages/loaders/soap/CHANGELOG.md
@@ -1,5 +1,97 @@
# @omnigraph/soap
+## 0.105.11
+
+### Patch Changes
+
+- [#8196](https://github.com/ardatan/graphql-mesh/pull/8196)
+ [`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1)
+ Thanks [@ardatan](https://github.com/ardatan)! - dependencies updates:
+
+ - Added dependency
+ [`@graphql-mesh/transport-common@^0.7.25` ↗︎](https://www.npmjs.com/package/@graphql-mesh/transport-common/v/0.7.25)
+ (to `dependencies`)
+
+- [#8196](https://github.com/ardatan/graphql-mesh/pull/8196)
+ [`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1)
+ Thanks [@ardatan](https://github.com/ardatan)! - - You can now choose the name of the alias you
+ want to use for SOAP body;
+
+ ```ts filename="mesh.config.ts" {4}
+ import { defineConfig } from '@graphql-mesh/compose-cli'
+
+ export const composeConfig = defineConfig({
+ sources: [
+ {
+ sourceHandler: loadSOAPSubgraph('CountryInfo', {
+ source:
+ 'http://webservices.oorsprong.org/websamples.countryinfo/CountryInfoService.wso?WSDL',
+ bodyAlias: 'my-body'
+ })
+ }
+ ]
+ })
+ ```
+
+ - Then it will generate a body like below by using the alias;
+
+ ```xml
+
+
+
+ baz
+
+
+
+ ```
+
+ If you want to add SOAP headers to the request body like below;
+
+ ```xml
+
+
+
+ user
+ password
+
+
+ ```
+
+ You can add the headers to the configuration like below;
+
+ ```ts filename="mesh.config.ts" {2,7-9}
+ import { defineConfig } from '@graphql-mesh/compose-cli'
+ import { loadSOAPSubgraph } from '@omnigraph/soap'
+
+ export const composeConfig = defineConfig({
+ subgraphs: [
+ {
+ sourceHandler: loadSOAPSubgraph('CountryInfo', {
+ source:
+ 'http://webservices.oorsprong.org/websamples.countryinfo/CountryInfoService.wso?WSDL',
+ soapHeaders: {
+ alias: 'header',
+ namespace: 'http://foo.com',
+ headers: {
+ MyHeader: {
+ UserName: 'user',
+ Password: 'password'
+ }
+ }
+ }
+ })
+ }
+ ]
+ })
+ ```
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/transport-soap@0.8.11
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+
## 0.105.10
### Patch Changes
diff --git a/packages/loaders/soap/package.json b/packages/loaders/soap/package.json
index c008b11bb6115..5a2b3346c3642 100644
--- a/packages/loaders/soap/package.json
+++ b/packages/loaders/soap/package.json
@@ -1,6 +1,6 @@
{
"name": "@omnigraph/soap",
- "version": "0.105.10",
+ "version": "0.105.11",
"type": "module",
"repository": {
"type": "git",
@@ -38,9 +38,9 @@
"@graphql-mesh/cross-helpers": "^0.4.9",
"@graphql-mesh/string-interpolation": "^0.5.7",
"@graphql-mesh/transport-common": "^0.7.25",
- "@graphql-mesh/transport-soap": "^0.8.10",
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/transport-soap": "^0.8.11",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"@graphql-tools/utils": "^10.6.0",
"@whatwg-node/fetch": "^0.10.0",
"fast-xml-parser": "^4.5.0",
diff --git a/packages/loaders/sqlite/CHANGELOG.md b/packages/loaders/sqlite/CHANGELOG.md
index e8c370bdcc977..c0ed539ea9129 100644
--- a/packages/loaders/sqlite/CHANGELOG.md
+++ b/packages/loaders/sqlite/CHANGELOG.md
@@ -1,5 +1,13 @@
# @omnigraph/sqlite
+## 0.7.11
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1)]:
+ - @graphql-mesh/types@0.103.11
+
## 0.7.10
### Patch Changes
diff --git a/packages/loaders/sqlite/package.json b/packages/loaders/sqlite/package.json
index 983a61fa94e9d..548c0148fa440 100644
--- a/packages/loaders/sqlite/package.json
+++ b/packages/loaders/sqlite/package.json
@@ -1,6 +1,6 @@
{
"name": "@omnigraph/sqlite",
- "version": "0.7.10",
+ "version": "0.7.11",
"type": "module",
"repository": {
"type": "git",
@@ -36,7 +36,7 @@
},
"dependencies": {
"@graphql-mesh/cross-helpers": "^0.4.9",
- "@graphql-mesh/types": "^0.103.10",
+ "@graphql-mesh/types": "^0.103.11",
"@graphql-tools/delegate": "^10.0.28",
"tslib": "^2.4.0"
},
diff --git a/packages/loaders/thrift/CHANGELOG.md b/packages/loaders/thrift/CHANGELOG.md
index d34022c65f50d..4e0d9f570e1c6 100644
--- a/packages/loaders/thrift/CHANGELOG.md
+++ b/packages/loaders/thrift/CHANGELOG.md
@@ -1,5 +1,16 @@
# @omnigraph/thrift
+## 0.8.11
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+ - @graphql-mesh/transport-thrift@0.8.11
+
## 0.8.10
### Patch Changes
diff --git a/packages/loaders/thrift/package.json b/packages/loaders/thrift/package.json
index 214dbbfd98b9a..48a8965441db2 100644
--- a/packages/loaders/thrift/package.json
+++ b/packages/loaders/thrift/package.json
@@ -1,6 +1,6 @@
{
"name": "@omnigraph/thrift",
- "version": "0.8.10",
+ "version": "0.8.11",
"type": "module",
"repository": {
"type": "git",
@@ -38,9 +38,9 @@
"@creditkarma/thrift-parser": "^2.0.0",
"@creditkarma/thrift-server-core": "^1.0.4",
"@graphql-mesh/cross-helpers": "^0.4.9",
- "@graphql-mesh/transport-thrift": "^0.8.10",
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/transport-thrift": "^0.8.11",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"@whatwg-node/fetch": "^0.10.0",
"graphql-scalars": "^1.22.4",
"thrift": "^0.21.0"
diff --git a/packages/plugins/deduplicate-request/CHANGELOG.md b/packages/plugins/deduplicate-request/CHANGELOG.md
index 64e83def6f3cb..74a5fc264bb26 100644
--- a/packages/plugins/deduplicate-request/CHANGELOG.md
+++ b/packages/plugins/deduplicate-request/CHANGELOG.md
@@ -1,5 +1,15 @@
# @graphql-mesh/plugin-deduplicate-request
+## 0.103.11
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+
## 0.103.10
### Patch Changes
diff --git a/packages/plugins/deduplicate-request/package.json b/packages/plugins/deduplicate-request/package.json
index 3e6c7aeb8e567..00fbc02f099e8 100644
--- a/packages/plugins/deduplicate-request/package.json
+++ b/packages/plugins/deduplicate-request/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/plugin-deduplicate-request",
- "version": "0.103.10",
+ "version": "0.103.11",
"type": "module",
"repository": {
"type": "git",
@@ -35,8 +35,8 @@
"graphql": "*"
},
"dependencies": {
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"@graphql-tools/utils": "^10.6.0",
"tslib": "^2.4.0"
},
diff --git a/packages/plugins/hive/CHANGELOG.md b/packages/plugins/hive/CHANGELOG.md
index 80410db69bc76..116fd48dce95a 100644
--- a/packages/plugins/hive/CHANGELOG.md
+++ b/packages/plugins/hive/CHANGELOG.md
@@ -1,5 +1,15 @@
# @graphql-mesh/plugin-hive
+## 0.103.11
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+
## 0.103.10
### Patch Changes
diff --git a/packages/plugins/hive/package.json b/packages/plugins/hive/package.json
index 3982e984e298c..ba613cf9c6599 100644
--- a/packages/plugins/hive/package.json
+++ b/packages/plugins/hive/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/plugin-hive",
- "version": "0.103.10",
+ "version": "0.103.11",
"type": "module",
"repository": {
"type": "git",
@@ -39,8 +39,8 @@
"@graphql-hive/yoga": "^0.39.0",
"@graphql-mesh/cross-helpers": "^0.4.9",
"@graphql-mesh/string-interpolation": "0.5.7",
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"tslib": "^2.4.0"
},
"publishConfig": {
diff --git a/packages/plugins/http-cache/CHANGELOG.md b/packages/plugins/http-cache/CHANGELOG.md
index b4ea913fbd146..fc65eb9559900 100644
--- a/packages/plugins/http-cache/CHANGELOG.md
+++ b/packages/plugins/http-cache/CHANGELOG.md
@@ -1,5 +1,15 @@
# @graphql-mesh/plugin-http-cache
+## 0.103.12
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+
## 0.103.11
### Patch Changes
diff --git a/packages/plugins/http-cache/package.json b/packages/plugins/http-cache/package.json
index b6fadbafbf8ff..a331cba0ad0ed 100644
--- a/packages/plugins/http-cache/package.json
+++ b/packages/plugins/http-cache/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/plugin-http-cache",
- "version": "0.103.11",
+ "version": "0.103.12",
"type": "module",
"repository": {
"type": "git",
@@ -35,8 +35,8 @@
"graphql": "*"
},
"dependencies": {
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"@whatwg-node/fetch": "^0.10.0",
"http-cache-semantics": "4.1.1",
"tslib": "^2.4.0"
diff --git a/packages/plugins/http-details-extensions/CHANGELOG.md b/packages/plugins/http-details-extensions/CHANGELOG.md
index 78e5459b0914e..e2a0b7690c101 100644
--- a/packages/plugins/http-details-extensions/CHANGELOG.md
+++ b/packages/plugins/http-details-extensions/CHANGELOG.md
@@ -1,5 +1,15 @@
# @graphql-mesh/plugin-http-details-extensions
+## 0.103.11
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+
## 0.103.10
### Patch Changes
diff --git a/packages/plugins/http-details-extensions/package.json b/packages/plugins/http-details-extensions/package.json
index 0c4ab8ec7132e..e02c0ac97bfc9 100644
--- a/packages/plugins/http-details-extensions/package.json
+++ b/packages/plugins/http-details-extensions/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/plugin-http-details-extensions",
- "version": "0.103.10",
+ "version": "0.103.11",
"type": "module",
"repository": {
"type": "git",
@@ -36,8 +36,8 @@
},
"dependencies": {
"@envelop/core": "5.0.2",
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"@whatwg-node/fetch": "^0.10.0",
"tslib": "^2.4.0"
},
diff --git a/packages/plugins/jit/CHANGELOG.md b/packages/plugins/jit/CHANGELOG.md
index c44b4dbc8ccd7..56573fae7cd8d 100644
--- a/packages/plugins/jit/CHANGELOG.md
+++ b/packages/plugins/jit/CHANGELOG.md
@@ -1,5 +1,13 @@
# @graphql-mesh/plugin-jit
+## 0.1.11
+
+### Patch Changes
+
+- Updated dependencies
+ [[`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/utils@0.103.11
+
## 0.1.10
### Patch Changes
diff --git a/packages/plugins/jit/package.json b/packages/plugins/jit/package.json
index 0f20d46247765..65f59086cc869 100644
--- a/packages/plugins/jit/package.json
+++ b/packages/plugins/jit/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/plugin-jit",
- "version": "0.1.10",
+ "version": "0.1.11",
"type": "module",
"repository": {
"type": "git",
@@ -36,7 +36,7 @@
},
"dependencies": {
"@envelop/core": "^5.0.2",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/utils": "^0.103.11",
"@graphql-tools/utils": "^10.6.0",
"graphql-jit": "^0.8.7",
"tslib": "^2.4.0"
diff --git a/packages/plugins/jwt-auth/CHANGELOG.md b/packages/plugins/jwt-auth/CHANGELOG.md
index bb5a6f5905089..007e5ac319d70 100644
--- a/packages/plugins/jwt-auth/CHANGELOG.md
+++ b/packages/plugins/jwt-auth/CHANGELOG.md
@@ -1,5 +1,15 @@
# @graphql-mesh/plugin-jwt-auth
+## 1.4.1
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+
## 1.4.0
### Minor Changes
diff --git a/packages/plugins/jwt-auth/package.json b/packages/plugins/jwt-auth/package.json
index f1e64197dcb56..397e21d52881b 100644
--- a/packages/plugins/jwt-auth/package.json
+++ b/packages/plugins/jwt-auth/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/plugin-jwt-auth",
- "version": "1.4.0",
+ "version": "1.4.1",
"type": "module",
"repository": {
"type": "git",
@@ -35,8 +35,8 @@
"graphql": "*"
},
"dependencies": {
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"@graphql-yoga/plugin-jwt": "^3.4.9",
"tslib": "^2.4.0"
},
diff --git a/packages/plugins/live-query/CHANGELOG.md b/packages/plugins/live-query/CHANGELOG.md
index ac24f02575807..202aa0484eb85 100644
--- a/packages/plugins/live-query/CHANGELOG.md
+++ b/packages/plugins/live-query/CHANGELOG.md
@@ -1,5 +1,15 @@
# @graphql-mesh/plugin-live-query
+## 0.103.11
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+
## 0.103.10
### Patch Changes
diff --git a/packages/plugins/live-query/package.json b/packages/plugins/live-query/package.json
index 202aa1600a87e..5dd9a710bed8e 100644
--- a/packages/plugins/live-query/package.json
+++ b/packages/plugins/live-query/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/plugin-live-query",
- "version": "0.103.10",
+ "version": "0.103.11",
"type": "module",
"repository": {
"type": "git",
@@ -39,8 +39,8 @@
"@envelop/live-query": "7.0.0",
"@graphql-mesh/cross-helpers": "^0.4.9",
"@graphql-mesh/string-interpolation": "0.5.7",
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"@n1ru4l/in-memory-live-query-store": "0.10.0",
"tslib": "^2.4.0"
},
diff --git a/packages/plugins/mock/CHANGELOG.md b/packages/plugins/mock/CHANGELOG.md
index 6c6347b9b3cf4..071842f976dac 100644
--- a/packages/plugins/mock/CHANGELOG.md
+++ b/packages/plugins/mock/CHANGELOG.md
@@ -1,5 +1,15 @@
# @graphql-mesh/plugin-mock
+## 0.103.12
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+
## 0.103.11
### Patch Changes
diff --git a/packages/plugins/mock/package.json b/packages/plugins/mock/package.json
index c26240d86ba65..95c6a86f66af4 100644
--- a/packages/plugins/mock/package.json
+++ b/packages/plugins/mock/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/plugin-mock",
- "version": "0.103.11",
+ "version": "0.103.12",
"type": "module",
"repository": {
"type": "git",
@@ -37,8 +37,8 @@
"dependencies": {
"@graphql-mesh/cross-helpers": "^0.4.9",
"@graphql-mesh/string-interpolation": "^0.5.7",
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"@graphql-tools/mock": "^9.0.3",
"@graphql-tools/schema": "^10.0.5",
"@graphql-tools/utils": "^10.6.0",
@@ -48,7 +48,7 @@
},
"devDependencies": {
"@envelop/core": "5.0.2",
- "@graphql-mesh/cache-localforage": "0.103.11",
+ "@graphql-mesh/cache-localforage": "0.103.12",
"@types/faker": "5.5.9"
},
"publishConfig": {
diff --git a/packages/plugins/newrelic/CHANGELOG.md b/packages/plugins/newrelic/CHANGELOG.md
index 138dc90e49f62..76c3a23521294 100644
--- a/packages/plugins/newrelic/CHANGELOG.md
+++ b/packages/plugins/newrelic/CHANGELOG.md
@@ -1,5 +1,15 @@
# @graphql-mesh/plugin-newrelic
+## 0.103.11
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+
## 0.103.10
### Patch Changes
diff --git a/packages/plugins/newrelic/package.json b/packages/plugins/newrelic/package.json
index 4eb2bb07766af..8da558d4d7cea 100644
--- a/packages/plugins/newrelic/package.json
+++ b/packages/plugins/newrelic/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/plugin-newrelic",
- "version": "0.103.10",
+ "version": "0.103.11",
"type": "module",
"repository": {
"type": "git",
@@ -40,8 +40,8 @@
"@envelop/newrelic": "^7.0.0",
"@graphql-mesh/cross-helpers": "^0.4.9",
"@graphql-mesh/string-interpolation": "^0.5.7",
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"graphql-yoga": "^5.10.4",
"tslib": "^2.4.0"
},
diff --git a/packages/plugins/operation-field-permissions/CHANGELOG.md b/packages/plugins/operation-field-permissions/CHANGELOG.md
index 6098b18d1ccc1..8ce3639dba9dd 100644
--- a/packages/plugins/operation-field-permissions/CHANGELOG.md
+++ b/packages/plugins/operation-field-permissions/CHANGELOG.md
@@ -1,5 +1,13 @@
# @graphql-mesh/plugin-operation-field-permissions
+## 0.103.11
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1)]:
+ - @graphql-mesh/types@0.103.11
+
## 0.103.10
### Patch Changes
diff --git a/packages/plugins/operation-field-permissions/package.json b/packages/plugins/operation-field-permissions/package.json
index 0b31022b322b1..472b3a9065b9a 100644
--- a/packages/plugins/operation-field-permissions/package.json
+++ b/packages/plugins/operation-field-permissions/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/plugin-operation-field-permissions",
- "version": "0.103.10",
+ "version": "0.103.11",
"type": "module",
"repository": {
"type": "git",
@@ -37,7 +37,7 @@
"dependencies": {
"@envelop/operation-field-permissions": "6.0.0",
"@graphql-mesh/cross-helpers": "^0.4.9",
- "@graphql-mesh/types": "^0.103.10",
+ "@graphql-mesh/types": "^0.103.11",
"tslib": "^2.4.0"
},
"publishConfig": {
diff --git a/packages/plugins/operation-headers/CHANGELOG.md b/packages/plugins/operation-headers/CHANGELOG.md
index c7ef360d62a0b..e7115cf707a5b 100644
--- a/packages/plugins/operation-headers/CHANGELOG.md
+++ b/packages/plugins/operation-headers/CHANGELOG.md
@@ -1,5 +1,15 @@
# @graphql-mesh/plugin-operation-headers
+## 1.3.12
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+
## 1.3.11
### Patch Changes
diff --git a/packages/plugins/operation-headers/package.json b/packages/plugins/operation-headers/package.json
index efe7f42aa6aa5..6d331d2cc2a45 100644
--- a/packages/plugins/operation-headers/package.json
+++ b/packages/plugins/operation-headers/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/plugin-operation-headers",
- "version": "1.3.11",
+ "version": "1.3.12",
"type": "module",
"repository": {
"type": "git",
@@ -36,8 +36,8 @@
},
"dependencies": {
"@graphql-hive/gateway-runtime": "^1.3.3",
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"tslib": "^2.4.0"
},
"publishConfig": {
diff --git a/packages/plugins/rate-limit/CHANGELOG.md b/packages/plugins/rate-limit/CHANGELOG.md
index 95a2d52f3a8f9..8ba8677ca7846 100644
--- a/packages/plugins/rate-limit/CHANGELOG.md
+++ b/packages/plugins/rate-limit/CHANGELOG.md
@@ -1,5 +1,15 @@
# @graphql-mesh/plugin-rate-limit
+## 0.103.11
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+
## 0.103.10
### Patch Changes
diff --git a/packages/plugins/rate-limit/package.json b/packages/plugins/rate-limit/package.json
index 0b66a002d6e67..79507a6408dfc 100644
--- a/packages/plugins/rate-limit/package.json
+++ b/packages/plugins/rate-limit/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/plugin-rate-limit",
- "version": "0.103.10",
+ "version": "0.103.11",
"type": "module",
"repository": {
"type": "git",
@@ -38,8 +38,8 @@
"@envelop/rate-limiter": "^6.2.1",
"@graphql-mesh/cross-helpers": "^0.4.9",
"@graphql-mesh/string-interpolation": "0.5.7",
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"@graphql-tools/utils": "^10.6.0",
"tslib": "^2.4.0"
},
diff --git a/packages/plugins/response-cache/CHANGELOG.md b/packages/plugins/response-cache/CHANGELOG.md
index efb98016469c0..9674c7d57a294 100644
--- a/packages/plugins/response-cache/CHANGELOG.md
+++ b/packages/plugins/response-cache/CHANGELOG.md
@@ -1,5 +1,15 @@
# @graphql-mesh/plugin-response-cache
+## 0.103.11
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+
## 0.103.10
### Patch Changes
diff --git a/packages/plugins/response-cache/package.json b/packages/plugins/response-cache/package.json
index 4fd08051aac6d..ae464922f10c6 100644
--- a/packages/plugins/response-cache/package.json
+++ b/packages/plugins/response-cache/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/plugin-response-cache",
- "version": "0.103.10",
+ "version": "0.103.11",
"type": "module",
"repository": {
"type": "git",
@@ -39,8 +39,8 @@
"@envelop/response-cache": "^6.1.1",
"@graphql-mesh/cross-helpers": "^0.4.9",
"@graphql-mesh/string-interpolation": "0.5.7",
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"@graphql-tools/utils": "^10.6.2",
"@graphql-yoga/plugin-response-cache": "^3.1.1",
"graphql-yoga": "^5.7.0",
diff --git a/packages/plugins/snapshot/CHANGELOG.md b/packages/plugins/snapshot/CHANGELOG.md
index e9d94cd77fb90..ef7afc578af80 100644
--- a/packages/plugins/snapshot/CHANGELOG.md
+++ b/packages/plugins/snapshot/CHANGELOG.md
@@ -1,5 +1,15 @@
# @graphql-mesh/plugin-snapshot
+## 0.103.11
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+
## 0.103.10
### Patch Changes
diff --git a/packages/plugins/snapshot/package.json b/packages/plugins/snapshot/package.json
index cf49fa0b503d5..626ce61dbec11 100644
--- a/packages/plugins/snapshot/package.json
+++ b/packages/plugins/snapshot/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/plugin-snapshot",
- "version": "0.103.10",
+ "version": "0.103.11",
"type": "module",
"repository": {
"type": "git",
@@ -37,8 +37,8 @@
"dependencies": {
"@graphql-mesh/cross-helpers": "^0.4.9",
"@graphql-mesh/string-interpolation": "0.5.7",
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"@whatwg-node/fetch": "^0.10.0",
"minimatch": "10.0.1",
"tslib": "^2.4.0"
diff --git a/packages/plugins/statsd/CHANGELOG.md b/packages/plugins/statsd/CHANGELOG.md
index f79e07fd429e8..c1bf953ae6c8e 100644
--- a/packages/plugins/statsd/CHANGELOG.md
+++ b/packages/plugins/statsd/CHANGELOG.md
@@ -1,5 +1,15 @@
# @graphql-mesh/plugin-statsd
+## 0.103.11
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+
## 0.103.10
### Patch Changes
diff --git a/packages/plugins/statsd/package.json b/packages/plugins/statsd/package.json
index e11d2bfc5982b..b9ad5041afe76 100644
--- a/packages/plugins/statsd/package.json
+++ b/packages/plugins/statsd/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/plugin-statsd",
- "version": "0.103.10",
+ "version": "0.103.11",
"type": "module",
"repository": {
"type": "git",
@@ -36,8 +36,8 @@
},
"dependencies": {
"@envelop/statsd": "5.0.1",
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"hot-shots": "^10.2.1",
"tslib": "^2.4.0"
},
diff --git a/packages/transports/grpc/CHANGELOG.md b/packages/transports/grpc/CHANGELOG.md
index 3cc823229c899..8ae94a2c11229 100644
--- a/packages/transports/grpc/CHANGELOG.md
+++ b/packages/transports/grpc/CHANGELOG.md
@@ -1,5 +1,19 @@
# @graphql-mesh/transport-grpc
+## 0.2.1
+
+### Patch Changes
+
+- [#8226](https://github.com/ardatan/graphql-mesh/pull/8226)
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)
+ Thanks [@iamchanii](https://github.com/iamchanii)! - Handle transformed gRPC sources correctly
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+
## 0.2.0
### Minor Changes
diff --git a/packages/transports/grpc/package.json b/packages/transports/grpc/package.json
index 0002710822851..a1865b7be6a5a 100644
--- a/packages/transports/grpc/package.json
+++ b/packages/transports/grpc/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/transport-grpc",
- "version": "0.2.0",
+ "version": "0.2.1",
"type": "module",
"repository": {
"type": "git",
@@ -38,8 +38,8 @@
"@graphql-mesh/cross-helpers": "^0.4.9",
"@graphql-mesh/string-interpolation": "^0.5.7",
"@graphql-mesh/transport-common": "^0.7.13",
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"@graphql-tools/utils": "^10.6.0",
"@grpc/grpc-js": "^1.1.7",
"@grpc/proto-loader": "^0.7.8",
diff --git a/packages/transports/mysql/CHANGELOG.md b/packages/transports/mysql/CHANGELOG.md
index 675aee4af84bf..3a57373d50c5e 100644
--- a/packages/transports/mysql/CHANGELOG.md
+++ b/packages/transports/mysql/CHANGELOG.md
@@ -1,5 +1,15 @@
# @graphql-mesh/transport-mysql
+## 0.8.11
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+
## 0.8.10
### Patch Changes
diff --git a/packages/transports/mysql/package.json b/packages/transports/mysql/package.json
index cef8595b8c06e..5db8d3e209cad 100644
--- a/packages/transports/mysql/package.json
+++ b/packages/transports/mysql/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/transport-mysql",
- "version": "0.8.10",
+ "version": "0.8.11",
"type": "module",
"repository": {
"type": "git",
@@ -38,8 +38,8 @@
"@graphql-mesh/cross-helpers": "^0.4.9",
"@graphql-mesh/string-interpolation": "^0.5.7",
"@graphql-mesh/transport-common": "^0.7.13",
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"@graphql-tools/delegate": "^10.0.28",
"@graphql-tools/utils": "^10.6.0",
"@whatwg-node/fetch": "^0.10.0",
diff --git a/packages/transports/neo4j/CHANGELOG.md b/packages/transports/neo4j/CHANGELOG.md
index bd38d56442153..3dbe6cb8ca2f0 100644
--- a/packages/transports/neo4j/CHANGELOG.md
+++ b/packages/transports/neo4j/CHANGELOG.md
@@ -1,5 +1,15 @@
# @graphql-mesh/transport-neo4j
+## 0.8.11
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+
## 0.8.10
### Patch Changes
diff --git a/packages/transports/neo4j/package.json b/packages/transports/neo4j/package.json
index 14b6635004509..b0701c6ec65ca 100644
--- a/packages/transports/neo4j/package.json
+++ b/packages/transports/neo4j/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/transport-neo4j",
- "version": "0.8.10",
+ "version": "0.8.11",
"type": "module",
"repository": {
"type": "git",
@@ -37,8 +37,8 @@
"dependencies": {
"@graphql-mesh/cross-helpers": "^0.4.9",
"@graphql-mesh/transport-common": "^0.7.13",
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"@graphql-tools/delegate": "^10.0.28",
"@graphql-tools/utils": "^10.6.0",
"@neo4j/graphql": "^6.0.0",
diff --git a/packages/transports/odata/CHANGELOG.md b/packages/transports/odata/CHANGELOG.md
index bf6a4a037f861..842828e1b68ad 100644
--- a/packages/transports/odata/CHANGELOG.md
+++ b/packages/transports/odata/CHANGELOG.md
@@ -1,5 +1,12 @@
# @graphql-mesh/transport-odata
+## 0.1.11
+
+### Patch Changes
+
+- Updated dependencies []:
+ - @omnigraph/odata@0.1.11
+
## 0.1.10
### Patch Changes
diff --git a/packages/transports/odata/package.json b/packages/transports/odata/package.json
index 354eb906c57af..3cb4edc14cfe6 100644
--- a/packages/transports/odata/package.json
+++ b/packages/transports/odata/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/transport-odata",
- "version": "0.1.10",
+ "version": "0.1.11",
"type": "module",
"repository": {
"type": "git",
@@ -36,7 +36,7 @@
},
"dependencies": {
"@graphql-mesh/transport-common": "^0.7.13",
- "@omnigraph/odata": "^0.1.10",
+ "@omnigraph/odata": "^0.1.11",
"tslib": "^2.4.0"
},
"publishConfig": {
diff --git a/packages/transports/rest/CHANGELOG.md b/packages/transports/rest/CHANGELOG.md
index a65465263aac5..226358b797a7a 100644
--- a/packages/transports/rest/CHANGELOG.md
+++ b/packages/transports/rest/CHANGELOG.md
@@ -1,5 +1,15 @@
# @graphql-mesh/transport-rest
+## 0.8.11
+
+### Patch Changes
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+
## 0.8.10
### Patch Changes
diff --git a/packages/transports/rest/package.json b/packages/transports/rest/package.json
index 6a754e0bcfe80..83a86457baa30 100644
--- a/packages/transports/rest/package.json
+++ b/packages/transports/rest/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/transport-rest",
- "version": "0.8.10",
+ "version": "0.8.11",
"type": "module",
"repository": {
"type": "git",
@@ -38,8 +38,8 @@
"@graphql-mesh/cross-helpers": "^0.4.9",
"@graphql-mesh/string-interpolation": "^0.5.7",
"@graphql-mesh/transport-common": "^0.7.13",
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"@graphql-tools/utils": "^10.6.0",
"@whatwg-node/fetch": "^0.9.15 || ^0.10.0",
"dset": "^3.1.3",
diff --git a/packages/transports/soap/CHANGELOG.md b/packages/transports/soap/CHANGELOG.md
index 3f5891e882dae..88e72e0f4ca01 100644
--- a/packages/transports/soap/CHANGELOG.md
+++ b/packages/transports/soap/CHANGELOG.md
@@ -1,5 +1,88 @@
# @graphql-mesh/transport-soap
+## 0.8.11
+
+### Patch Changes
+
+- [#8196](https://github.com/ardatan/graphql-mesh/pull/8196)
+ [`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1)
+ Thanks [@ardatan](https://github.com/ardatan)! - - You can now choose the name of the alias you
+ want to use for SOAP body;
+
+ ```ts filename="mesh.config.ts" {4}
+ import { defineConfig } from '@graphql-mesh/compose-cli'
+
+ export const composeConfig = defineConfig({
+ sources: [
+ {
+ sourceHandler: loadSOAPSubgraph('CountryInfo', {
+ source:
+ 'http://webservices.oorsprong.org/websamples.countryinfo/CountryInfoService.wso?WSDL',
+ bodyAlias: 'my-body'
+ })
+ }
+ ]
+ })
+ ```
+
+ - Then it will generate a body like below by using the alias;
+
+ ```xml
+
+
+
+ baz
+
+
+
+ ```
+
+ If you want to add SOAP headers to the request body like below;
+
+ ```xml
+
+
+
+ user
+ password
+
+
+ ```
+
+ You can add the headers to the configuration like below;
+
+ ```ts filename="mesh.config.ts" {2,7-9}
+ import { defineConfig } from '@graphql-mesh/compose-cli'
+ import { loadSOAPSubgraph } from '@omnigraph/soap'
+
+ export const composeConfig = defineConfig({
+ subgraphs: [
+ {
+ sourceHandler: loadSOAPSubgraph('CountryInfo', {
+ source:
+ 'http://webservices.oorsprong.org/websamples.countryinfo/CountryInfoService.wso?WSDL',
+ soapHeaders: {
+ alias: 'header',
+ namespace: 'http://foo.com',
+ headers: {
+ MyHeader: {
+ UserName: 'user',
+ Password: 'password'
+ }
+ }
+ }
+ })
+ }
+ ]
+ })
+ ```
+
+- Updated dependencies
+ [[`3fc1f3e`](https://github.com/ardatan/graphql-mesh/commit/3fc1f3e046c02107d7fecf367756c7196fbe6ce1),
+ [`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/types@0.103.11
+ - @graphql-mesh/utils@0.103.11
+
## 0.8.10
### Patch Changes
diff --git a/packages/transports/soap/package.json b/packages/transports/soap/package.json
index 218bc15864a24..178f26f8ed9aa 100644
--- a/packages/transports/soap/package.json
+++ b/packages/transports/soap/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/transport-soap",
- "version": "0.8.10",
+ "version": "0.8.11",
"type": "module",
"repository": {
"type": "git",
@@ -38,8 +38,8 @@
"@graphql-mesh/cross-helpers": "^0.4.9",
"@graphql-mesh/string-interpolation": "^0.5.7",
"@graphql-mesh/transport-common": "^0.7.13",
- "@graphql-mesh/types": "^0.103.10",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/types": "^0.103.11",
+ "@graphql-mesh/utils": "^0.103.11",
"@graphql-tools/executor": "^1.3.2",
"@graphql-tools/utils": "^10.6.0",
"@whatwg-node/fetch": "^0.9.15 || ^0.10.0",
diff --git a/packages/transports/sqlite/CHANGELOG.md b/packages/transports/sqlite/CHANGELOG.md
index d228a8ae77cb8..2c98efb1825bd 100644
--- a/packages/transports/sqlite/CHANGELOG.md
+++ b/packages/transports/sqlite/CHANGELOG.md
@@ -1,5 +1,12 @@
# @graphql-mesh/transport-sqlite
+## 0.8.11
+
+### Patch Changes
+
+- Updated dependencies []:
+ - @omnigraph/sqlite@0.7.11
+
## 0.8.10
### Patch Changes
diff --git a/packages/transports/sqlite/package.json b/packages/transports/sqlite/package.json
index 9df147c391200..3049dd0fdf378 100644
--- a/packages/transports/sqlite/package.json
+++ b/packages/transports/sqlite/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/transport-sqlite",
- "version": "0.8.10",
+ "version": "0.8.11",
"type": "module",
"repository": {
"type": "git",
@@ -37,7 +37,7 @@
"dependencies": {
"@graphql-mesh/transport-common": "^0.7.13",
"@graphql-tools/utils": "^10.6.0",
- "@omnigraph/sqlite": "^0.7.10",
+ "@omnigraph/sqlite": "^0.7.11",
"tslib": "^2.4.0"
},
"publishConfig": {
diff --git a/packages/transports/thrift/CHANGELOG.md b/packages/transports/thrift/CHANGELOG.md
index d87e5e7e0d51a..a5ee475ad5765 100644
--- a/packages/transports/thrift/CHANGELOG.md
+++ b/packages/transports/thrift/CHANGELOG.md
@@ -1,5 +1,13 @@
# @graphql-mesh/transport-thrift
+## 0.8.11
+
+### Patch Changes
+
+- Updated dependencies
+ [[`4011203`](https://github.com/ardatan/graphql-mesh/commit/40112034a2e248eda94883a39a3f8682189f4288)]:
+ - @graphql-mesh/utils@0.103.11
+
## 0.8.10
### Patch Changes
diff --git a/packages/transports/thrift/package.json b/packages/transports/thrift/package.json
index 4d2d8e2448997..4a7c1903e08f9 100644
--- a/packages/transports/thrift/package.json
+++ b/packages/transports/thrift/package.json
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/transport-thrift",
- "version": "0.8.10",
+ "version": "0.8.11",
"type": "module",
"repository": {
"type": "git",
@@ -39,7 +39,7 @@
"@creditkarma/thrift-server-core": "^1.0.4",
"@graphql-mesh/string-interpolation": "^0.5.7",
"@graphql-mesh/transport-common": "^0.7.13",
- "@graphql-mesh/utils": "^0.103.10",
+ "@graphql-mesh/utils": "^0.103.11",
"@graphql-tools/utils": "^10.6.0",
"pascal-case": "^3.1.2",
"tslib": "^2.4.0"
diff --git a/yarn.lock b/yarn.lock
index 2fbd2bd40d8a5..a287c671282bd 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -3909,7 +3909,7 @@ __metadata:
"@creditkarma/thrift-server-express": "npm:^1.0.4"
"@creditkarma/thrift-typescript": "npm:^3.7.6"
"@graphql-hive/gateway": "npm:^1.5.8"
- "@omnigraph/thrift": "npm:^0.8.10"
+ "@omnigraph/thrift": "npm:^0.8.11"
express: "npm:^4.18.2"
graphql: "npm:^16.9.0"
thrift: "npm:^0.21.0"
@@ -4483,7 +4483,7 @@ __metadata:
"@envelop/auth0": "npm:^6.0.0"
"@graphql-hive/gateway": "npm:^1.5.8"
"@graphql-mesh/compose-cli": "workspace:^"
- "@graphql-mesh/plugin-operation-field-permissions": "npm:^0.103.10"
+ "@graphql-mesh/plugin-operation-field-permissions": "npm:^0.103.11"
"@omnigraph/json-schema": "workspace:^"
graphql: "npm:16.10.0"
jest: "npm:29.7.0"
@@ -4498,7 +4498,7 @@ __metadata:
"@graphql-mesh/cache-cfw-kv": "workspace:^"
"@graphql-mesh/cache-localforage": "workspace:^"
"@graphql-mesh/compose-cli": "workspace:^"
- "@graphql-mesh/plugin-response-cache": "npm:^0.103.10"
+ "@graphql-mesh/plugin-response-cache": "npm:^0.103.11"
"@omnigraph/json-schema": "workspace:^"
graphql: "npm:16.10.0"
wrangler: "npm:3.100.0"
@@ -4512,8 +4512,8 @@ __metadata:
"@envelop/depth-limit": "npm:^4.0.0"
"@graphql-hive/gateway": "npm:^1.5.8"
"@graphql-mesh/cache-cfw-kv": "workspace:^"
- "@graphql-mesh/plugin-rate-limit": "npm:^0.103.10"
- "@graphql-mesh/plugin-response-cache": "npm:^0.103.10"
+ "@graphql-mesh/plugin-rate-limit": "npm:^0.103.11"
+ "@graphql-mesh/plugin-response-cache": "npm:^0.103.11"
graphql: "npm:16.10.0"
wrangler: "npm:3.100.0"
languageName: unknown
@@ -4636,9 +4636,9 @@ __metadata:
resolution: "@examples/auth0@workspace:examples/auth0"
dependencies:
"@envelop/auth0": "npm:6.0.0"
- "@graphql-mesh/cli": "npm:0.98.16"
- "@graphql-mesh/json-schema": "npm:0.108.10"
- "@graphql-mesh/plugin-operation-field-permissions": "npm:0.103.10"
+ "@graphql-mesh/cli": "npm:0.98.17"
+ "@graphql-mesh/json-schema": "npm:0.108.11"
+ "@graphql-mesh/plugin-operation-field-permissions": "npm:0.103.11"
graphql: "npm:16.10.0"
jest: "npm:29.7.0"
languageName: unknown
@@ -4648,10 +4648,10 @@ __metadata:
version: 0.0.0-use.local
resolution: "@examples/cloudflare-workers@workspace:examples/cloudflare-workers"
dependencies:
- "@graphql-mesh/cache-cfw-kv": "npm:0.104.10"
- "@graphql-mesh/cli": "npm:0.98.16"
- "@graphql-mesh/json-schema": "npm:0.108.10"
- "@graphql-mesh/plugin-response-cache": "npm:0.103.10"
+ "@graphql-mesh/cache-cfw-kv": "npm:0.104.11"
+ "@graphql-mesh/cli": "npm:0.98.17"
+ "@graphql-mesh/json-schema": "npm:0.108.11"
+ "@graphql-mesh/plugin-response-cache": "npm:0.103.11"
graphql: "npm:16.10.0"
wrangler: "npm:3.100.0"
languageName: unknown
@@ -4661,8 +4661,8 @@ __metadata:
version: 0.0.0-use.local
resolution: "@examples/fastify@workspace:examples/fastify"
dependencies:
- "@graphql-mesh/cli": "npm:0.98.16"
- "@graphql-mesh/graphql": "npm:0.103.11"
+ "@graphql-mesh/cli": "npm:0.98.17"
+ "@graphql-mesh/graphql": "npm:0.103.12"
fastify: "npm:5.2.1"
graphql: "npm:16.10.0"
ts-node: "npm:^10.9.2"
@@ -4675,8 +4675,8 @@ __metadata:
version: 0.0.0-use.local
resolution: "@examples/federation-example-gateway-supergraph@workspace:examples/federation-example/gateway-supergraph"
dependencies:
- "@graphql-mesh/cli": "npm:0.98.16"
- "@graphql-mesh/supergraph": "npm:0.9.11"
+ "@graphql-mesh/cli": "npm:0.98.17"
+ "@graphql-mesh/supergraph": "npm:0.9.12"
graphql: "npm:16.10.0"
languageName: unknown
linkType: soft
@@ -4685,9 +4685,9 @@ __metadata:
version: 0.0.0-use.local
resolution: "@examples/federation-example-gateway@workspace:examples/federation-example/gateway"
dependencies:
- "@graphql-mesh/cli": "npm:0.98.16"
- "@graphql-mesh/graphql": "npm:0.103.11"
- "@graphql-mesh/transform-federation": "npm:0.103.10"
+ "@graphql-mesh/cli": "npm:0.98.17"
+ "@graphql-mesh/graphql": "npm:0.103.12"
+ "@graphql-mesh/transform-federation": "npm:0.103.11"
graphql: "npm:16.10.0"
languageName: unknown
linkType: soft
@@ -4770,8 +4770,8 @@ __metadata:
resolution: "@examples/gcp-functions@workspace:examples/gcp-functions"
dependencies:
"@google-cloud/functions-framework": "npm:3.4.5"
- "@graphql-mesh/cli": "npm:0.98.16"
- "@graphql-mesh/json-schema": "npm:0.108.10"
+ "@graphql-mesh/cli": "npm:0.98.17"
+ "@graphql-mesh/json-schema": "npm:0.108.11"
"@types/node": "npm:22.10.5"
graphql: "npm:16.10.0"
typescript: "npm:^5.4.2"
@@ -4805,8 +4805,8 @@ __metadata:
version: 0.0.0-use.local
resolution: "@examples/graphql-file-upload-example@workspace:examples/graphql-file-upload-example"
dependencies:
- "@graphql-mesh/cli": "npm:0.98.16"
- "@graphql-mesh/graphql": "npm:0.103.11"
+ "@graphql-mesh/cli": "npm:0.98.17"
+ "@graphql-mesh/graphql": "npm:0.103.12"
concurrently: "npm:9.1.2"
graphql: "npm:16.10.0"
graphql-yoga: "npm:5.10.9"
@@ -4822,9 +4822,9 @@ __metadata:
version: 0.0.0-use.local
resolution: "@examples/grpc-example@workspace:examples/grpc-example"
dependencies:
- "@graphql-mesh/cli": "npm:0.98.16"
- "@graphql-mesh/grpc": "npm:0.107.0"
- "@graphql-mesh/transform-naming-convention": "npm:0.103.12"
+ "@graphql-mesh/cli": "npm:0.98.17"
+ "@graphql-mesh/grpc": "npm:0.107.1"
+ "@graphql-mesh/transform-naming-convention": "npm:0.103.13"
"@grpc/grpc-js": "npm:1.12.5"
"@grpc/proto-loader": "npm:0.7.13"
concurrently: "npm:9.1.2"
@@ -4841,9 +4841,9 @@ __metadata:
version: 0.0.0-use.local
resolution: "@examples/grpc-reflection-example@workspace:examples/grpc-reflection-example"
dependencies:
- "@graphql-mesh/cli": "npm:0.98.16"
- "@graphql-mesh/grpc": "npm:0.107.0"
- "@graphql-mesh/transform-naming-convention": "npm:0.103.12"
+ "@graphql-mesh/cli": "npm:0.98.17"
+ "@graphql-mesh/grpc": "npm:0.107.1"
+ "@graphql-mesh/transform-naming-convention": "npm:0.103.13"
"@grpc/grpc-js": "npm:1.12.5"
"@grpc/proto-loader": "npm:0.7.13"
concurrently: "npm:9.1.2"
@@ -4859,8 +4859,8 @@ __metadata:
version: 0.0.0-use.local
resolution: "@examples/hasura-openbrewery-geodb@workspace:examples/hasura-openbrewery-geodb"
dependencies:
- "@graphql-mesh/cli": "npm:0.98.16"
- "@graphql-mesh/json-schema": "npm:0.108.10"
+ "@graphql-mesh/cli": "npm:0.98.17"
+ "@graphql-mesh/json-schema": "npm:0.108.11"
graphql: "npm:16.10.0"
languageName: unknown
linkType: soft
@@ -4869,9 +4869,9 @@ __metadata:
version: 0.0.0-use.local
resolution: "@examples/hello-world-esm@workspace:examples/hello-world-esm"
dependencies:
- "@graphql-mesh/cli": "npm:0.98.16"
- "@graphql-mesh/json-schema": "npm:0.108.10"
- "@graphql-mesh/plugin-mock": "npm:0.103.11"
+ "@graphql-mesh/cli": "npm:0.98.17"
+ "@graphql-mesh/json-schema": "npm:0.108.11"
+ "@graphql-mesh/plugin-mock": "npm:0.103.12"
graphql: "npm:16.10.0"
jest: "npm:29.7.0"
ts-node: "npm:^10.9.2"
@@ -4883,9 +4883,9 @@ __metadata:
version: 0.0.0-use.local
resolution: "@examples/hello-world@workspace:examples/hello-world"
dependencies:
- "@graphql-mesh/cli": "npm:0.98.16"
- "@graphql-mesh/json-schema": "npm:0.108.10"
- "@graphql-mesh/plugin-mock": "npm:0.103.11"
+ "@graphql-mesh/cli": "npm:0.98.17"
+ "@graphql-mesh/json-schema": "npm:0.108.11"
+ "@graphql-mesh/plugin-mock": "npm:0.103.12"
"@graphql-yoga/plugin-sofa": "npm:3.10.9"
graphql: "npm:16.10.0"
jest: "npm:29.7.0"
@@ -4896,10 +4896,10 @@ __metadata:
version: 0.0.0-use.local
resolution: "@examples/hive-example-gateway@workspace:examples/hive-example/gateway"
dependencies:
- "@graphql-mesh/cli": "npm:0.98.16"
- "@graphql-mesh/openapi": "npm:0.108.12"
- "@graphql-mesh/plugin-hive": "npm:0.103.10"
- "@graphql-mesh/transform-hive": "npm:0.103.11"
+ "@graphql-mesh/cli": "npm:0.98.17"
+ "@graphql-mesh/openapi": "npm:0.108.13"
+ "@graphql-mesh/plugin-hive": "npm:0.103.11"
+ "@graphql-mesh/transform-hive": "npm:0.103.12"
graphql: "npm:16.10.0"
languageName: unknown
linkType: soft
@@ -4909,8 +4909,8 @@ __metadata:
resolution: "@examples/hive-example-sources-authors@workspace:examples/hive-example/sources/authors"
dependencies:
"@graphql-hive/cli": "npm:0.44.5"
- "@graphql-mesh/cli": "npm:0.98.16"
- "@graphql-mesh/openapi": "npm:0.108.12"
+ "@graphql-mesh/cli": "npm:0.98.17"
+ "@graphql-mesh/openapi": "npm:0.108.13"
fets: "npm:^0.8.0"
graphql: "npm:16.10.0"
ts-node: "npm:^10.9.2"
@@ -4923,8 +4923,8 @@ __metadata:
resolution: "@examples/hive-example-sources-books@workspace:examples/hive-example/sources/books"
dependencies:
"@graphql-hive/cli": "npm:0.44.5"
- "@graphql-mesh/cli": "npm:0.98.16"
- "@graphql-mesh/openapi": "npm:0.108.12"
+ "@graphql-mesh/cli": "npm:0.98.17"
+ "@graphql-mesh/openapi": "npm:0.108.13"
fets: "npm:^0.8.0"
graphql: "npm:16.10.0"
ts-node: "npm:^10.9.2"
@@ -4936,9 +4936,9 @@ __metadata:
version: 0.0.0-use.local
resolution: "@examples/json-schema-covid@workspace:examples/json-schema-covid"
dependencies:
- "@graphql-mesh/cli": "npm:0.98.16"
- "@graphql-mesh/graphql": "npm:0.103.11"
- "@graphql-mesh/json-schema": "npm:0.108.10"
+ "@graphql-mesh/cli": "npm:0.98.17"
+ "@graphql-mesh/graphql": "npm:0.103.12"
+ "@graphql-mesh/json-schema": "npm:0.108.11"
graphql: "npm:16.10.0"
jest: "npm:29.7.0"
languageName: unknown
@@ -4948,10 +4948,10 @@ __metadata:
version: 0.0.0-use.local
resolution: "@examples/json-schema-example@workspace:examples/json-schema-example"
dependencies:
- "@graphql-mesh/cli": "npm:0.98.16"
- "@graphql-mesh/json-schema": "npm:0.108.10"
- "@graphql-mesh/plugin-mock": "npm:0.103.11"
- "@graphql-mesh/transform-naming-convention": "npm:0.103.12"
+ "@graphql-mesh/cli": "npm:0.98.17"
+ "@graphql-mesh/json-schema": "npm:0.108.11"
+ "@graphql-mesh/plugin-mock": "npm:0.103.12"
+ "@graphql-mesh/transform-naming-convention": "npm:0.103.13"
graphql: "npm:16.10.0"
jest: "npm:29.7.0"
languageName: unknown
@@ -4961,8 +4961,8 @@ __metadata:
version: 0.0.0-use.local
resolution: "@examples/json-schema-fhir@workspace:examples/json-schema-fhir"
dependencies:
- "@graphql-mesh/cli": "npm:0.98.16"
- "@graphql-mesh/json-schema": "npm:0.108.10"
+ "@graphql-mesh/cli": "npm:0.98.17"
+ "@graphql-mesh/json-schema": "npm:0.108.11"
"@types/unzip-stream": "npm:0.3.4"
graphql: "npm:16.10.0"
ts-node: "npm:^10.9.2"
@@ -4975,8 +4975,8 @@ __metadata:
version: 0.0.0-use.local
resolution: "@examples/json-schema-file-upload@workspace:examples/json-schema-file-upload"
dependencies:
- "@graphql-mesh/cli": "npm:0.98.16"
- "@graphql-mesh/json-schema": "npm:0.108.10"
+ "@graphql-mesh/cli": "npm:0.98.17"
+ "@graphql-mesh/json-schema": "npm:0.108.11"
"@types/node": "npm:22.10.5"
concurrently: "npm:9.1.2"
fets: "npm:0.8.4"
@@ -4990,9 +4990,9 @@ __metadata:
version: 0.0.0-use.local
resolution: "@examples/json-schema-subscriptions@workspace:examples/json-schema-subscriptions"
dependencies:
- "@graphql-mesh/cli": "npm:0.98.16"
- "@graphql-mesh/json-schema": "npm:0.108.10"
- "@graphql-mesh/plugin-live-query": "npm:0.103.10"
+ "@graphql-mesh/cli": "npm:0.98.17"
+ "@graphql-mesh/json-schema": "npm:0.108.11"
+ "@graphql-mesh/plugin-live-query": "npm:0.103.11"
"@whatwg-node/fetch": "npm:^0.10.0"
concurrently: "npm:9.1.2"
fets: "npm:0.8.4"
@@ -5007,8 +5007,8 @@ __metadata:
version: 0.0.0-use.local
resolution: "@examples/mongoose-example@workspace:examples/mongoose-example"
dependencies:
- "@graphql-mesh/cli": "npm:0.98.16"
- "@graphql-mesh/mongoose": "npm:0.103.10"
+ "@graphql-mesh/cli": "npm:0.98.17"
+ "@graphql-mesh/mongoose": "npm:0.103.11"
graphql: "npm:16.10.0"
jest: "npm:29.7.0"
mongoose: "npm:8.9.3"
@@ -5019,8 +5019,8 @@ __metadata:
version: 0.0.0-use.local
resolution: "@examples/mysql-employees@workspace:examples/mysql-employees"
dependencies:
- "@graphql-mesh/cli": "npm:0.98.16"
- "@graphql-mesh/mysql": "npm:0.104.10"
+ "@graphql-mesh/cli": "npm:0.98.17"
+ "@graphql-mesh/mysql": "npm:0.104.11"
graphql: "npm:16.10.0"
languageName: unknown
linkType: soft
@@ -5029,8 +5029,8 @@ __metadata:
version: 0.0.0-use.local
resolution: "@examples/mysql-rfam@workspace:examples/mysql-rfam"
dependencies:
- "@graphql-mesh/cli": "npm:0.98.16"
- "@graphql-mesh/mysql": "npm:0.104.10"
+ "@graphql-mesh/cli": "npm:0.98.17"
+ "@graphql-mesh/mysql": "npm:0.104.11"
graphql: "npm:16.10.0"
jest: "npm:29.7.0"
languageName: unknown
@@ -5040,9 +5040,9 @@ __metadata:
version: 0.0.0-use.local
resolution: "@examples/neo4j-example@workspace:examples/neo4j-example"
dependencies:
- "@graphql-mesh/cache-file": "npm:0.103.11"
- "@graphql-mesh/cli": "npm:0.98.16"
- "@graphql-mesh/neo4j": "npm:0.105.10"
+ "@graphql-mesh/cache-file": "npm:0.103.12"
+ "@graphql-mesh/cli": "npm:0.98.17"
+ "@graphql-mesh/neo4j": "npm:0.105.11"
graphql: "npm:16.10.0"
languageName: unknown
linkType: soft
@@ -5051,10 +5051,10 @@ __metadata:
version: 0.0.0-use.local
resolution: "@examples/nextjs-apollo-example@workspace:examples/nextjs-apollo-example"
dependencies:
- "@graphql-mesh/cli": "npm:0.98.16"
- "@graphql-mesh/config": "npm:0.106.16"
- "@graphql-mesh/openapi": "npm:0.108.12"
- "@graphql-mesh/runtime": "npm:0.105.11"
+ "@graphql-mesh/cli": "npm:0.98.17"
+ "@graphql-mesh/config": "npm:0.106.17"
+ "@graphql-mesh/openapi": "npm:0.108.13"
+ "@graphql-mesh/runtime": "npm:0.105.12"
"@types/react": "npm:19.0.3"
apollo-server-micro: "npm:3.13.0"
graphql: "npm:16.10.0"
@@ -5069,10 +5069,10 @@ __metadata:
version: 0.0.0-use.local
resolution: "@examples/nextjs-sdk-example@workspace:examples/nextjs-sdk-example"
dependencies:
- "@graphql-mesh/cli": "npm:0.98.16"
- "@graphql-mesh/config": "npm:0.106.16"
- "@graphql-mesh/openapi": "npm:0.108.12"
- "@graphql-mesh/runtime": "npm:0.105.11"
+ "@graphql-mesh/cli": "npm:0.98.17"
+ "@graphql-mesh/config": "npm:0.106.17"
+ "@graphql-mesh/openapi": "npm:0.108.13"
+ "@graphql-mesh/runtime": "npm:0.105.12"
"@types/react": "npm:19.0.3"
apollo-server-micro: "npm:3.13.0"
graphql: "npm:16.10.0"
@@ -5087,8 +5087,8 @@ __metadata:
version: 0.0.0-use.local
resolution: "@examples/odata-microsoft@workspace:examples/odata-microsoft"
dependencies:
- "@graphql-mesh/cli": "npm:0.98.16"
- "@graphql-mesh/odata": "npm:0.105.10"
+ "@graphql-mesh/cli": "npm:0.98.17"
+ "@graphql-mesh/odata": "npm:0.105.11"
cross-env: "npm:7.0.3"
graphql: "npm:16.10.0"
languageName: unknown
@@ -5098,10 +5098,10 @@ __metadata:
version: 0.0.0-use.local
resolution: "@examples/odata-msgraph-programmatic-ts@workspace:examples/odata-msgraph-programmatic-ts"
dependencies:
- "@graphql-mesh/cli": "npm:0.98.16"
- "@graphql-mesh/config": "npm:0.106.16"
- "@graphql-mesh/odata": "npm:0.105.10"
- "@graphql-mesh/runtime": "npm:0.105.11"
+ "@graphql-mesh/cli": "npm:0.98.17"
+ "@graphql-mesh/config": "npm:0.106.17"
+ "@graphql-mesh/odata": "npm:0.105.11"
+ "@graphql-mesh/runtime": "npm:0.105.12"
graphql: "npm:16.10.0"
ts-node: "npm:^10.9.2"
languageName: unknown
@@ -5111,10 +5111,10 @@ __metadata:
version: 0.0.0-use.local
resolution: "@examples/odata-msgraph-programmatic@workspace:examples/odata-msgraph-programmatic"
dependencies:
- "@graphql-mesh/cli": "npm:0.98.16"
- "@graphql-mesh/config": "npm:0.106.16"
- "@graphql-mesh/odata": "npm:0.105.10"
- "@graphql-mesh/runtime": "npm:0.105.11"
+ "@graphql-mesh/cli": "npm:0.98.17"
+ "@graphql-mesh/config": "npm:0.106.17"
+ "@graphql-mesh/odata": "npm:0.105.11"
+ "@graphql-mesh/runtime": "npm:0.105.12"
graphql: "npm:16.10.0"
languageName: unknown
linkType: soft
@@ -5123,8 +5123,8 @@ __metadata:
version: 0.0.0-use.local
resolution: "@examples/odata-trippin@workspace:examples/odata-trippin"
dependencies:
- "@graphql-mesh/cli": "npm:0.98.16"
- "@graphql-mesh/odata": "npm:0.105.10"
+ "@graphql-mesh/cli": "npm:0.98.17"
+ "@graphql-mesh/odata": "npm:0.105.11"
graphql: "npm:16.10.0"
languageName: unknown
linkType: soft
@@ -5133,8 +5133,8 @@ __metadata:
version: 0.0.0-use.local
resolution: "@examples/openapi-javascript-wiki@workspace:examples/openapi-javascript-wiki"
dependencies:
- "@graphql-mesh/cli": "npm:0.98.16"
- "@graphql-mesh/openapi": "npm:0.108.12"
+ "@graphql-mesh/cli": "npm:0.98.17"
+ "@graphql-mesh/openapi": "npm:0.108.13"
graphql: "npm:16.10.0"
moment: "npm:2.30.1"
typescript: "npm:^5.4.2"
@@ -5145,12 +5145,12 @@ __metadata:
version: 0.0.0-use.local
resolution: "@examples/openapi-location-weather@workspace:examples/openapi-location-weather"
dependencies:
- "@graphql-mesh/cli": "npm:0.98.16"
- "@graphql-mesh/openapi": "npm:0.108.12"
- "@graphql-mesh/plugin-response-cache": "npm:0.103.10"
- "@graphql-mesh/runtime": "npm:0.105.11"
- "@graphql-mesh/transform-cache": "npm:0.103.11"
- "@graphql-mesh/transform-rename": "npm:0.103.11"
+ "@graphql-mesh/cli": "npm:0.98.17"
+ "@graphql-mesh/openapi": "npm:0.108.13"
+ "@graphql-mesh/plugin-response-cache": "npm:0.103.11"
+ "@graphql-mesh/runtime": "npm:0.105.12"
+ "@graphql-mesh/transform-cache": "npm:0.103.12"
+ "@graphql-mesh/transform-rename": "npm:0.103.12"
graphql: "npm:16.10.0"
languageName: unknown
linkType: soft
@@ -5159,8 +5159,8 @@ __metadata:
version: 0.0.0-use.local
resolution: "@examples/openapi-meilisearch@workspace:examples/openapi-meilisearch"
dependencies:
- "@graphql-mesh/cli": "npm:0.98.16"
- "@graphql-mesh/openapi": "npm:0.108.12"
+ "@graphql-mesh/cli": "npm:0.98.17"
+ "@graphql-mesh/openapi": "npm:0.108.13"
graphql: "npm:16.10.0"
languageName: unknown
linkType: soft
@@ -5169,7 +5169,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "@examples/openapi-react-weatherbit@workspace:examples/openapi-react-weatherbit"
dependencies:
- "@graphql-mesh/cli": "npm:0.98.16"
+ "@graphql-mesh/cli": "npm:0.98.17"
"@types/react": "npm:19.0.3"
"@types/react-dom": "npm:19.0.2"
"@vitejs/plugin-react": "npm:4.3.4"
@@ -5185,8 +5185,8 @@ __metadata:
version: 0.0.0-use.local
resolution: "@examples/openapi-stackexchange@workspace:examples/openapi-stackexchange"
dependencies:
- "@graphql-mesh/cli": "npm:0.98.16"
- "@graphql-mesh/openapi": "npm:0.108.12"
+ "@graphql-mesh/cli": "npm:0.98.17"
+ "@graphql-mesh/openapi": "npm:0.108.13"
graphql: "npm:16.10.0"
languageName: unknown
linkType: soft
@@ -5195,8 +5195,8 @@ __metadata:
version: 0.0.0-use.local
resolution: "@examples/openapi-stripe@workspace:examples/openapi-stripe"
dependencies:
- "@graphql-mesh/cli": "npm:0.98.16"
- "@graphql-mesh/openapi": "npm:0.108.12"
+ "@graphql-mesh/cli": "npm:0.98.17"
+ "@graphql-mesh/openapi": "npm:0.108.13"
graphql: "npm:16.10.0"
languageName: unknown
linkType: soft
@@ -5205,8 +5205,8 @@ __metadata:
version: 0.0.0-use.local
resolution: "@examples/openapi-subscriptions@workspace:examples/openapi-subscriptions"
dependencies:
- "@graphql-mesh/cli": "npm:0.98.16"
- "@graphql-mesh/openapi": "npm:0.108.12"
+ "@graphql-mesh/cli": "npm:0.98.17"
+ "@graphql-mesh/openapi": "npm:0.108.13"
"@whatwg-node/fetch": "npm:^0.10.0"
concurrently: "npm:9.1.2"
fets: "npm:^0.8.0"
@@ -5221,9 +5221,9 @@ __metadata:
version: 0.0.0-use.local
resolution: "@examples/openapi-youtrack@workspace:examples/openapi-youtrack"
dependencies:
- "@graphql-mesh/cli": "npm:0.98.16"
- "@graphql-mesh/openapi": "npm:0.108.12"
- "@graphql-mesh/transform-resolvers-composition": "npm:0.103.10"
+ "@graphql-mesh/cli": "npm:0.98.17"
+ "@graphql-mesh/openapi": "npm:0.108.13"
+ "@graphql-mesh/transform-resolvers-composition": "npm:0.103.11"
graphql: "npm:16.10.0"
graphql-fields: "npm:2.0.3"
languageName: unknown
@@ -5233,8 +5233,8 @@ __metadata:
version: 0.0.0-use.local
resolution: "@examples/openwhisk-example@workspace:examples/openwhisk-example"
dependencies:
- "@graphql-mesh/cli": "npm:0.98.16"
- "@graphql-mesh/graphql": "npm:0.103.11"
+ "@graphql-mesh/cli": "npm:0.98.17"
+ "@graphql-mesh/graphql": "npm:0.103.12"
esbuild: "npm:^0.24.0"
graphql: "npm:16.10.0"
typescript: "npm:^5.4.2"
@@ -5245,9 +5245,9 @@ __metadata:
version: 0.0.0-use.local
resolution: "@examples/persisted-operations@workspace:examples/persisted-operations"
dependencies:
- "@graphql-mesh/cli": "npm:0.98.16"
- "@graphql-mesh/json-schema": "npm:0.108.10"
- "@graphql-mesh/plugin-mock": "npm:0.103.11"
+ "@graphql-mesh/cli": "npm:0.98.17"
+ "@graphql-mesh/json-schema": "npm:0.108.11"
+ "@graphql-mesh/plugin-mock": "npm:0.103.12"
"@graphql-yoga/plugin-sofa": "npm:3.10.9"
graphql: "npm:16.10.0"
jest: "npm:29.7.0"
@@ -5258,13 +5258,13 @@ __metadata:
version: 0.0.0-use.local
resolution: "@examples/postgres-geodb@workspace:examples/postgres-geodb"
dependencies:
- "@graphql-mesh/cache-file": "npm:0.103.11"
- "@graphql-mesh/cli": "npm:0.98.16"
- "@graphql-mesh/config": "npm:0.106.16"
- "@graphql-mesh/graphql": "npm:0.103.11"
- "@graphql-mesh/postgraphile": "npm:0.103.10"
- "@graphql-mesh/runtime": "npm:0.105.11"
- "@graphql-mesh/transform-prefix": "npm:0.103.12"
+ "@graphql-mesh/cache-file": "npm:0.103.12"
+ "@graphql-mesh/cli": "npm:0.98.17"
+ "@graphql-mesh/config": "npm:0.106.17"
+ "@graphql-mesh/graphql": "npm:0.103.12"
+ "@graphql-mesh/postgraphile": "npm:0.103.11"
+ "@graphql-mesh/runtime": "npm:0.105.12"
+ "@graphql-mesh/transform-prefix": "npm:0.103.13"
"@types/node": "npm:22.10.5"
cross-env: "npm:7.0.3"
graphql: "npm:16.10.0"
@@ -5277,8 +5277,8 @@ __metadata:
version: 0.0.0-use.local
resolution: "@examples/programmatic-batching@workspace:examples/programmatic-batching"
dependencies:
- "@graphql-mesh/cli": "npm:0.98.16"
- "@graphql-mesh/openapi": "npm:0.108.12"
+ "@graphql-mesh/cli": "npm:0.98.17"
+ "@graphql-mesh/openapi": "npm:0.108.13"
"@sinclair/typebox": "npm:0.34.13"
concurrently: "npm:9.1.2"
fets: "npm:0.8.4"
@@ -5292,8 +5292,8 @@ __metadata:
version: 0.0.0-use.local
resolution: "@examples/reddit-example@workspace:examples/reddit-example"
dependencies:
- "@graphql-mesh/cli": "npm:0.98.16"
- "@graphql-mesh/json-schema": "npm:0.108.10"
+ "@graphql-mesh/cli": "npm:0.98.17"
+ "@graphql-mesh/json-schema": "npm:0.108.11"
languageName: unknown
linkType: soft
@@ -5301,9 +5301,9 @@ __metadata:
version: 0.0.0-use.local
resolution: "@examples/soap-country-info@workspace:examples/soap-country-info"
dependencies:
- "@graphql-mesh/cli": "npm:0.98.16"
- "@graphql-mesh/plugin-snapshot": "npm:0.103.10"
- "@graphql-mesh/soap": "npm:0.105.10"
+ "@graphql-mesh/cli": "npm:0.98.17"
+ "@graphql-mesh/plugin-snapshot": "npm:0.103.11"
+ "@graphql-mesh/soap": "npm:0.105.11"
graphql: "npm:16.10.0"
languageName: unknown
linkType: soft
@@ -5312,8 +5312,8 @@ __metadata:
version: 0.0.0-use.local
resolution: "@examples/soap-demo@workspace:examples/soap-demo"
dependencies:
- "@graphql-mesh/cli": "npm:0.98.16"
- "@graphql-mesh/soap": "npm:0.105.10"
+ "@graphql-mesh/cli": "npm:0.98.17"
+ "@graphql-mesh/soap": "npm:0.105.11"
cross-env: "npm:7.0.3"
graphql: "npm:16.10.0"
languageName: unknown
@@ -5323,8 +5323,8 @@ __metadata:
version: 0.0.0-use.local
resolution: "@examples/soap-netsuite@workspace:examples/soap-netsuite"
dependencies:
- "@graphql-mesh/cli": "npm:0.98.16"
- "@graphql-mesh/soap": "npm:0.105.10"
+ "@graphql-mesh/cli": "npm:0.98.17"
+ "@graphql-mesh/soap": "npm:0.105.11"
cross-env: "npm:7.0.3"
graphql: "npm:16.10.0"
languageName: unknown
@@ -5335,11 +5335,11 @@ __metadata:
resolution: "@examples/spacex-cfw@workspace:examples/spacex-cfw"
dependencies:
"@envelop/depth-limit": "npm:4.0.0"
- "@graphql-mesh/cache-cfw-kv": "npm:0.104.10"
- "@graphql-mesh/cli": "npm:0.98.16"
- "@graphql-mesh/graphql": "npm:0.103.11"
- "@graphql-mesh/plugin-rate-limit": "npm:0.103.10"
- "@graphql-mesh/plugin-response-cache": "npm:0.103.10"
+ "@graphql-mesh/cache-cfw-kv": "npm:0.104.11"
+ "@graphql-mesh/cli": "npm:0.98.17"
+ "@graphql-mesh/graphql": "npm:0.103.12"
+ "@graphql-mesh/plugin-rate-limit": "npm:0.103.11"
+ "@graphql-mesh/plugin-response-cache": "npm:0.103.11"
graphql: "npm:16.10.0"
wrangler: "npm:3.100.0"
languageName: unknown
@@ -5349,8 +5349,8 @@ __metadata:
version: 0.0.0-use.local
resolution: "@examples/sqlite-chinook@workspace:examples/sqlite-chinook"
dependencies:
- "@graphql-mesh/cli": "npm:0.98.16"
- "@graphql-mesh/tuql": "npm:0.104.10"
+ "@graphql-mesh/cli": "npm:0.98.17"
+ "@graphql-mesh/tuql": "npm:0.104.11"
graphql: "npm:16.10.0"
languageName: unknown
linkType: soft
@@ -5362,8 +5362,8 @@ __metadata:
"@creditkarma/thrift-server-core": "npm:1.0.4"
"@creditkarma/thrift-server-express": "npm:1.0.4"
"@creditkarma/thrift-typescript": "npm:3.7.6"
- "@graphql-mesh/cli": "npm:0.98.16"
- "@graphql-mesh/thrift": "npm:0.105.10"
+ "@graphql-mesh/cli": "npm:0.98.17"
+ "@graphql-mesh/thrift": "npm:0.105.11"
concurrently: "npm:9.1.2"
express: "npm:4.21.2"
graphql: "npm:16.10.0"
@@ -5377,10 +5377,10 @@ __metadata:
version: 0.0.0-use.local
resolution: "@examples/type-merging-batching-example@workspace:examples/type-merging-batching-example"
dependencies:
- "@graphql-mesh/cli": "npm:0.98.16"
- "@graphql-mesh/graphql": "npm:0.103.11"
- "@graphql-mesh/transform-rename": "npm:0.103.11"
- "@graphql-mesh/transform-type-merging": "npm:0.103.10"
+ "@graphql-mesh/cli": "npm:0.98.17"
+ "@graphql-mesh/graphql": "npm:0.103.12"
+ "@graphql-mesh/transform-rename": "npm:0.103.12"
+ "@graphql-mesh/transform-type-merging": "npm:0.103.11"
graphql: "npm:16.10.0"
languageName: unknown
linkType: soft
@@ -6036,7 +6036,7 @@ __metadata:
resolution: "@graphql-mesh/apollo-link@workspace:packages/legacy/apollo-link"
dependencies:
"@apollo/client": "npm:3.12.4"
- "@graphql-mesh/runtime": "npm:^0.105.11"
+ "@graphql-mesh/runtime": "npm:^0.105.12"
"@graphql-tools/utils": "npm:^10.6.0"
tslib: "npm:^2.4.0"
peerDependencies:
@@ -6045,26 +6045,26 @@ __metadata:
languageName: unknown
linkType: soft
-"@graphql-mesh/cache-cfw-kv@npm:0.104.10, @graphql-mesh/cache-cfw-kv@npm:^0.104.0, @graphql-mesh/cache-cfw-kv@workspace:^, @graphql-mesh/cache-cfw-kv@workspace:packages/cache/cfw-kv":
+"@graphql-mesh/cache-cfw-kv@npm:0.104.11, @graphql-mesh/cache-cfw-kv@npm:^0.104.0, @graphql-mesh/cache-cfw-kv@workspace:^, @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:
"@cloudflare/workers-types": "npm:4.20241230.0"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
tslib: "npm:^2.4.0"
peerDependencies:
graphql: "*"
languageName: unknown
linkType: soft
-"@graphql-mesh/cache-file@npm:0.103.11, @graphql-mesh/cache-file@workspace:packages/cache/file":
+"@graphql-mesh/cache-file@npm:0.103.12, @graphql-mesh/cache-file@workspace:packages/cache/file":
version: 0.0.0-use.local
resolution: "@graphql-mesh/cache-file@workspace:packages/cache/file"
dependencies:
"@graphql-mesh/cross-helpers": "npm:^0.4.9"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
dataloader: "npm:2.2.3"
tslib: "npm:^2.4.0"
peerDependencies:
@@ -6072,12 +6072,12 @@ __metadata:
languageName: unknown
linkType: soft
-"@graphql-mesh/cache-inmemory-lru@npm:^0.0.6, @graphql-mesh/cache-inmemory-lru@workspace:packages/cache/inmemory-lru":
+"@graphql-mesh/cache-inmemory-lru@npm:^0.0.7, @graphql-mesh/cache-inmemory-lru@workspace:packages/cache/inmemory-lru":
version: 0.0.0-use.local
resolution: "@graphql-mesh/cache-inmemory-lru@workspace:packages/cache/inmemory-lru"
dependencies:
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@whatwg-node/disposablestack": "npm:^0.0.5"
tslib: "npm:^2.4.0"
peerDependencies:
@@ -6085,13 +6085,13 @@ __metadata:
languageName: unknown
linkType: soft
-"@graphql-mesh/cache-localforage@npm:0.103.11, @graphql-mesh/cache-localforage@npm:^0.103.0, @graphql-mesh/cache-localforage@npm:^0.103.11, @graphql-mesh/cache-localforage@workspace:^, @graphql-mesh/cache-localforage@workspace:packages/cache/localforage":
+"@graphql-mesh/cache-localforage@npm:0.103.12, @graphql-mesh/cache-localforage@npm:^0.103.0, @graphql-mesh/cache-localforage@npm:^0.103.12, @graphql-mesh/cache-localforage@workspace:^, @graphql-mesh/cache-localforage@workspace:packages/cache/localforage":
version: 0.0.0-use.local
resolution: "@graphql-mesh/cache-localforage@workspace:packages/cache/localforage"
dependencies:
- "@graphql-mesh/cache-inmemory-lru": "npm:^0.0.6"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/cache-inmemory-lru": "npm:^0.0.7"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
localforage: "npm:1.10.0"
tslib: "npm:^2.4.0"
peerDependencies:
@@ -6105,8 +6105,8 @@ __metadata:
dependencies:
"@graphql-mesh/cross-helpers": "npm:^0.4.9"
"@graphql-mesh/string-interpolation": "npm:0.5.7"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@types/ioredis-mock": "npm:8.2.5"
"@whatwg-node/disposablestack": "npm:^0.0.5"
ioredis: "npm:^5.3.2"
@@ -6117,7 +6117,7 @@ __metadata:
languageName: unknown
linkType: soft
-"@graphql-mesh/cli@npm:0.98.16, @graphql-mesh/cli@npm:^0.98.16, @graphql-mesh/cli@workspace:packages/legacy/cli":
+"@graphql-mesh/cli@npm:0.98.17, @graphql-mesh/cli@npm:^0.98.17, @graphql-mesh/cli@workspace:packages/legacy/cli":
version: 0.0.0-use.local
resolution: "@graphql-mesh/cli@workspace:packages/legacy/cli"
dependencies:
@@ -6127,14 +6127,14 @@ __metadata:
"@graphql-codegen/typescript-generic-sdk": "npm:^3.1.0"
"@graphql-codegen/typescript-operations": "npm:^4.0.0"
"@graphql-codegen/typescript-resolvers": "npm:^4.0.0"
- "@graphql-mesh/config": "npm:^0.106.16"
+ "@graphql-mesh/config": "npm:^0.106.17"
"@graphql-mesh/cross-helpers": "npm:^0.4.9"
- "@graphql-mesh/http": "npm:^0.105.11"
- "@graphql-mesh/include": "npm:^0.2.9"
- "@graphql-mesh/runtime": "npm:^0.105.11"
- "@graphql-mesh/store": "npm:^0.103.10"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/http": "npm:^0.105.12"
+ "@graphql-mesh/include": "npm:^0.2.10"
+ "@graphql-mesh/runtime": "npm:^0.105.12"
+ "@graphql-mesh/store": "npm:^0.103.11"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@graphql-tools/utils": "npm:^10.6.0"
"@types/lodash.get": "npm:4.4.9"
"@types/mkdirp": "npm:2.0.0"
@@ -6167,16 +6167,16 @@ __metadata:
languageName: unknown
linkType: soft
-"@graphql-mesh/compose-cli@npm:1.3.4, @graphql-mesh/compose-cli@npm:^1.3.4, @graphql-mesh/compose-cli@workspace:*, @graphql-mesh/compose-cli@workspace:^, @graphql-mesh/compose-cli@workspace:packages/compose-cli":
+"@graphql-mesh/compose-cli@npm:1.3.5, @graphql-mesh/compose-cli@npm:^1.3.5, @graphql-mesh/compose-cli@workspace:*, @graphql-mesh/compose-cli@workspace:^, @graphql-mesh/compose-cli@workspace:packages/compose-cli":
version: 0.0.0-use.local
resolution: "@graphql-mesh/compose-cli@workspace:packages/compose-cli"
dependencies:
"@commander-js/extra-typings": "npm:^13.0.0"
- "@graphql-mesh/fusion-composition": "npm:^0.7.16"
- "@graphql-mesh/include": "npm:^0.2.9"
+ "@graphql-mesh/fusion-composition": "npm:^0.7.17"
+ "@graphql-mesh/include": "npm:^0.2.10"
"@graphql-mesh/string-interpolation": "npm:^0.5.7"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@graphql-tools/code-file-loader": "npm:^8.1.7"
"@graphql-tools/graphql-file-loader": "npm:^8.0.5"
"@graphql-tools/load": "npm:^8.0.1"
@@ -6192,19 +6192,19 @@ __metadata:
languageName: unknown
linkType: soft
-"@graphql-mesh/config@npm:0.106.16, @graphql-mesh/config@npm:^0.106.16, @graphql-mesh/config@workspace:packages/legacy/config":
+"@graphql-mesh/config@npm:0.106.17, @graphql-mesh/config@npm:^0.106.17, @graphql-mesh/config@workspace:packages/legacy/config":
version: 0.0.0-use.local
resolution: "@graphql-mesh/config@workspace:packages/legacy/config"
dependencies:
"@envelop/core": "npm:^5.0.0"
- "@graphql-mesh/cache-localforage": "npm:^0.103.11"
+ "@graphql-mesh/cache-localforage": "npm:^0.103.12"
"@graphql-mesh/cross-helpers": "npm:^0.4.9"
- "@graphql-mesh/merger-bare": "npm:^0.104.13"
- "@graphql-mesh/merger-stitching": "npm:^0.104.10"
- "@graphql-mesh/runtime": "npm:^0.105.11"
- "@graphql-mesh/store": "npm:^0.103.10"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/merger-bare": "npm:^0.104.14"
+ "@graphql-mesh/merger-stitching": "npm:^0.104.11"
+ "@graphql-mesh/runtime": "npm:^0.105.12"
+ "@graphql-mesh/store": "npm:^0.103.11"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@graphql-tools/code-file-loader": "npm:^8.0.0"
"@graphql-tools/graphql-file-loader": "npm:^8.0.0"
"@graphql-tools/load": "npm:^8.0.0"
@@ -6231,13 +6231,13 @@ __metadata:
languageName: unknown
linkType: soft
-"@graphql-mesh/fusion-composition@npm:^0.7.16, @graphql-mesh/fusion-composition@workspace:packages/fusion/composition":
+"@graphql-mesh/fusion-composition@npm:^0.7.17, @graphql-mesh/fusion-composition@workspace:packages/fusion/composition":
version: 0.0.0-use.local
resolution: "@graphql-mesh/fusion-composition@workspace:packages/fusion/composition"
dependencies:
"@graphql-hive/gateway-runtime": "npm:^1.3.5"
"@graphql-mesh/fusion-runtime": "npm:^0.10.11"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@graphql-tools/schema": "npm:^10.0.5"
"@graphql-tools/stitching-directives": "npm:^3.1.9"
"@graphql-tools/utils": "npm:^10.6.0"
@@ -6282,15 +6282,15 @@ __metadata:
languageName: node
linkType: hard
-"@graphql-mesh/graphql@npm:0.103.11, @graphql-mesh/graphql@workspace:packages/legacy/handlers/graphql":
+"@graphql-mesh/graphql@npm:0.103.12, @graphql-mesh/graphql@workspace:packages/legacy/handlers/graphql":
version: 0.0.0-use.local
resolution: "@graphql-mesh/graphql@workspace:packages/legacy/handlers/graphql"
dependencies:
"@graphql-mesh/cross-helpers": "npm:^0.4.9"
- "@graphql-mesh/store": "npm:^0.103.10"
+ "@graphql-mesh/store": "npm:^0.103.11"
"@graphql-mesh/string-interpolation": "npm:^0.5.7"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@graphql-tools/delegate": "npm:^10.0.28"
"@graphql-tools/federation": "npm:^3.0.0"
"@graphql-tools/merge": "npm:^9.0.12"
@@ -6303,14 +6303,14 @@ __metadata:
languageName: unknown
linkType: soft
-"@graphql-mesh/grpc@npm:0.107.0, @graphql-mesh/grpc@workspace:packages/legacy/handlers/grpc":
+"@graphql-mesh/grpc@npm:0.107.1, @graphql-mesh/grpc@workspace:packages/legacy/handlers/grpc":
version: 0.0.0-use.local
resolution: "@graphql-mesh/grpc@workspace:packages/legacy/handlers/grpc"
dependencies:
- "@graphql-mesh/store": "npm:^0.103.10"
- "@graphql-mesh/transport-grpc": "npm:^0.2.0"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/store": "npm:^0.103.11"
+ "@graphql-mesh/transport-grpc": "npm:^0.2.1"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@omnigraph/grpc": "npm:^0.2.0"
tslib: "npm:^2.4.0"
peerDependencies:
@@ -6335,14 +6335,14 @@ __metadata:
languageName: node
linkType: hard
-"@graphql-mesh/http@npm:^0.105.11, @graphql-mesh/http@workspace:packages/legacy/http":
+"@graphql-mesh/http@npm:^0.105.12, @graphql-mesh/http@workspace:packages/legacy/http":
version: 0.0.0-use.local
resolution: "@graphql-mesh/http@workspace:packages/legacy/http"
dependencies:
"@graphql-mesh/cross-helpers": "npm:^0.4.9"
- "@graphql-mesh/runtime": "npm:^0.105.11"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/runtime": "npm:^0.105.12"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@graphql-tools/utils": "npm:^10.6.0"
"@types/lodash.get": "npm:4.4.9"
"@types/mkdirp": "npm:2.0.0"
@@ -6357,11 +6357,11 @@ __metadata:
languageName: unknown
linkType: soft
-"@graphql-mesh/include@npm:^0.2.3, @graphql-mesh/include@npm:^0.2.9, @graphql-mesh/include@workspace:packages/include":
+"@graphql-mesh/include@npm:^0.2.10, @graphql-mesh/include@npm:^0.2.3, @graphql-mesh/include@workspace:packages/include":
version: 0.0.0-use.local
resolution: "@graphql-mesh/include@workspace:packages/include"
dependencies:
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/utils": "npm:^0.103.11"
dotenv: "npm:^16.3.1"
get-tsconfig: "npm:^4.7.6"
glob: "npm:^11.0.0"
@@ -6370,17 +6370,17 @@ __metadata:
languageName: unknown
linkType: soft
-"@graphql-mesh/json-schema@npm:0.108.10, @graphql-mesh/json-schema@npm:^0.108.10, @graphql-mesh/json-schema@workspace:packages/legacy/handlers/json-schema":
+"@graphql-mesh/json-schema@npm:0.108.11, @graphql-mesh/json-schema@npm:^0.108.11, @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/cross-helpers": "npm:^0.4.9"
- "@graphql-mesh/store": "npm:^0.103.10"
+ "@graphql-mesh/store": "npm:^0.103.11"
"@graphql-mesh/string-interpolation": "npm:0.5.7"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@json-schema-tools/meta-schema": "npm:1.7.5"
- "@omnigraph/json-schema": "npm:0.108.10"
+ "@omnigraph/json-schema": "npm:0.108.11"
graphql-compose: "npm:9.0.11"
json-machete: "npm:0.97.5"
tslib: "npm:^2.4.0"
@@ -6389,13 +6389,13 @@ __metadata:
languageName: unknown
linkType: soft
-"@graphql-mesh/merger-bare@npm:^0.104.13, @graphql-mesh/merger-bare@workspace:packages/legacy/mergers/bare":
+"@graphql-mesh/merger-bare@npm:^0.104.14, @graphql-mesh/merger-bare@workspace:packages/legacy/mergers/bare":
version: 0.0.0-use.local
resolution: "@graphql-mesh/merger-bare@workspace:packages/legacy/mergers/bare"
dependencies:
- "@graphql-mesh/merger-stitching": "npm:0.104.10"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/merger-stitching": "npm:0.104.11"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@graphql-tools/schema": "npm:^10.0.13"
"@graphql-tools/utils": "npm:^10.6.0"
tslib: "npm:^2.4.0"
@@ -6404,13 +6404,13 @@ __metadata:
languageName: unknown
linkType: soft
-"@graphql-mesh/merger-stitching@npm:0.104.10, @graphql-mesh/merger-stitching@npm:^0.104.10, @graphql-mesh/merger-stitching@workspace:packages/legacy/mergers/stitching":
+"@graphql-mesh/merger-stitching@npm:0.104.11, @graphql-mesh/merger-stitching@npm:^0.104.11, @graphql-mesh/merger-stitching@workspace:packages/legacy/mergers/stitching":
version: 0.0.0-use.local
resolution: "@graphql-mesh/merger-stitching@workspace:packages/legacy/mergers/stitching"
dependencies:
- "@graphql-mesh/store": "npm:^0.103.10"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/store": "npm:^0.103.11"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@graphql-tools/delegate": "npm:^10.0.28"
"@graphql-tools/schema": "npm:^10.0.5"
"@graphql-tools/stitch": "npm:^9.2.17"
@@ -6425,11 +6425,11 @@ __metadata:
version: 0.0.0-use.local
resolution: "@graphql-mesh/migrate-config-cli@workspace:packages/legacy/migrate-config-cli"
dependencies:
- "@graphql-mesh/cli": "npm:^0.98.16"
- "@graphql-mesh/compose-cli": "npm:^1.3.4"
- "@graphql-mesh/config": "npm:^0.106.16"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/cli": "npm:^0.98.17"
+ "@graphql-mesh/compose-cli": "npm:^1.3.5"
+ "@graphql-mesh/config": "npm:^0.106.17"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@types/lodash.kebabcase": "npm:^4.1.9"
lodash.kebabcase: "npm:^4.1.1"
prettier: "npm:^3.3.3"
@@ -6441,13 +6441,13 @@ __metadata:
languageName: unknown
linkType: soft
-"@graphql-mesh/mongoose@npm:0.103.10, @graphql-mesh/mongoose@workspace:packages/legacy/handlers/mongoose":
+"@graphql-mesh/mongoose@npm:0.103.11, @graphql-mesh/mongoose@workspace:packages/legacy/handlers/mongoose":
version: 0.0.0-use.local
resolution: "@graphql-mesh/mongoose@workspace:packages/legacy/handlers/mongoose"
dependencies:
"@graphql-mesh/string-interpolation": "npm:^0.5.7"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
graphql-compose: "npm:^9.0.11"
graphql-compose-connection: "npm:^8.2.1"
graphql-compose-mongoose: "npm:^10.0.0"
@@ -6459,57 +6459,57 @@ __metadata:
languageName: unknown
linkType: soft
-"@graphql-mesh/mysql@npm:0.104.10, @graphql-mesh/mysql@workspace:packages/legacy/handlers/mysql":
+"@graphql-mesh/mysql@npm:0.104.11, @graphql-mesh/mysql@workspace:packages/legacy/handlers/mysql":
version: 0.0.0-use.local
resolution: "@graphql-mesh/mysql@workspace:packages/legacy/handlers/mysql"
dependencies:
- "@graphql-mesh/store": "npm:^0.103.10"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/store": "npm:^0.103.11"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@graphql-tools/utils": "npm:^10.6.0"
- "@omnigraph/mysql": "npm:^0.8.10"
+ "@omnigraph/mysql": "npm:^0.8.11"
tslib: "npm:^2.4.0"
peerDependencies:
graphql: "*"
languageName: unknown
linkType: soft
-"@graphql-mesh/neo4j@npm:0.105.10, @graphql-mesh/neo4j@workspace:packages/legacy/handlers/neo4j":
+"@graphql-mesh/neo4j@npm:0.105.11, @graphql-mesh/neo4j@workspace:packages/legacy/handlers/neo4j":
version: 0.0.0-use.local
resolution: "@graphql-mesh/neo4j@workspace:packages/legacy/handlers/neo4j"
dependencies:
- "@graphql-mesh/store": "npm:^0.103.10"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
- "@omnigraph/neo4j": "npm:^0.9.10"
+ "@graphql-mesh/store": "npm:^0.103.11"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
+ "@omnigraph/neo4j": "npm:^0.9.11"
tslib: "npm:^2.4.0"
peerDependencies:
graphql: "*"
languageName: unknown
linkType: soft
-"@graphql-mesh/odata@npm:0.105.10, @graphql-mesh/odata@workspace:packages/legacy/handlers/odata":
+"@graphql-mesh/odata@npm:0.105.11, @graphql-mesh/odata@workspace:packages/legacy/handlers/odata":
version: 0.0.0-use.local
resolution: "@graphql-mesh/odata@workspace:packages/legacy/handlers/odata"
dependencies:
- "@graphql-mesh/store": "npm:^0.103.10"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@omnigraph/odata": "npm:^0.1.10"
+ "@graphql-mesh/store": "npm:^0.103.11"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@omnigraph/odata": "npm:^0.1.11"
tslib: "npm:^2.4.0"
peerDependencies:
graphql: "*"
languageName: unknown
linkType: soft
-"@graphql-mesh/openapi@npm:0.108.12, @graphql-mesh/openapi@workspace:packages/legacy/handlers/openapi":
+"@graphql-mesh/openapi@npm:0.108.13, @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/store": "npm:^0.103.10"
+ "@graphql-mesh/store": "npm:^0.103.11"
"@graphql-mesh/string-interpolation": "npm:0.5.7"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
- "@omnigraph/openapi": "npm:0.108.12"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
+ "@omnigraph/openapi": "npm:0.108.13"
tslib: "npm:^2.4.0"
peerDependencies:
graphql: "*"
@@ -6520,8 +6520,8 @@ __metadata:
version: 0.0.0-use.local
resolution: "@graphql-mesh/plugin-deduplicate-request@workspace:packages/plugins/deduplicate-request"
dependencies:
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@graphql-tools/utils": "npm:^10.6.0"
"@whatwg-node/fetch": "npm:0.10.1"
tslib: "npm:^2.4.0"
@@ -6530,7 +6530,7 @@ __metadata:
languageName: unknown
linkType: soft
-"@graphql-mesh/plugin-hive@npm:0.103.10, @graphql-mesh/plugin-hive@npm:^0.103.0, @graphql-mesh/plugin-hive@workspace:packages/plugins/hive":
+"@graphql-mesh/plugin-hive@npm:0.103.11, @graphql-mesh/plugin-hive@npm:^0.103.0, @graphql-mesh/plugin-hive@workspace:packages/plugins/hive":
version: 0.0.0-use.local
resolution: "@graphql-mesh/plugin-hive@workspace:packages/plugins/hive"
dependencies:
@@ -6538,8 +6538,8 @@ __metadata:
"@graphql-hive/yoga": "npm:^0.39.0"
"@graphql-mesh/cross-helpers": "npm:^0.4.9"
"@graphql-mesh/string-interpolation": "npm:0.5.7"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
tslib: "npm:^2.4.0"
peerDependencies:
graphql: "*"
@@ -6550,8 +6550,8 @@ __metadata:
version: 0.0.0-use.local
resolution: "@graphql-mesh/plugin-http-cache@workspace:packages/plugins/http-cache"
dependencies:
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@types/http-cache-semantics": "npm:4.0.4"
"@whatwg-node/fetch": "npm:^0.10.0"
http-cache-semantics: "npm:4.1.1"
@@ -6566,8 +6566,8 @@ __metadata:
resolution: "@graphql-mesh/plugin-http-details-extensions@workspace:packages/plugins/http-details-extensions"
dependencies:
"@envelop/core": "npm:5.0.2"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@whatwg-node/fetch": "npm:^0.10.0"
tslib: "npm:^2.4.0"
peerDependencies:
@@ -6581,7 +6581,7 @@ __metadata:
dependencies:
"@envelop/core": "npm:^5.0.2"
"@graphql-hive/gateway-runtime": "npm:^1.3.5"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@graphql-tools/utils": "npm:^10.6.0"
graphql-jit: "npm:^0.8.7"
tslib: "npm:^2.4.0"
@@ -6596,8 +6596,8 @@ __metadata:
dependencies:
"@envelop/generic-auth": "npm:8.0.1"
"@graphql-hive/gateway-runtime": "npm:^1.3.5"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@graphql-yoga/plugin-jwt": "npm:^3.4.9"
graphql-yoga: "npm:^5.7.0"
jsonwebtoken: "npm:9.0.2"
@@ -6607,7 +6607,7 @@ __metadata:
languageName: unknown
linkType: soft
-"@graphql-mesh/plugin-live-query@npm:0.103.10, @graphql-mesh/plugin-live-query@workspace:packages/plugins/live-query":
+"@graphql-mesh/plugin-live-query@npm:0.103.11, @graphql-mesh/plugin-live-query@workspace:packages/plugins/live-query":
version: 0.0.0-use.local
resolution: "@graphql-mesh/plugin-live-query@workspace:packages/plugins/live-query"
dependencies:
@@ -6615,8 +6615,8 @@ __metadata:
"@envelop/live-query": "npm:7.0.0"
"@graphql-mesh/cross-helpers": "npm:^0.4.9"
"@graphql-mesh/string-interpolation": "npm:0.5.7"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@n1ru4l/in-memory-live-query-store": "npm:0.10.0"
tslib: "npm:^2.4.0"
peerDependencies:
@@ -6624,16 +6624,16 @@ __metadata:
languageName: unknown
linkType: soft
-"@graphql-mesh/plugin-mock@npm:0.103.11, @graphql-mesh/plugin-mock@npm:^0.103.0, @graphql-mesh/plugin-mock@npm:^0.103.11, @graphql-mesh/plugin-mock@workspace:packages/plugins/mock":
+"@graphql-mesh/plugin-mock@npm:0.103.12, @graphql-mesh/plugin-mock@npm:^0.103.0, @graphql-mesh/plugin-mock@npm:^0.103.12, @graphql-mesh/plugin-mock@workspace:packages/plugins/mock":
version: 0.0.0-use.local
resolution: "@graphql-mesh/plugin-mock@workspace:packages/plugins/mock"
dependencies:
"@envelop/core": "npm:5.0.2"
- "@graphql-mesh/cache-localforage": "npm:0.103.11"
+ "@graphql-mesh/cache-localforage": "npm:0.103.12"
"@graphql-mesh/cross-helpers": "npm:^0.4.9"
"@graphql-mesh/string-interpolation": "npm:^0.5.7"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@graphql-tools/mock": "npm:^9.0.3"
"@graphql-tools/schema": "npm:^10.0.5"
"@graphql-tools/utils": "npm:^10.6.0"
@@ -6654,8 +6654,8 @@ __metadata:
"@envelop/newrelic": "npm:^7.0.0"
"@graphql-mesh/cross-helpers": "npm:^0.4.9"
"@graphql-mesh/string-interpolation": "npm:^0.5.7"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@newrelic/test-utilities": "npm:6.5.5"
"@types/newrelic": "npm:9.14.7"
graphql-yoga: "npm:5.10.9"
@@ -6695,13 +6695,13 @@ __metadata:
languageName: node
linkType: hard
-"@graphql-mesh/plugin-operation-field-permissions@npm:0.103.10, @graphql-mesh/plugin-operation-field-permissions@npm:^0.103.10, @graphql-mesh/plugin-operation-field-permissions@workspace:packages/plugins/operation-field-permissions":
+"@graphql-mesh/plugin-operation-field-permissions@npm:0.103.11, @graphql-mesh/plugin-operation-field-permissions@npm:^0.103.11, @graphql-mesh/plugin-operation-field-permissions@workspace:packages/plugins/operation-field-permissions":
version: 0.0.0-use.local
resolution: "@graphql-mesh/plugin-operation-field-permissions@workspace:packages/plugins/operation-field-permissions"
dependencies:
"@envelop/operation-field-permissions": "npm:6.0.0"
"@graphql-mesh/cross-helpers": "npm:^0.4.9"
- "@graphql-mesh/types": "npm:^0.103.10"
+ "@graphql-mesh/types": "npm:^0.103.11"
tslib: "npm:^2.4.0"
peerDependencies:
graphql: "*"
@@ -6713,8 +6713,8 @@ __metadata:
resolution: "@graphql-mesh/plugin-operation-headers@workspace:packages/plugins/operation-headers"
dependencies:
"@graphql-hive/gateway-runtime": "npm:^1.3.3"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
tslib: "npm:^2.4.0"
peerDependencies:
graphql: "*"
@@ -6742,7 +6742,7 @@ __metadata:
languageName: node
linkType: hard
-"@graphql-mesh/plugin-rate-limit@npm:0.103.10, @graphql-mesh/plugin-rate-limit@npm:^0.103.0, @graphql-mesh/plugin-rate-limit@npm:^0.103.10, @graphql-mesh/plugin-rate-limit@workspace:packages/plugins/rate-limit":
+"@graphql-mesh/plugin-rate-limit@npm:0.103.11, @graphql-mesh/plugin-rate-limit@npm:^0.103.0, @graphql-mesh/plugin-rate-limit@npm:^0.103.11, @graphql-mesh/plugin-rate-limit@workspace:packages/plugins/rate-limit":
version: 0.0.0-use.local
resolution: "@graphql-mesh/plugin-rate-limit@workspace:packages/plugins/rate-limit"
dependencies:
@@ -6750,8 +6750,8 @@ __metadata:
"@envelop/rate-limiter": "npm:^6.2.1"
"@graphql-mesh/cross-helpers": "npm:^0.4.9"
"@graphql-mesh/string-interpolation": "npm:0.5.7"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@graphql-tools/utils": "npm:^10.6.0"
tslib: "npm:^2.4.0"
peerDependencies:
@@ -6759,7 +6759,7 @@ __metadata:
languageName: unknown
linkType: soft
-"@graphql-mesh/plugin-response-cache@npm:0.103.10, @graphql-mesh/plugin-response-cache@npm:^0.103.0, @graphql-mesh/plugin-response-cache@npm:^0.103.10, @graphql-mesh/plugin-response-cache@workspace:packages/plugins/response-cache":
+"@graphql-mesh/plugin-response-cache@npm:0.103.11, @graphql-mesh/plugin-response-cache@npm:^0.103.0, @graphql-mesh/plugin-response-cache@npm:^0.103.11, @graphql-mesh/plugin-response-cache@workspace:packages/plugins/response-cache":
version: 0.0.0-use.local
resolution: "@graphql-mesh/plugin-response-cache@workspace:packages/plugins/response-cache"
dependencies:
@@ -6767,8 +6767,8 @@ __metadata:
"@envelop/response-cache": "npm:^6.1.1"
"@graphql-mesh/cross-helpers": "npm:^0.4.9"
"@graphql-mesh/string-interpolation": "npm:0.5.7"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@graphql-tools/utils": "npm:^10.6.2"
"@graphql-yoga/plugin-response-cache": "npm:^3.1.1"
graphql-yoga: "npm:^5.7.0"
@@ -6778,14 +6778,14 @@ __metadata:
languageName: unknown
linkType: soft
-"@graphql-mesh/plugin-snapshot@npm:0.103.10, @graphql-mesh/plugin-snapshot@npm:^0.103.0, @graphql-mesh/plugin-snapshot@workspace:packages/plugins/snapshot":
+"@graphql-mesh/plugin-snapshot@npm:0.103.11, @graphql-mesh/plugin-snapshot@npm:^0.103.0, @graphql-mesh/plugin-snapshot@workspace:packages/plugins/snapshot":
version: 0.0.0-use.local
resolution: "@graphql-mesh/plugin-snapshot@workspace:packages/plugins/snapshot"
dependencies:
"@graphql-mesh/cross-helpers": "npm:^0.4.9"
"@graphql-mesh/string-interpolation": "npm:0.5.7"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@whatwg-node/fetch": "npm:^0.10.0"
minimatch: "npm:10.0.1"
tslib: "npm:^2.4.0"
@@ -6799,8 +6799,8 @@ __metadata:
resolution: "@graphql-mesh/plugin-statsd@workspace:packages/plugins/statsd"
dependencies:
"@envelop/statsd": "npm:5.0.1"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
hot-shots: "npm:^10.2.1"
tslib: "npm:^2.4.0"
peerDependencies:
@@ -6808,15 +6808,15 @@ __metadata:
languageName: unknown
linkType: soft
-"@graphql-mesh/postgraphile@npm:0.103.10, @graphql-mesh/postgraphile@workspace:packages/legacy/handlers/postgraphile":
+"@graphql-mesh/postgraphile@npm:0.103.11, @graphql-mesh/postgraphile@workspace:packages/legacy/handlers/postgraphile":
version: 0.0.0-use.local
resolution: "@graphql-mesh/postgraphile@workspace:packages/legacy/handlers/postgraphile"
dependencies:
"@graphql-mesh/cross-helpers": "npm:^0.4.9"
- "@graphql-mesh/store": "npm:^0.103.10"
+ "@graphql-mesh/store": "npm:^0.103.11"
"@graphql-mesh/string-interpolation": "npm:^0.5.7"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@graphql-tools/delegate": "npm:^10.0.28"
pg: "npm:^8.6.0"
postgraphile: "npm:^4.13.0"
@@ -6831,17 +6831,17 @@ __metadata:
version: 0.0.0-use.local
resolution: "@graphql-mesh/raml@workspace:packages/legacy/handlers/raml"
dependencies:
- "@graphql-mesh/store": "npm:^0.103.10"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
- "@omnigraph/raml": "npm:0.108.10"
+ "@graphql-mesh/store": "npm:^0.103.11"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
+ "@omnigraph/raml": "npm:0.108.11"
tslib: "npm:^2.4.0"
peerDependencies:
graphql: "*"
languageName: unknown
linkType: soft
-"@graphql-mesh/runtime@npm:0.105.11, @graphql-mesh/runtime@npm:^0.105.11, @graphql-mesh/runtime@workspace:packages/legacy/runtime":
+"@graphql-mesh/runtime@npm:0.105.12, @graphql-mesh/runtime@npm:^0.105.12, @graphql-mesh/runtime@workspace:packages/legacy/runtime":
version: 0.0.0-use.local
resolution: "@graphql-mesh/runtime@workspace:packages/legacy/runtime"
dependencies:
@@ -6850,8 +6850,8 @@ __metadata:
"@envelop/graphql-jit": "npm:^8.0.0"
"@graphql-mesh/cross-helpers": "npm:^0.4.9"
"@graphql-mesh/string-interpolation": "npm:^0.5.7"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@graphql-tools/batch-delegate": "npm:^9.0.9"
"@graphql-tools/delegate": "npm:^10.0.28"
"@graphql-tools/executor": "npm:^1.3.2"
@@ -6866,31 +6866,31 @@ __metadata:
languageName: unknown
linkType: soft
-"@graphql-mesh/soap@npm:0.105.10, @graphql-mesh/soap@workspace:packages/legacy/handlers/soap":
+"@graphql-mesh/soap@npm:0.105.11, @graphql-mesh/soap@workspace:packages/legacy/handlers/soap":
version: 0.0.0-use.local
resolution: "@graphql-mesh/soap@workspace:packages/legacy/handlers/soap"
dependencies:
"@graphql-mesh/cross-helpers": "npm:^0.4.9"
- "@graphql-mesh/store": "npm:^0.103.10"
+ "@graphql-mesh/store": "npm:^0.103.11"
"@graphql-mesh/string-interpolation": "npm:^0.5.7"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@graphql-tools/utils": "npm:^10.6.0"
- "@omnigraph/soap": "npm:0.105.10"
+ "@omnigraph/soap": "npm:0.105.11"
tslib: "npm:^2.4.0"
peerDependencies:
graphql: "*"
languageName: unknown
linkType: soft
-"@graphql-mesh/store@npm:^0.103.10, @graphql-mesh/store@workspace:packages/legacy/store":
+"@graphql-mesh/store@npm:^0.103.11, @graphql-mesh/store@workspace:packages/legacy/store":
version: 0.0.0-use.local
resolution: "@graphql-mesh/store@workspace:packages/legacy/store"
dependencies:
"@graphql-inspector/core": "npm:6.2.1"
"@graphql-mesh/cross-helpers": "npm:^0.4.9"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@graphql-tools/utils": "npm:^10.6.0"
graphql: "npm:16.10.0"
tslib: "npm:^2.4.0"
@@ -6912,15 +6912,15 @@ __metadata:
languageName: unknown
linkType: soft
-"@graphql-mesh/supergraph@npm:0.9.11, @graphql-mesh/supergraph@workspace:packages/legacy/handlers/supergraph":
+"@graphql-mesh/supergraph@npm:0.9.12, @graphql-mesh/supergraph@workspace:packages/legacy/handlers/supergraph":
version: 0.0.0-use.local
resolution: "@graphql-mesh/supergraph@workspace:packages/legacy/handlers/supergraph"
dependencies:
"@graphql-mesh/cross-helpers": "npm:^0.4.9"
- "@graphql-mesh/store": "npm:^0.103.10"
+ "@graphql-mesh/store": "npm:^0.103.11"
"@graphql-mesh/string-interpolation": "npm:^0.5.7"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@graphql-tools/federation": "npm:^3.0.0"
"@graphql-tools/url-loader": "npm:^8.0.9"
"@graphql-tools/utils": "npm:^10.6.0"
@@ -6931,16 +6931,16 @@ __metadata:
languageName: unknown
linkType: soft
-"@graphql-mesh/thrift@npm:0.105.10, @graphql-mesh/thrift@workspace:packages/legacy/handlers/thrift":
+"@graphql-mesh/thrift@npm:0.105.11, @graphql-mesh/thrift@workspace:packages/legacy/handlers/thrift":
version: 0.0.0-use.local
resolution: "@graphql-mesh/thrift@workspace:packages/legacy/handlers/thrift"
dependencies:
"@graphql-mesh/cross-helpers": "npm:^0.4.9"
- "@graphql-mesh/store": "npm:^0.103.10"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/store": "npm:^0.103.11"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@graphql-tools/utils": "npm:^10.6.0"
- "@omnigraph/thrift": "npm:^0.8.10"
+ "@omnigraph/thrift": "npm:^0.8.11"
"@types/thrift": "npm:0.10.17"
"@types/url-join": "npm:4.0.3"
tslib: "npm:^2.4.0"
@@ -6949,15 +6949,15 @@ __metadata:
languageName: unknown
linkType: soft
-"@graphql-mesh/transform-cache@npm:0.103.11, @graphql-mesh/transform-cache@workspace:packages/legacy/transforms/cache":
+"@graphql-mesh/transform-cache@npm:0.103.12, @graphql-mesh/transform-cache@workspace:packages/legacy/transforms/cache":
version: 0.0.0-use.local
resolution: "@graphql-mesh/transform-cache@workspace:packages/legacy/transforms/cache"
dependencies:
- "@graphql-mesh/cache-localforage": "npm:0.103.11"
+ "@graphql-mesh/cache-localforage": "npm:0.103.12"
"@graphql-mesh/cross-helpers": "npm:^0.4.9"
"@graphql-mesh/string-interpolation": "npm:^0.5.7"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@graphql-tools/resolvers-composition": "npm:^7.0.0"
"@graphql-tools/schema": "npm:^10.0.5"
"@graphql-tools/utils": "npm:^10.6.0"
@@ -6972,8 +6972,8 @@ __metadata:
version: 0.0.0-use.local
resolution: "@graphql-mesh/transform-encapsulate@workspace:packages/legacy/transforms/encapsulate"
dependencies:
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@graphql-tools/delegate": "npm:^10.0.28"
"@graphql-tools/schema": "npm:10.0.16"
"@graphql-tools/utils": "npm:^10.6.0"
@@ -6989,8 +6989,8 @@ __metadata:
resolution: "@graphql-mesh/transform-extend@workspace:packages/legacy/transforms/extend"
dependencies:
"@graphql-mesh/cross-helpers": "npm:^0.4.9"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@graphql-tools/code-file-loader": "npm:^8.1.3"
"@graphql-tools/graphql-file-loader": "npm:^8.0.1"
"@graphql-tools/load": "npm:^8.0.2"
@@ -7002,14 +7002,14 @@ __metadata:
languageName: unknown
linkType: soft
-"@graphql-mesh/transform-federation@npm:0.103.10, @graphql-mesh/transform-federation@workspace:packages/legacy/transforms/federation":
+"@graphql-mesh/transform-federation@npm:0.103.11, @graphql-mesh/transform-federation@workspace:packages/legacy/transforms/federation":
version: 0.0.0-use.local
resolution: "@graphql-mesh/transform-federation@workspace:packages/legacy/transforms/federation"
dependencies:
"@apollo/subgraph": "npm:^2.4.1"
"@graphql-mesh/string-interpolation": "npm:^0.5.7"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@graphql-tools/delegate": "npm:^10.0.28"
"@graphql-tools/stitching-directives": "npm:^3.1.9"
"@graphql-tools/utils": "npm:^10.6.0"
@@ -7025,8 +7025,8 @@ __metadata:
version: 0.0.0-use.local
resolution: "@graphql-mesh/transform-filter-schema@workspace:packages/legacy/transforms/filter-schema"
dependencies:
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@graphql-tools/delegate": "npm:^10.0.28"
"@graphql-tools/utils": "npm:^10.6.0"
"@graphql-tools/wrap": "npm:^10.0.12"
@@ -7038,7 +7038,7 @@ __metadata:
languageName: unknown
linkType: soft
-"@graphql-mesh/transform-hive@npm:0.103.11, @graphql-mesh/transform-hive@workspace:packages/legacy/transforms/hive":
+"@graphql-mesh/transform-hive@npm:0.103.12, @graphql-mesh/transform-hive@workspace:packages/legacy/transforms/hive":
version: 0.0.0-use.local
resolution: "@graphql-mesh/transform-hive@workspace:packages/legacy/transforms/hive"
dependencies:
@@ -7046,7 +7046,7 @@ __metadata:
"@graphql-hive/yoga": "npm:^0.39.0"
"@graphql-mesh/cross-helpers": "npm:^0.4.9"
"@graphql-mesh/string-interpolation": "npm:^0.5.7"
- "@graphql-mesh/types": "npm:^0.103.10"
+ "@graphql-mesh/types": "npm:^0.103.11"
"@graphql-tools/delegate": "npm:^10.0.28"
"@graphql-tools/utils": "npm:^10.6.0"
tslib: "npm:^2.4.0"
@@ -7059,9 +7059,9 @@ __metadata:
version: 0.0.0-use.local
resolution: "@graphql-mesh/transform-hoist-field@workspace:packages/legacy/transforms/hoist-field"
dependencies:
- "@graphql-mesh/cache-localforage": "npm:0.103.11"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/cache-localforage": "npm:0.103.12"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@graphql-tools/delegate": "npm:^10.0.28"
"@graphql-tools/utils": "npm:^10.6.0"
"@graphql-tools/wrap": "npm:^10.0.12"
@@ -7070,13 +7070,13 @@ __metadata:
languageName: unknown
linkType: soft
-"@graphql-mesh/transform-naming-convention@npm:0.103.12, @graphql-mesh/transform-naming-convention@workspace:packages/legacy/transforms/naming-convention":
+"@graphql-mesh/transform-naming-convention@npm:0.103.13, @graphql-mesh/transform-naming-convention@workspace:packages/legacy/transforms/naming-convention":
version: 0.0.0-use.local
resolution: "@graphql-mesh/transform-naming-convention@workspace:packages/legacy/transforms/naming-convention"
dependencies:
- "@graphql-mesh/cache-localforage": "npm:^0.103.11"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/cache-localforage": "npm:^0.103.12"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@graphql-tools/delegate": "npm:^10.0.28"
"@graphql-tools/schema": "npm:10.0.16"
"@graphql-tools/utils": "npm:^10.6.0"
@@ -7091,13 +7091,13 @@ __metadata:
languageName: unknown
linkType: soft
-"@graphql-mesh/transform-prefix@npm:0.103.12, @graphql-mesh/transform-prefix@workspace:packages/legacy/transforms/prefix":
+"@graphql-mesh/transform-prefix@npm:0.103.13, @graphql-mesh/transform-prefix@workspace:packages/legacy/transforms/prefix":
version: 0.0.0-use.local
resolution: "@graphql-mesh/transform-prefix@workspace:packages/legacy/transforms/prefix"
dependencies:
- "@graphql-mesh/cache-localforage": "npm:0.103.11"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/cache-localforage": "npm:0.103.12"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@graphql-tools/delegate": "npm:^10.0.28"
"@graphql-tools/schema": "npm:10.0.16"
"@graphql-tools/utils": "npm:^10.6.0"
@@ -7113,7 +7113,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "@graphql-mesh/transform-prune@workspace:packages/legacy/transforms/prune"
dependencies:
- "@graphql-mesh/types": "npm:^0.103.10"
+ "@graphql-mesh/types": "npm:^0.103.11"
"@graphql-tools/utils": "npm:^10.6.0"
tslib: "npm:^2.4.0"
peerDependencies:
@@ -7125,11 +7125,11 @@ __metadata:
version: 0.0.0-use.local
resolution: "@graphql-mesh/transform-rate-limit@workspace:packages/legacy/transforms/rate-limit"
dependencies:
- "@graphql-mesh/cache-localforage": "npm:0.103.11"
+ "@graphql-mesh/cache-localforage": "npm:0.103.12"
"@graphql-mesh/cross-helpers": "npm:^0.4.9"
"@graphql-mesh/string-interpolation": "npm:^0.5.7"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@graphql-tools/schema": "npm:10.0.16"
"@graphql-tools/utils": "npm:^10.6.0"
"@graphql-tools/wrap": "npm:10.0.27"
@@ -7140,13 +7140,13 @@ __metadata:
languageName: unknown
linkType: soft
-"@graphql-mesh/transform-rename@npm:0.103.11, @graphql-mesh/transform-rename@workspace:packages/legacy/transforms/rename":
+"@graphql-mesh/transform-rename@npm:0.103.12, @graphql-mesh/transform-rename@workspace:packages/legacy/transforms/rename":
version: 0.0.0-use.local
resolution: "@graphql-mesh/transform-rename@workspace:packages/legacy/transforms/rename"
dependencies:
- "@graphql-mesh/cache-localforage": "npm:0.103.11"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/cache-localforage": "npm:0.103.12"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@graphql-tools/delegate": "npm:^10.0.28"
"@graphql-tools/schema": "npm:10.0.16"
"@graphql-tools/utils": "npm:^10.6.0"
@@ -7162,9 +7162,9 @@ __metadata:
version: 0.0.0-use.local
resolution: "@graphql-mesh/transform-replace-field@workspace:packages/legacy/transforms/replace-field"
dependencies:
- "@graphql-mesh/cache-localforage": "npm:0.103.11"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/cache-localforage": "npm:0.103.12"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@graphql-tools/code-file-loader": "npm:^8.0.0"
"@graphql-tools/graphql-file-loader": "npm:^8.0.0"
"@graphql-tools/load": "npm:^8.0.0"
@@ -7176,12 +7176,12 @@ __metadata:
languageName: unknown
linkType: soft
-"@graphql-mesh/transform-resolvers-composition@npm:0.103.10, @graphql-mesh/transform-resolvers-composition@workspace:packages/legacy/transforms/resolvers-composition":
+"@graphql-mesh/transform-resolvers-composition@npm:0.103.11, @graphql-mesh/transform-resolvers-composition@workspace:packages/legacy/transforms/resolvers-composition":
version: 0.0.0-use.local
resolution: "@graphql-mesh/transform-resolvers-composition@workspace:packages/legacy/transforms/resolvers-composition"
dependencies:
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@graphql-tools/resolvers-composition": "npm:^7.0.0"
"@graphql-tools/schema": "npm:^10.0.5"
tslib: "npm:^2.4.0"
@@ -7194,8 +7194,8 @@ __metadata:
version: 0.0.0-use.local
resolution: "@graphql-mesh/transform-transfer-schema@workspace:packages/legacy/transforms/transfer-schema"
dependencies:
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@graphql-tools/utils": "npm:^10.6.0"
"@types/micromatch": "npm:4.0.9"
micromatch: "npm:4.0.8"
@@ -7204,12 +7204,12 @@ __metadata:
languageName: unknown
linkType: soft
-"@graphql-mesh/transform-type-merging@npm:0.103.10, @graphql-mesh/transform-type-merging@workspace:packages/legacy/transforms/type-merging":
+"@graphql-mesh/transform-type-merging@npm:0.103.11, @graphql-mesh/transform-type-merging@workspace:packages/legacy/transforms/type-merging":
version: 0.0.0-use.local
resolution: "@graphql-mesh/transform-type-merging@workspace:packages/legacy/transforms/type-merging"
dependencies:
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@graphql-tools/delegate": "npm:^10.0.28"
"@graphql-tools/stitching-directives": "npm:^3.1.9"
tslib: "npm:^2.4.0"
@@ -7235,15 +7235,15 @@ __metadata:
languageName: node
linkType: hard
-"@graphql-mesh/transport-grpc@npm:^0.2.0, @graphql-mesh/transport-grpc@workspace:packages/transports/grpc":
+"@graphql-mesh/transport-grpc@npm:^0.2.1, @graphql-mesh/transport-grpc@workspace:packages/transports/grpc":
version: 0.0.0-use.local
resolution: "@graphql-mesh/transport-grpc@workspace:packages/transports/grpc"
dependencies:
"@graphql-mesh/cross-helpers": "npm:^0.4.9"
"@graphql-mesh/string-interpolation": "npm:^0.5.7"
"@graphql-mesh/transport-common": "npm:^0.7.13"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@graphql-tools/utils": "npm:^10.6.0"
"@grpc/grpc-js": "npm:^1.1.7"
"@grpc/proto-loader": "npm:^0.7.8"
@@ -7297,15 +7297,15 @@ __metadata:
languageName: node
linkType: hard
-"@graphql-mesh/transport-mysql@npm:^0.8.10, @graphql-mesh/transport-mysql@workspace:packages/transports/mysql":
+"@graphql-mesh/transport-mysql@npm:^0.8.11, @graphql-mesh/transport-mysql@workspace:packages/transports/mysql":
version: 0.0.0-use.local
resolution: "@graphql-mesh/transport-mysql@workspace:packages/transports/mysql"
dependencies:
"@graphql-mesh/cross-helpers": "npm:^0.4.9"
"@graphql-mesh/string-interpolation": "npm:^0.5.7"
"@graphql-mesh/transport-common": "npm:^0.7.13"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@graphql-tools/delegate": "npm:^10.0.28"
"@graphql-tools/utils": "npm:^10.6.0"
"@whatwg-node/fetch": "npm:^0.10.0"
@@ -7318,14 +7318,14 @@ __metadata:
languageName: unknown
linkType: soft
-"@graphql-mesh/transport-neo4j@npm:^0.8.10, @graphql-mesh/transport-neo4j@workspace:packages/transports/neo4j":
+"@graphql-mesh/transport-neo4j@npm:^0.8.11, @graphql-mesh/transport-neo4j@workspace:packages/transports/neo4j":
version: 0.0.0-use.local
resolution: "@graphql-mesh/transport-neo4j@workspace:packages/transports/neo4j"
dependencies:
"@graphql-mesh/cross-helpers": "npm:^0.4.9"
"@graphql-mesh/transport-common": "npm:^0.7.13"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@graphql-tools/delegate": "npm:^10.0.28"
"@graphql-tools/utils": "npm:^10.6.0"
"@neo4j/graphql": "npm:^6.0.0"
@@ -7342,22 +7342,22 @@ __metadata:
resolution: "@graphql-mesh/transport-odata@workspace:packages/transports/odata"
dependencies:
"@graphql-mesh/transport-common": "npm:^0.7.13"
- "@omnigraph/odata": "npm:^0.1.10"
+ "@omnigraph/odata": "npm:^0.1.11"
tslib: "npm:^2.4.0"
peerDependencies:
graphql: "*"
languageName: unknown
linkType: soft
-"@graphql-mesh/transport-rest@npm:^0.8.10, @graphql-mesh/transport-rest@workspace:packages/transports/rest":
+"@graphql-mesh/transport-rest@npm:^0.8.11, @graphql-mesh/transport-rest@workspace:packages/transports/rest":
version: 0.0.0-use.local
resolution: "@graphql-mesh/transport-rest@workspace:packages/transports/rest"
dependencies:
"@graphql-mesh/cross-helpers": "npm:^0.4.9"
"@graphql-mesh/string-interpolation": "npm:^0.5.7"
"@graphql-mesh/transport-common": "npm:^0.7.13"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@graphql-tools/utils": "npm:^10.6.0"
"@whatwg-node/fetch": "npm:^0.9.15 || ^0.10.0"
dset: "npm:^3.1.3"
@@ -7371,15 +7371,15 @@ __metadata:
languageName: unknown
linkType: soft
-"@graphql-mesh/transport-soap@npm:^0.8.10, @graphql-mesh/transport-soap@workspace:packages/transports/soap":
+"@graphql-mesh/transport-soap@npm:^0.8.11, @graphql-mesh/transport-soap@workspace:packages/transports/soap":
version: 0.0.0-use.local
resolution: "@graphql-mesh/transport-soap@workspace:packages/transports/soap"
dependencies:
"@graphql-mesh/cross-helpers": "npm:^0.4.9"
"@graphql-mesh/string-interpolation": "npm:^0.5.7"
"@graphql-mesh/transport-common": "npm:^0.7.13"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@graphql-tools/executor": "npm:^1.3.2"
"@graphql-tools/utils": "npm:^10.6.0"
"@whatwg-node/fetch": "npm:^0.9.15 || ^0.10.0"
@@ -7396,14 +7396,14 @@ __metadata:
dependencies:
"@graphql-mesh/transport-common": "npm:^0.7.13"
"@graphql-tools/utils": "npm:^10.6.0"
- "@omnigraph/sqlite": "npm:^0.7.10"
+ "@omnigraph/sqlite": "npm:^0.7.11"
tslib: "npm:^2.4.0"
peerDependencies:
graphql: "*"
languageName: unknown
linkType: soft
-"@graphql-mesh/transport-thrift@npm:^0.8.10, @graphql-mesh/transport-thrift@workspace:packages/transports/thrift":
+"@graphql-mesh/transport-thrift@npm:^0.8.11, @graphql-mesh/transport-thrift@workspace:packages/transports/thrift":
version: 0.0.0-use.local
resolution: "@graphql-mesh/transport-thrift@workspace:packages/transports/thrift"
dependencies:
@@ -7411,7 +7411,7 @@ __metadata:
"@creditkarma/thrift-server-core": "npm:^1.0.4"
"@graphql-mesh/string-interpolation": "npm:^0.5.7"
"@graphql-mesh/transport-common": "npm:^0.7.13"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@graphql-tools/utils": "npm:^10.6.0"
pascal-case: "npm:^3.1.2"
tslib: "npm:^2.4.0"
@@ -7440,23 +7440,23 @@ __metadata:
languageName: node
linkType: hard
-"@graphql-mesh/tuql@npm:0.104.10, @graphql-mesh/tuql@workspace:packages/legacy/handlers/tuql":
+"@graphql-mesh/tuql@npm:0.104.11, @graphql-mesh/tuql@workspace:packages/legacy/handlers/tuql":
version: 0.0.0-use.local
resolution: "@graphql-mesh/tuql@workspace:packages/legacy/handlers/tuql"
dependencies:
- "@graphql-mesh/types": "npm:^0.103.10"
- "@omnigraph/sqlite": "npm:^0.7.10"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@omnigraph/sqlite": "npm:^0.7.11"
tslib: "npm:^2.4.0"
peerDependencies:
graphql: "*"
languageName: unknown
linkType: soft
-"@graphql-mesh/types@npm:^0.103.10, @graphql-mesh/types@npm:^0.103.6, @graphql-mesh/types@workspace:packages/legacy/types":
+"@graphql-mesh/types@npm:^0.103.11, @graphql-mesh/types@npm:^0.103.6, @graphql-mesh/types@workspace:packages/legacy/types":
version: 0.0.0-use.local
resolution: "@graphql-mesh/types@workspace:packages/legacy/types"
dependencies:
- "@graphql-mesh/store": "npm:^0.103.10"
+ "@graphql-mesh/store": "npm:^0.103.11"
"@graphql-tools/batch-delegate": "npm:^9.0.10"
"@graphql-tools/delegate": "npm:^10.0.28"
"@graphql-tools/utils": "npm:^10.6.0"
@@ -7471,7 +7471,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "@graphql-mesh/urql-exchange@workspace:packages/legacy/urql"
dependencies:
- "@graphql-mesh/runtime": "npm:^0.105.11"
+ "@graphql-mesh/runtime": "npm:^0.105.12"
"@graphql-tools/utils": "npm:^10.6.0"
"@urql/core": "npm:5.1.0"
tslib: "npm:^2.4.0"
@@ -7483,14 +7483,14 @@ __metadata:
languageName: unknown
linkType: soft
-"@graphql-mesh/utils@npm:^0.103.10, @graphql-mesh/utils@npm:^0.103.6, @graphql-mesh/utils@workspace:packages/legacy/utils":
+"@graphql-mesh/utils@npm:^0.103.11, @graphql-mesh/utils@npm:^0.103.6, @graphql-mesh/utils@workspace:packages/legacy/utils":
version: 0.0.0-use.local
resolution: "@graphql-mesh/utils@workspace:packages/legacy/utils"
dependencies:
"@apollo/server": "npm:4.11.3"
"@graphql-mesh/cross-helpers": "npm:^0.4.9"
"@graphql-mesh/string-interpolation": "npm:^0.5.7"
- "@graphql-mesh/types": "npm:^0.103.10"
+ "@graphql-mesh/types": "npm:^0.103.11"
"@graphql-tools/batch-delegate": "npm:^9.0.16"
"@graphql-tools/delegate": "npm:^10.0.28"
"@graphql-tools/utils": "npm:^10.6.0"
@@ -10234,16 +10234,16 @@ __metadata:
languageName: unknown
linkType: soft
-"@omnigraph/json-schema@npm:0.108.10, @omnigraph/json-schema@npm:^0.108.10, @omnigraph/json-schema@workspace:*, @omnigraph/json-schema@workspace:^, @omnigraph/json-schema@workspace:packages/loaders/json-schema":
+"@omnigraph/json-schema@npm:0.108.11, @omnigraph/json-schema@npm:^0.108.11, @omnigraph/json-schema@workspace:*, @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/cross-helpers": "npm:^0.4.9"
"@graphql-mesh/string-interpolation": "npm:0.5.7"
"@graphql-mesh/transport-common": "npm:^0.7.13"
- "@graphql-mesh/transport-rest": "npm:^0.8.10"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/transport-rest": "npm:^0.8.11"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@graphql-tools/delegate": "npm:^10.0.28"
"@graphql-tools/utils": "npm:^10.6.0"
"@json-schema-tools/meta-schema": "npm:1.7.5"
@@ -10268,15 +10268,15 @@ __metadata:
languageName: unknown
linkType: soft
-"@omnigraph/mysql@npm:^0.8.10, @omnigraph/mysql@workspace:packages/loaders/mysql":
+"@omnigraph/mysql@npm:^0.8.11, @omnigraph/mysql@workspace:packages/loaders/mysql":
version: 0.0.0-use.local
resolution: "@omnigraph/mysql@workspace:packages/loaders/mysql"
dependencies:
"@graphql-mesh/cross-helpers": "npm:^0.4.9"
"@graphql-mesh/string-interpolation": "npm:^0.5.7"
- "@graphql-mesh/transport-mysql": "npm:^0.8.10"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/transport-mysql": "npm:^0.8.11"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@graphql-tools/delegate": "npm:^10.0.28"
"@graphql-tools/utils": "npm:^10.6.0"
"@types/graphql-fields": "npm:1.3.9"
@@ -10291,12 +10291,12 @@ __metadata:
languageName: unknown
linkType: soft
-"@omnigraph/neo4j@npm:^0.9.10, @omnigraph/neo4j@workspace:packages/loaders/neo4j":
+"@omnigraph/neo4j@npm:^0.9.11, @omnigraph/neo4j@workspace:packages/loaders/neo4j":
version: 0.0.0-use.local
resolution: "@omnigraph/neo4j@workspace:packages/loaders/neo4j"
dependencies:
- "@graphql-mesh/transport-neo4j": "npm:^0.8.10"
- "@graphql-mesh/types": "npm:^0.103.10"
+ "@graphql-mesh/transport-neo4j": "npm:^0.8.11"
+ "@graphql-mesh/types": "npm:^0.103.11"
"@graphql-tools/delegate": "npm:^10.0.28"
"@graphql-tools/schema": "npm:^10.0.5"
"@neo4j/introspector": "npm:^4.0.0"
@@ -10307,15 +10307,15 @@ __metadata:
languageName: unknown
linkType: soft
-"@omnigraph/odata@npm:^0.1.10, @omnigraph/odata@workspace:packages/loaders/odata":
+"@omnigraph/odata@npm:^0.1.11, @omnigraph/odata@workspace:packages/loaders/odata":
version: 0.0.0-use.local
resolution: "@omnigraph/odata@workspace:packages/loaders/odata"
dependencies:
"@graphql-mesh/cross-helpers": "npm:^0.4.9"
- "@graphql-mesh/store": "npm:^0.103.10"
+ "@graphql-mesh/store": "npm:^0.103.11"
"@graphql-mesh/string-interpolation": "npm:^0.5.7"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@graphql-tools/delegate": "npm:^10.0.28"
"@graphql-tools/utils": "npm:^10.6.0"
"@types/http-string-parser": "npm:0.0.33"
@@ -10335,17 +10335,17 @@ __metadata:
languageName: unknown
linkType: soft
-"@omnigraph/openapi@npm:0.108.12, @omnigraph/openapi@workspace:*, @omnigraph/openapi@workspace:^, @omnigraph/openapi@workspace:packages/loaders/openapi":
+"@omnigraph/openapi@npm:0.108.13, @omnigraph/openapi@workspace:*, @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/cross-helpers": "npm:^0.4.9"
- "@graphql-mesh/fusion-composition": "npm:^0.7.16"
+ "@graphql-mesh/fusion-composition": "npm:^0.7.17"
"@graphql-mesh/string-interpolation": "npm:^0.5.7"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@graphql-tools/utils": "npm:^10.6.4"
- "@omnigraph/json-schema": "npm:^0.108.10"
+ "@omnigraph/json-schema": "npm:^0.108.11"
"@whatwg-node/fetch": "npm:0.10.1"
change-case: "npm:^4.1.2"
fets: "npm:0.8.4"
@@ -10359,18 +10359,18 @@ __metadata:
languageName: unknown
linkType: soft
-"@omnigraph/raml@npm:0.108.10, @omnigraph/raml@workspace:packages/loaders/raml":
+"@omnigraph/raml@npm:0.108.11, @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/cross-helpers": "npm:^0.4.9"
"@graphql-mesh/string-interpolation": "npm:0.5.7"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@graphql-tools/delegate": "npm:^10.0.28"
"@graphql-tools/utils": "npm:^10.6.0"
- "@omnigraph/json-schema": "npm:0.108.10"
+ "@omnigraph/json-schema": "npm:0.108.11"
"@whatwg-node/fetch": "npm:^0.10.0"
change-case: "npm:4.1.2"
json-machete: "npm:0.97.5"
@@ -10381,16 +10381,16 @@ __metadata:
languageName: unknown
linkType: soft
-"@omnigraph/soap@npm:0.105.10, @omnigraph/soap@workspace:packages/loaders/soap":
+"@omnigraph/soap@npm:0.105.11, @omnigraph/soap@workspace:packages/loaders/soap":
version: 0.0.0-use.local
resolution: "@omnigraph/soap@workspace:packages/loaders/soap"
dependencies:
"@graphql-mesh/cross-helpers": "npm:^0.4.9"
"@graphql-mesh/string-interpolation": "npm:^0.5.7"
"@graphql-mesh/transport-common": "npm:^0.7.25"
- "@graphql-mesh/transport-soap": "npm:^0.8.10"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/transport-soap": "npm:^0.8.11"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@graphql-tools/utils": "npm:^10.6.0"
"@whatwg-node/fetch": "npm:^0.10.0"
fast-xml-parser: "npm:^4.5.0"
@@ -10402,12 +10402,12 @@ __metadata:
languageName: unknown
linkType: soft
-"@omnigraph/sqlite@npm:^0.7.10, @omnigraph/sqlite@workspace:packages/loaders/sqlite":
+"@omnigraph/sqlite@npm:^0.7.11, @omnigraph/sqlite@workspace:packages/loaders/sqlite":
version: 0.0.0-use.local
resolution: "@omnigraph/sqlite@workspace:packages/loaders/sqlite"
dependencies:
"@graphql-mesh/cross-helpers": "npm:^0.4.9"
- "@graphql-mesh/types": "npm:^0.103.10"
+ "@graphql-mesh/types": "npm:^0.103.11"
"@graphql-tools/delegate": "npm:^10.0.28"
tslib: "npm:^2.4.0"
tuql: "npm:^1.7.0"
@@ -10419,16 +10419,16 @@ __metadata:
languageName: unknown
linkType: soft
-"@omnigraph/thrift@npm:^0.8.10, @omnigraph/thrift@workspace:packages/loaders/thrift":
+"@omnigraph/thrift@npm:^0.8.11, @omnigraph/thrift@workspace:packages/loaders/thrift":
version: 0.0.0-use.local
resolution: "@omnigraph/thrift@workspace:packages/loaders/thrift"
dependencies:
"@creditkarma/thrift-parser": "npm:^2.0.0"
"@creditkarma/thrift-server-core": "npm:^1.0.4"
"@graphql-mesh/cross-helpers": "npm:^0.4.9"
- "@graphql-mesh/transport-thrift": "npm:^0.8.10"
- "@graphql-mesh/types": "npm:^0.103.10"
- "@graphql-mesh/utils": "npm:^0.103.10"
+ "@graphql-mesh/transport-thrift": "npm:^0.8.11"
+ "@graphql-mesh/types": "npm:^0.103.11"
+ "@graphql-mesh/utils": "npm:^0.103.11"
"@graphql-tools/utils": "npm:10.7.2"
"@whatwg-node/fetch": "npm:^0.10.0"
graphql-scalars: "npm:^1.22.4"
@@ -20279,7 +20279,7 @@ __metadata:
"@graphql-codegen/typescript": "npm:4.1.2"
"@graphql-codegen/typescript-resolvers": "npm:4.4.1"
"@graphql-hive/gateway": "npm:1.7.7"
- "@graphql-mesh/compose-cli": "npm:1.3.4"
+ "@graphql-mesh/compose-cli": "npm:1.3.5"
"@graphql-yoga/plugin-apollo-inline-trace": "npm:3.10.9"
"@types/node": "npm:22.10.5"
concurrently: "npm:9.1.2"
@@ -20296,9 +20296,9 @@ __metadata:
version: 0.0.0-use.local
resolution: "example-response-cache@workspace:examples/response-cache"
dependencies:
- "@graphql-mesh/cli": "npm:^0.98.16"
- "@graphql-mesh/json-schema": "npm:^0.108.10"
- "@graphql-mesh/plugin-mock": "npm:^0.103.11"
+ "@graphql-mesh/cli": "npm:^0.98.17"
+ "@graphql-mesh/json-schema": "npm:^0.108.11"
+ "@graphql-mesh/plugin-mock": "npm:^0.103.12"
graphql: "npm:16.10.0"
languageName: unknown
linkType: soft