@graphcommerce/graphql 9.0.4-canary.0 → 9.0.4-canary.10
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 +19 -7
- package/apollo.ts +6 -0
- package/hooks/usePrivateQueryContext.ts +2 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,18 +1,30 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
## 9.0.4-canary.
|
|
3
|
+
## 9.0.4-canary.10
|
|
4
|
+
|
|
5
|
+
## 9.0.4-canary.9
|
|
6
|
+
|
|
7
|
+
## 9.0.4-canary.8
|
|
4
8
|
|
|
5
|
-
## 9.0.
|
|
9
|
+
## 9.0.4-canary.7
|
|
6
10
|
|
|
7
|
-
## 9.0.
|
|
11
|
+
## 9.0.4-canary.6
|
|
8
12
|
|
|
9
|
-
## 9.0.
|
|
13
|
+
## 9.0.4-canary.5
|
|
10
14
|
|
|
11
|
-
## 9.0.
|
|
15
|
+
## 9.0.4-canary.4
|
|
12
16
|
|
|
13
|
-
## 9.0.
|
|
17
|
+
## 9.0.4-canary.3
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
14
20
|
|
|
15
|
-
|
|
21
|
+
- [#2477](https://github.com/graphcommerce-org/graphcommerce/pull/2477) [`8015eab`](https://github.com/graphcommerce-org/graphcommerce/commit/8015eabc130dacf1f2703980cd5f0ad2c550aa4d) - Upgraded to @apollo/client 3.12.3 without impacting typescript compilation performance. ([@paales](https://github.com/paales))
|
|
22
|
+
|
|
23
|
+
## 9.0.4-canary.2
|
|
24
|
+
|
|
25
|
+
## 9.0.4-canary.1
|
|
26
|
+
|
|
27
|
+
## 9.0.4-canary.0
|
|
16
28
|
|
|
17
29
|
## 9.0.0
|
|
18
30
|
|
package/apollo.ts
CHANGED
|
@@ -11,7 +11,8 @@ export function getPrivateQueryContext(
|
|
|
11
11
|
/**
|
|
12
12
|
* Defines a method to handle the current context for the query.
|
|
13
13
|
*
|
|
14
|
-
* Other plugins should be able to define their own scopes and create a plugin on this method to
|
|
14
|
+
* Other plugins should be able to define their own scopes and create a plugin on this method to
|
|
15
|
+
* augment the specific scope.
|
|
15
16
|
*
|
|
16
17
|
* @see @graphcommerce/magento-customer/plugins/magentoCustomerGetInContext.ts
|
|
17
18
|
*
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@graphcommerce/graphql",
|
|
3
3
|
"homepage": "https://www.graphcommerce.org/",
|
|
4
4
|
"repository": "github:graphcommerce-org/graphcommerce",
|
|
5
|
-
"version": "9.0.4-canary.
|
|
5
|
+
"version": "9.0.4-canary.10",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"main": "index.ts",
|
|
8
8
|
"prettier": "@graphcommerce/prettier-config-pwa",
|
|
@@ -27,11 +27,11 @@
|
|
|
27
27
|
"graphql": "^16.10.0"
|
|
28
28
|
},
|
|
29
29
|
"peerDependencies": {
|
|
30
|
-
"@graphcommerce/eslint-config-pwa": "^9.0.4-canary.
|
|
31
|
-
"@graphcommerce/graphql-codegen-near-operation-file": "9.0.4-canary.
|
|
32
|
-
"@graphcommerce/graphql-codegen-relay-optimizer-plugin": "9.0.4-canary.
|
|
33
|
-
"@graphcommerce/prettier-config-pwa": "^9.0.4-canary.
|
|
34
|
-
"@graphcommerce/typescript-config-pwa": "^9.0.4-canary.
|
|
30
|
+
"@graphcommerce/eslint-config-pwa": "^9.0.4-canary.10",
|
|
31
|
+
"@graphcommerce/graphql-codegen-near-operation-file": "9.0.4-canary.10",
|
|
32
|
+
"@graphcommerce/graphql-codegen-relay-optimizer-plugin": "9.0.4-canary.10",
|
|
33
|
+
"@graphcommerce/prettier-config-pwa": "^9.0.4-canary.10",
|
|
34
|
+
"@graphcommerce/typescript-config-pwa": "^9.0.4-canary.10",
|
|
35
35
|
"@graphql-mesh/plugin-http-details-extensions": "*",
|
|
36
36
|
"react": "^18.2.0",
|
|
37
37
|
"react-dom": "^18.2.0"
|