@graphcommerce/graphql-mesh 6.0.2-canary.8 → 6.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +36 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,41 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 6.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#1874](https://github.com/graphcommerce-org/graphcommerce/pull/1874) [`2a60491c2`](https://github.com/graphcommerce-org/graphcommerce/commit/2a60491c23a9cd0bfd79296d29f6c9ee31faada5) - Fetch request improvements in the mesh (30-100ms): The mesh wouldn't keep ssl handshakes alive causing an additional delay for each request. Performance improvements depend on the ssl handshake performance of the server. ([@paales](https://github.com/paales))
|
|
8
|
+
|
|
9
|
+
- [#1874](https://github.com/graphcommerce-org/graphcommerce/pull/1874) [`2a60491c2`](https://github.com/graphcommerce-org/graphcommerce/commit/2a60491c23a9cd0bfd79296d29f6c9ee31faada5) - Big Magento performance improvements; Magento couldn't respond with any cached Varnish responses because there was an empty authorization header sent with each request. ([@paales](https://github.com/paales))
|
|
10
|
+
|
|
11
|
+
## 6.0.2-canary.22
|
|
12
|
+
|
|
13
|
+
## 6.0.2-canary.21
|
|
14
|
+
|
|
15
|
+
## 6.0.2-canary.20
|
|
16
|
+
|
|
17
|
+
## 6.0.2-canary.19
|
|
18
|
+
|
|
19
|
+
## 6.0.2-canary.18
|
|
20
|
+
|
|
21
|
+
## 6.0.2-canary.17
|
|
22
|
+
|
|
23
|
+
## 6.0.2-canary.16
|
|
24
|
+
|
|
25
|
+
## 6.0.2-canary.15
|
|
26
|
+
|
|
27
|
+
## 6.0.2-canary.14
|
|
28
|
+
|
|
29
|
+
## 6.0.2-canary.13
|
|
30
|
+
|
|
31
|
+
## 6.0.2-canary.12
|
|
32
|
+
|
|
33
|
+
## 6.0.2-canary.11
|
|
34
|
+
|
|
35
|
+
## 6.0.2-canary.10
|
|
36
|
+
|
|
37
|
+
## 6.0.2-canary.9
|
|
38
|
+
|
|
3
39
|
## 6.0.2-canary.8
|
|
4
40
|
|
|
5
41
|
## 6.0.2-canary.7
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@graphcommerce/graphql-mesh",
|
|
3
3
|
"homepage": "https://www.graphcommerce.org/",
|
|
4
4
|
"repository": "github:graphcommerce-org/graphcommerce",
|
|
5
|
-
"version": "6.0
|
|
5
|
+
"version": "6.1.0",
|
|
6
6
|
"author": "",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"main": "index.ts",
|
|
@@ -22,9 +22,9 @@
|
|
|
22
22
|
"graphql": "16.6.0"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"@graphcommerce/eslint-config-pwa": "6.0
|
|
26
|
-
"@graphcommerce/prettier-config-pwa": "6.0
|
|
27
|
-
"@graphcommerce/typescript-config-pwa": "6.0
|
|
25
|
+
"@graphcommerce/eslint-config-pwa": "6.1.0",
|
|
26
|
+
"@graphcommerce/prettier-config-pwa": "6.1.0",
|
|
27
|
+
"@graphcommerce/typescript-config-pwa": "6.1.0",
|
|
28
28
|
"typescript": "4.9.5"
|
|
29
29
|
},
|
|
30
30
|
"sideEffects": false,
|