@graphcommerce/graphql 2.105.11 → 2.105.12

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 CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [2.105.12](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/graphql@2.105.11...@graphcommerce/graphql@2.105.12) (2021-12-21)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **graphql:** make sure we're passing the correct store code to the schema endpoint ([39753f2](https://github.com/ho-nl/m2-pwa/commit/39753f2117ce7ba79dab035c4134e642829e7f18))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [2.105.6](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/graphql@2.105.5...@graphcommerce/graphql@2.105.6) (2021-12-03)
7
18
 
8
19
 
@@ -21,6 +21,10 @@ interface TracingFormat {
21
21
  }
22
22
  }
23
23
 
24
+ /**
25
+ * This doesn't work with the current implementation of the Apollo client. We're using SchemaLink
26
+ * which doesn't support additional links.
27
+ */
24
28
  export const measurePerformanceLink = new ApolloLink((operation, forward) => {
25
29
  if (typeof global.window !== 'undefined') {
26
30
  return forward(operation)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphcommerce/graphql",
3
- "version": "2.105.11",
3
+ "version": "2.105.12",
4
4
  "sideEffects": false,
5
5
  "main": "index.ts",
6
6
  "prettier": "@graphcommerce/prettier-config-pwa",
@@ -35,5 +35,5 @@
35
35
  "@graphql-codegen/typescript-operations": "2.2.1",
36
36
  "graphql": "^16.2.0"
37
37
  },
38
- "gitHead": "7cfbdb5a042e271252c8b9729393e084002a321e"
38
+ "gitHead": "09aca3fbe0a5dc006b33fc8dee349c81bcbe0cb8"
39
39
  }