Skip to content

Commit 4aed2f5

Browse files
author
Max
committed
Merge branch 'main' into fix/revert-handlers-versions
2 parents 4a06992 + 764b846 commit 4aed2f5

File tree

5 files changed

+650
-206
lines changed

5 files changed

+650
-206
lines changed

packages/gateway/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# @graphql-portal/gateway
22

3+
## 0.23.6
4+
5+
### Patch Changes
6+
7+
- 27feb1a: graphql-mesh merger ^0.9.0
8+
9+
## 0.23.5
10+
11+
### Patch Changes
12+
13+
- 1e55407: apollo-server-core 2.25.0
14+
15+
## 0.23.4
16+
17+
### Patch Changes
18+
19+
- 873b97c: graphql-mash handlers versions changed to tilda from caret
20+
321
## 0.23.3
422

523
### Patch Changes

packages/gateway/package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphql-portal/gateway",
3-
"version": "0.23.3",
3+
"version": "0.23.6",
44
"license": "MIT",
55
"author": "code.store",
66
"main": "dist/src/index.js",
@@ -23,20 +23,20 @@
2323
"@graphql-inspector/core": "^2.3.0",
2424
"@graphql-mesh/cli": "0.30.2",
2525
"@graphql-mesh/config": "0.17.0",
26-
"@graphql-mesh/fhir": "^0.10.0",
27-
"@graphql-mesh/graphql": "^0.17.0",
28-
"@graphql-mesh/grpc": "^0.15.0",
29-
"@graphql-mesh/json-schema": "^0.16.0",
26+
"@graphql-mesh/fhir": "~0.10.0",
27+
"@graphql-mesh/graphql": "~0.17.0",
28+
"@graphql-mesh/grpc": "~0.12.0",
29+
"@graphql-mesh/json-schema": "~0.16.0",
3030
"@graphql-mesh/merger-federation": "^0.9.0",
3131
"@graphql-mesh/mongoose": "^0.8.0",
32-
"@graphql-mesh/mysql": "^0.11.0",
33-
"@graphql-mesh/neo4j": "^0.11.0",
34-
"@graphql-mesh/odata": "^0.11.0",
35-
"@graphql-mesh/openapi": "^0.16.0",
36-
"@graphql-mesh/postgraphile": "^0.11.0",
32+
"@graphql-mesh/mysql": "~0.10.0",
33+
"@graphql-mesh/neo4j": "~0.11.0",
34+
"@graphql-mesh/odata": "~0.11.0",
35+
"@graphql-mesh/openapi": "~0.18.12",
36+
"@graphql-mesh/postgraphile": "0.11.4",
3737
"@graphql-mesh/runtime": "0.17.0",
38-
"@graphql-mesh/soap": "^0.7.0",
39-
"@graphql-mesh/thrift": "^0.7.0",
38+
"@graphql-mesh/soap": "~0.7.0",
39+
"@graphql-mesh/thrift": "~0.7.0",
4040
"@graphql-mesh/transform-cache": "^0.9.0",
4141
"@graphql-mesh/transform-encapsulate": "^0.1.31",
4242
"@graphql-mesh/transform-extend": "^0.6.1",

patches/@graphql-mesh+soap+0.7.10.patch

Lines changed: 0 additions & 13 deletions
This file was deleted.
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
diff --git a/node_modules/@graphql-mesh/soap/index.js b/node_modules/@graphql-mesh/soap/index.js
2+
index 8ac483d..126b9e5 100644
3+
--- a/node_modules/@graphql-mesh/soap/index.js
4+
+++ b/node_modules/@graphql-mesh/soap/index.js
5+
@@ -927,7 +927,7 @@ class SoapHandler {
6+
if (schemaHeaders && 'then' in schemaHeaders) {
7+
schemaHeaders = await schemaHeaders;
8+
}
9+
- const fetch = utils.getCachedFetch(this.cache);
10+
+ const fetch = utils.getCachedFetch(this.cache, this.config.rejectUnauthorized);
11+
const soapClient = await createSoapClient(this.config.wsdl, {
12+
basicAuth: this.config.basicAuth,
13+
options: {
14+
diff --git a/node_modules/@graphql-mesh/soap/index.mjs b/node_modules/@graphql-mesh/soap/index.mjs
15+
index c5a2938..9c451f2 100644
16+
--- a/node_modules/@graphql-mesh/soap/index.mjs
17+
+++ b/node_modules/@graphql-mesh/soap/index.mjs
18+
@@ -923,7 +923,7 @@ class SoapHandler {
19+
if (schemaHeaders && 'then' in schemaHeaders) {
20+
schemaHeaders = await schemaHeaders;
21+
}
22+
- const fetch = getCachedFetch(this.cache);
23+
+ const fetch = utils.getCachedFetch(this.cache, this.config.rejectUnauthorized);
24+
const soapClient = await createSoapClient(this.config.wsdl, {
25+
basicAuth: this.config.basicAuth,
26+
options: {

0 commit comments

Comments
 (0)