@graphcommerce/graphql 9.1.0-canary.43 → 9.1.0-canary.45
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 +4 -2
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 9.1.0-canary.45
|
|
4
|
+
|
|
5
|
+
## 9.1.0-canary.44
|
|
6
|
+
|
|
3
7
|
## 9.1.0-canary.43
|
|
4
8
|
|
|
5
9
|
## 9.1.0-canary.42
|
|
@@ -165,7 +169,6 @@
|
|
|
165
169
|
- [#1960](https://github.com/graphcommerce-org/graphcommerce/pull/1960) [`86e14569b`](https://github.com/graphcommerce-org/graphcommerce/commit/86e14569b1f68f73be7f93b614e36b382c5debff) - Updated to the latest release of GraphQL codegen and solve compatibility issues with our own generator ([@paales](https://github.com/paales))
|
|
166
170
|
|
|
167
171
|
- [#1942](https://github.com/graphcommerce-org/graphcommerce/pull/1942) [`df2b3efb2`](https://github.com/graphcommerce-org/graphcommerce/commit/df2b3efb2f906232a302218678c1524753c5a32c) - Customer related information was stored in the users local storage indefintely causing cache mismatches:
|
|
168
|
-
|
|
169
172
|
- 1. It stores a lot less by using the newly created _persistenceMapper_.
|
|
170
173
|
- 2. The 'createCacheReviver' would recreate the ApolloClient-cache on each navigation, it wont do that anymore.
|
|
171
174
|
- 3. The _persistenceMapper_ now has a hard coded blacklist of entries that aren't allowed to be stored in the local storage. In a future PR we'll make this blacklist configurable. ([@paales](https://github.com/paales))
|
|
@@ -199,7 +202,6 @@
|
|
|
199
202
|
- [#1760](https://github.com/graphcommerce-org/graphcommerce/pull/1760) [`8badc8550`](https://github.com/graphcommerce-org/graphcommerce/commit/8badc8550c402ac7b80c8d3238d313550c28a055) - Updated dependencies ([@paales](https://github.com/paales))
|
|
200
203
|
|
|
201
204
|
- [#1752](https://github.com/graphcommerce-org/graphcommerce/pull/1752) [`2a6a4d9ec`](https://github.com/graphcommerce-org/graphcommerce/commit/2a6a4d9ecfa1b58a66ba9b9d00016d6feda9aa95) - Updated dependencies to latest versions, except for nextjs; Solve tons of peer dependency issues.
|
|
202
|
-
|
|
203
205
|
- Updated the @mui/material package
|
|
204
206
|
- Removed dependencies on react-hook-form-mui and @playwright/test
|
|
205
207
|
- Upgraded dependencies including type-fest and graphql-mesh
|
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.1.0-canary.
|
|
5
|
+
"version": "9.1.0-canary.45",
|
|
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.1.0-canary.
|
|
31
|
-
"@graphcommerce/graphql-codegen-near-operation-file": "9.1.0-canary.
|
|
32
|
-
"@graphcommerce/graphql-codegen-relay-optimizer-plugin": "9.1.0-canary.
|
|
33
|
-
"@graphcommerce/prettier-config-pwa": "^9.1.0-canary.
|
|
34
|
-
"@graphcommerce/typescript-config-pwa": "^9.1.0-canary.
|
|
30
|
+
"@graphcommerce/eslint-config-pwa": "^9.1.0-canary.45",
|
|
31
|
+
"@graphcommerce/graphql-codegen-near-operation-file": "9.1.0-canary.45",
|
|
32
|
+
"@graphcommerce/graphql-codegen-relay-optimizer-plugin": "9.1.0-canary.45",
|
|
33
|
+
"@graphcommerce/prettier-config-pwa": "^9.1.0-canary.45",
|
|
34
|
+
"@graphcommerce/typescript-config-pwa": "^9.1.0-canary.45",
|
|
35
35
|
"@graphql-mesh/plugin-http-details-extensions": "*",
|
|
36
36
|
"react": "^18.2.0",
|
|
37
37
|
"react-dom": "^18.2.0"
|