@graphcommerce/magento-customer 9.0.0-canary.99 → 9.0.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.
Files changed (80) hide show
  1. package/CHANGELOG.md +221 -1174
  2. package/components/AccountAddress/AccountAddress.tsx +3 -2
  3. package/components/AccountAddresses/AccountAddresses.tsx +7 -8
  4. package/components/AccountDeleteForm/AccountDeleteForm.tsx +1 -1
  5. package/components/AccountLatestOrder/AccountLatestOrder.tsx +5 -1
  6. package/components/AccountMenu/AccountMenu.tsx +2 -1
  7. package/components/AccountMenuItem/AccountMenuItem.tsx +7 -6
  8. package/components/AccountOrders/AccountOrders.tsx +3 -2
  9. package/components/AccountSignInUpForm/AccountSignInUpForm.tsx +17 -7
  10. package/components/AddressFields/AddressAddition.tsx +4 -2
  11. package/components/AddressFields/AddressCity.tsx +4 -2
  12. package/components/AddressFields/AddressCountryRegion.tsx +6 -9
  13. package/components/AddressFields/AddressFields.tsx +2 -2
  14. package/components/AddressFields/AddressHouseNumber.tsx +4 -7
  15. package/components/AddressFields/AddressPostcode.tsx +4 -2
  16. package/components/AddressFields/AddressStreet.tsx +3 -2
  17. package/components/AddressFields/useAddressFieldsForm.tsx +2 -6
  18. package/components/AddressMultiLine/AddressMultiLine.tsx +4 -3
  19. package/components/AddressSingleLine/AddressSingleLine.tsx +1 -1
  20. package/components/ApolloCustomerError/ApolloCustomerErrorAlert.tsx +2 -1
  21. package/components/ApolloCustomerError/ApolloCustomerErrorFullPage.tsx +3 -2
  22. package/components/ApolloCustomerError/ApolloCustomerErrorSnackbar.tsx +2 -1
  23. package/components/ApolloCustomerError/useAuthorizationErrorMasked.ts +1 -1
  24. package/components/CancelOrder/CancelOrderForm.tsx +16 -23
  25. package/components/ChangeNameForm/ChangeNameForm.tsx +2 -2
  26. package/components/ChangePasswordForm/ChangePasswordForm.tsx +4 -7
  27. package/components/CompanyFields/CompanyFields.tsx +6 -3
  28. package/components/CompanyFields/CompanyName.tsx +4 -2
  29. package/components/CompanyFields/CompanyVAT.tsx +5 -3
  30. package/components/CompanyFields/useCompanyFieldsForm.tsx +2 -6
  31. package/components/ConfirmCustomer/ConfirmCustomerForm.tsx +3 -16
  32. package/components/ContactForm/ContactForm.tsx +2 -1
  33. package/components/CreateCustomerAddressForm/CreateCustomerAddressForm.tsx +2 -2
  34. package/components/CustomerFab/CustomerFab.tsx +9 -9
  35. package/components/CustomerMenuFabItem/CustomerMenuFabItem.tsx +8 -5
  36. package/components/EditAddressForm/EditAddressForm.tsx +3 -7
  37. package/components/ForgotPasswordForm/ForgotPasswordForm.tsx +11 -8
  38. package/components/GuestOrderOverview/GuestOrderOverviewForm.tsx +2 -1
  39. package/components/NameFields/NameFields.tsx +4 -2
  40. package/components/NoOrdersFound/NoOrdersFound.tsx +4 -3
  41. package/components/OrderCard/OrderCard.tsx +7 -6
  42. package/components/OrderCardItem/OrderCardItem.tsx +4 -0
  43. package/components/OrderCardItemImage/OrderCardItemImage.tsx +4 -3
  44. package/components/OrderDetails/OrderDetails.tsx +11 -10
  45. package/components/OrderDetails/OrderTotals.tsx +6 -4
  46. package/components/OrderItem/OrderItem.tsx +5 -5
  47. package/components/OrderItems/OrderItems.tsx +5 -4
  48. package/components/OrderStateLabel/OrderStateLabel.tsx +4 -2
  49. package/components/OrderStateLabel/OrderStateLabelInline.tsx +4 -3
  50. package/components/ReorderItems/ReorderItems.tsx +2 -2
  51. package/components/ResetPasswordForm/ResetPasswordForm.tsx +7 -8
  52. package/components/SignInForm/SignInForm.tsx +26 -5
  53. package/components/SignInForm/SignInFormInline.tsx +5 -3
  54. package/components/SignOutForm/SignOutForm.tsx +3 -2
  55. package/components/SignOutForm/signOut.ts +3 -2
  56. package/components/SignUpForm/SignUpForm.tsx +20 -4
  57. package/components/SignUpForm/SignUpFormInline.tsx +4 -3
  58. package/components/TrackingLink/TrackingLink.tsx +3 -2
  59. package/components/UpdateCustomerEmailForm/UpdateCustomerEmailForm.tsx +4 -4
  60. package/components/UpdateDefaultAddressForm/UpdateDefaultAddressForm.tsx +1 -1
  61. package/components/ValidatedPasswordElement/ValidatedPasswordElement.tsx +3 -2
  62. package/components/WaitForCustomer/WaitForCustomer.tsx +5 -3
  63. package/components/index.ts +1 -0
  64. package/hooks/index.ts +1 -0
  65. package/hooks/useAccountSignInUpForm.tsx +4 -7
  66. package/hooks/useCustomerQuery.ts +4 -4
  67. package/hooks/useCustomerSession.ts +4 -6
  68. package/hooks/useGuestQuery.ts +4 -4
  69. package/hooks/useOrderCardItemImages.ts +2 -2
  70. package/hooks/useSignInForm.ts +9 -9
  71. package/link/customerLink.ts +6 -11
  72. package/link/xMagentoCacheIdHeader.ts +2 -1
  73. package/package.json +15 -15
  74. package/plugins/MagentoCustomerGraphqlProvider.tsx +2 -2
  75. package/plugins/SessionDebuggerPlugin.tsx +2 -2
  76. package/plugins/XMagentoCacheIdGraphQLProvider.tsx +1 -1
  77. package/plugins/{magentoCustomerGetInContext.ts → magentoCustomerPrivateQueryContext.ts} +7 -4
  78. package/test/authentication.playwright.ts +5 -5
  79. package/typePolicies.ts +3 -1
  80. package/utils/orderState.ts +2 -2
package/CHANGELOG.md CHANGED
@@ -1,1392 +1,467 @@
1
1
  # Change Log
2
2
 
3
- ## 9.0.0-canary.99
4
-
5
- ## 9.0.0-canary.98
6
-
7
- ## 9.0.0-canary.97
8
-
9
- ## 9.0.0-canary.96
10
-
11
- ### Patch Changes
12
-
13
- - [#2404](https://github.com/graphcommerce-org/graphcommerce/pull/2404) [`a5c52ac`](https://github.com/graphcommerce-org/graphcommerce/commit/a5c52ac6e56ca34819f86708c00b0e8dec39d95c) - fix: formData.region can be undefined when creating new address ([@FrankHarland](https://github.com/FrankHarland))
14
-
15
- ## 9.0.0-canary.95
16
-
17
- ## 9.0.0-canary.94
18
-
19
- ## 9.0.0-canary.93
20
-
21
- ## 9.0.0-canary.92
22
-
23
- ## 9.0.0-canary.91
24
-
25
- ## 9.0.0-canary.90
26
-
27
- ## 9.0.0-canary.89
28
-
29
- ## 9.0.0-canary.88
30
-
31
- ## 9.0.0-canary.87
32
-
33
- ## 9.0.0-canary.86
34
-
35
- ### Patch Changes
36
-
37
- - [#2379](https://github.com/graphcommerce-org/graphcommerce/pull/2379) [`6202fc7`](https://github.com/graphcommerce-org/graphcommerce/commit/6202fc7d2f36d5d1f2fedb74b2f2d93b308d5885) - In some cases the xMagentoCacheId wasn't defined in the returned query, make sure the application doesn't crash ([@paales](https://github.com/paales))
38
-
39
- ## 9.0.0-canary.85
40
-
41
- ## 9.0.0-canary.84
42
-
43
- ## 9.0.0-canary.83
44
-
45
- ## 9.0.0-canary.82
46
-
47
- ### Minor Changes
48
-
49
- - [#2366](https://github.com/graphcommerce-org/graphcommerce/pull/2366) [`3612c99`](https://github.com/graphcommerce-org/graphcommerce/commit/3612c994b80bb3b1bc02de10668f69a332402dc4) - Add `permissions` config so the website or store can be configurated to run in different modes. ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
50
-
51
- ## 9.0.0-canary.81
52
-
53
- ## 9.0.0-canary.80
54
-
55
- ### Minor Changes
56
-
57
- - [#2341](https://github.com/graphcommerce-org/graphcommerce/pull/2341) [`1d6512d`](https://github.com/graphcommerce-org/graphcommerce/commit/1d6512d4118cfb46602aa1f2432c3566fdb3261d) - Rename experimental_useV2 prop to deprecated_useV1 in useFromGql and enable it by default ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
58
-
59
- ### Patch Changes
60
-
61
- - [#2341](https://github.com/graphcommerce-org/graphcommerce/pull/2341) [`cc1c6e8`](https://github.com/graphcommerce-org/graphcommerce/commit/cc1c6e8c857c12f2d38d7283a250e3b77bd885f4) - The AddressCountryRegion select would show a warning if the countries weren't loaded yet. It will now show a readonly field with the country code. ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
62
-
63
- - [#2341](https://github.com/graphcommerce-org/graphcommerce/pull/2341) [`b8b621a`](https://github.com/graphcommerce-org/graphcommerce/commit/b8b621a4a7549cae4ac56fee76773443a0d55504) - The CompanyFields toggle wouldn't be valid when Private was selected and would only validate if Business was selected. ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
64
-
65
- ## 9.0.0-canary.79
66
-
67
- ## 9.0.0-canary.78
68
-
69
- ### Patch Changes
70
-
71
- - [#2354](https://github.com/graphcommerce-org/graphcommerce/pull/2354) [`7cd5c1c`](https://github.com/graphcommerce-org/graphcommerce/commit/7cd5c1cadf8dac43de9e5bb19038383be64aa08f) - Fix issues when using non-hex colors in theme ([@bramvanderholst](https://github.com/bramvanderholst))
72
-
73
- ## 9.0.0-canary.77
74
-
75
- ## 9.0.0-canary.76
76
-
77
- ## 9.0.0-canary.75
78
-
79
- ### Patch Changes
80
-
81
- - [#2352](https://github.com/graphcommerce-org/graphcommerce/pull/2352) [`8ace660`](https://github.com/graphcommerce-org/graphcommerce/commit/8ace660addf25eacb49376eceb5e3bfc351a2c57) - Add disableMargin prop to WaitForCustomer component ([@JoshuaS98](https://github.com/JoshuaS98))
82
-
83
- ## 9.0.0-canary.74
84
-
85
- ## 9.0.0-canary.73
86
-
87
- ## 9.0.0-canary.72
88
-
89
- ## 9.0.0-canary.71
90
-
91
- ## 9.0.0-canary.70
92
-
93
- ## 9.0.0-canary.69
94
-
95
- ## 9.0.0-canary.68
96
-
97
- ## 9.0.0-canary.67
98
-
99
- ## 9.0.0-canary.66
100
-
101
- ### Minor Changes
102
-
103
- - [#2339](https://github.com/graphcommerce-org/graphcommerce/pull/2339) [`df942e5`](https://github.com/graphcommerce-org/graphcommerce/commit/df942e5726ddb4d7c7d4b583aa474c7c0f0dea7d) - Show actual order status from the backend, improve order state logic ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
104
-
105
- ## 9.0.0-canary.65
106
-
107
- ### Patch Changes
108
-
109
- - [#2333](https://github.com/graphcommerce-org/graphcommerce/pull/2333) [`03c28ab`](https://github.com/graphcommerce-org/graphcommerce/commit/03c28ab342bca3179b7ce1650fa7c16df1119a86) - Avoid displaying 'undefined' for countryName or regionName ([@carlocarels90](https://github.com/carlocarels90))
110
-
111
- ## 9.0.0-canary.64
112
-
113
- ## 9.0.0-canary.63
114
-
115
- ## 9.0.0-canary.62
116
-
117
- ## 9.0.0-canary.61
118
-
119
- ### Minor Changes
120
-
121
- - [#2327](https://github.com/graphcommerce-org/graphcommerce/pull/2327) [`be719fc`](https://github.com/graphcommerce-org/graphcommerce/commit/be719fc465c8804ddcb720a93813262e3a292b69) - Implement CancelOrder mutation, add cancel order overlay to account section ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
122
-
123
- - [#2327](https://github.com/graphcommerce-org/graphcommerce/pull/2327) [`af83d81`](https://github.com/graphcommerce-org/graphcommerce/commit/af83d81656a4c1a014802fb052a94a079e9f60c1) - Add reorderItems mutation, add reorder button to order detail page ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
124
-
125
- ## 9.0.0-canary.60
126
-
127
- ## 9.0.0-canary.59
128
-
129
- ## 9.0.0-canary.58
130
-
131
- ### Minor Changes
132
-
133
- - [#2330](https://github.com/graphcommerce-org/graphcommerce/pull/2330) [`8de9c13`](https://github.com/graphcommerce-org/graphcommerce/commit/8de9c13b977633104ab81ce04def1dd6d1d4411b) - Added support X-Magento-Cache-Id to allow Varnish to cache requests that are made in the browser while users are logged in. For example the products query can now be cached for logged in users. Functionality can be disabled by setting `customerXMagentoCacheIdDisable: true` in your configuration. ([@paales](https://github.com/paales))
134
-
135
- ## 9.0.0-canary.57
136
-
137
- ## 9.0.0-canary.56
138
-
139
- ## 9.0.0-canary.55
140
-
141
- ### Minor Changes
142
-
143
- - [#2324](https://github.com/graphcommerce-org/graphcommerce/pull/2324) [`1c8b1e4`](https://github.com/graphcommerce-org/graphcommerce/commit/1c8b1e441ac44935bfd2215d62a71c02b3ba7e6f) - Implement the contactUs mutation, add contact us overlay ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
144
-
145
- ## 9.0.0-canary.54
146
-
147
- ## 8.1.0-canary.53
148
-
149
- ## 8.1.0-canary.52
150
-
151
- ### Minor Changes
152
-
153
- - [#2320](https://github.com/graphcommerce-org/graphcommerce/pull/2320) [`dc5e85c`](https://github.com/graphcommerce-org/graphcommerce/commit/dc5e85c95dad6145fde02a6e54f0fbd1cdfe9e3d) - Replace depricated updateCustomer mutations with updateCustomerV2 ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
154
-
155
- ## 8.1.0-canary.51
156
-
157
- ## 8.1.0-canary.50
158
-
159
- ## 8.1.0-canary.49
160
-
161
- ### Patch Changes
162
-
163
- - [#2317](https://github.com/graphcommerce-org/graphcommerce/pull/2317) [`ff95ab3`](https://github.com/graphcommerce-org/graphcommerce/commit/ff95ab31ee6e00c86cd9e96031f7babbd20e4280) - useSignInForm now optionally expects an email ([@paales](https://github.com/paales))
164
-
165
- ## 8.1.0-canary.48
166
-
167
- ### Minor Changes
168
-
169
- - [#2319](https://github.com/graphcommerce-org/graphcommerce/pull/2319) [`a3409e8`](https://github.com/graphcommerce-org/graphcommerce/commit/a3409e8a629ee95413da6547cbdcf48aa2502c23) - Created a new TelephoneElement component to make re-use easier ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
170
-
171
- ## 8.1.0-canary.47
172
-
173
- ### Minor Changes
174
-
175
- - [#2315](https://github.com/graphcommerce-org/graphcommerce/pull/2315) [`fb9118e`](https://github.com/graphcommerce-org/graphcommerce/commit/fb9118ec819d1b507d4fbde04f2ca34ec01ecf49) - Add guestOrder functionality, remove `size: 'max'` from getStaticProps ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
176
-
177
- ## 8.1.0-canary.46
178
-
179
- ## 8.1.0-canary.45
180
-
181
- ## 8.1.0-canary.44
182
-
183
- ## 8.1.0-canary.43
184
-
185
- ## 8.1.0-canary.42
186
-
187
- ## 8.1.0-canary.41
188
-
189
- ## 8.1.0-canary.40
190
-
191
- ### Minor Changes
192
-
193
- - [#2306](https://github.com/graphcommerce-org/graphcommerce/pull/2306) [`5e188e8`](https://github.com/graphcommerce-org/graphcommerce/commit/5e188e830dca4730c73830858f59a94e9d41ed12) - Add delete account functionality to the account section. Disabled by default and can be enabled through the config. ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
194
-
195
- ## 8.1.0-canary.39
196
-
197
- ## 8.1.0-canary.38
198
-
199
- ### Minor Changes
200
-
201
- - [#2305](https://github.com/graphcommerce-org/graphcommerce/pull/2305) [`77e8297`](https://github.com/graphcommerce-org/graphcommerce/commit/77e82976816994336c616208a651cb18ce9ea270) - Add company and vat fields to shipping and billing forms ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
202
-
203
- ### Patch Changes
204
-
205
- - [#2305](https://github.com/graphcommerce-org/graphcommerce/pull/2305) [`77e8297`](https://github.com/graphcommerce-org/graphcommerce/commit/77e82976816994336c616208a651cb18ce9ea270) - Fix bug with persist not applying saved changes by moving <FromPersist/> below the form components ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
206
-
207
- ## 8.1.0-canary.37
208
-
209
- ## 8.1.0-canary.36
210
-
211
- ## 8.1.0-canary.35
212
-
213
- ### Minor Changes
214
-
215
- - [#2301](https://github.com/graphcommerce-org/graphcommerce/pull/2301) [`47bb47b`](https://github.com/graphcommerce-org/graphcommerce/commit/47bb47bac4b3689a6859afbc587274d813e0b072) - Implement confirm email functionality ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
216
-
217
- ### Patch Changes
218
-
219
- - [#2301](https://github.com/graphcommerce-org/graphcommerce/pull/2301) [`13d0649`](https://github.com/graphcommerce-org/graphcommerce/commit/13d06498d121f93b52c25930e50aa3b0bd12a818) - Created a new EmailElement component to make re-use easier ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
220
-
221
- ## 8.1.0-canary.34
222
-
223
- ## 8.1.0-canary.33
224
-
225
- ## 8.1.0-canary.32
226
-
227
- ## 8.1.0-canary.31
228
-
229
- ## 8.1.0-canary.30
230
-
231
- ## 8.1.0-canary.29
232
-
233
- ## 8.1.0-canary.28
234
-
235
- ## 8.1.0-canary.27
236
-
237
- ## 8.1.0-canary.26
238
-
239
- ## 8.1.0-canary.25
240
-
241
- ## 8.1.0-canary.24
242
-
243
- ## 8.1.0-canary.23
244
-
245
- ## 8.1.0-canary.22
246
-
247
- ### Patch Changes
248
-
249
- - [#2283](https://github.com/graphcommerce-org/graphcommerce/pull/2283) [`170aebd`](https://github.com/graphcommerce-org/graphcommerce/commit/170aebde3fb0705504e6d0919e7fbad0b89c1197) - Prevent success message from showing up when form is still submitting a new request to update the users email ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
250
-
251
- ## 8.1.0-canary.21
252
-
253
- ## 8.1.0-canary.20
254
-
255
- ## 8.1.0-canary.19
256
-
257
- ## 8.1.0-canary.18
258
-
259
- ## 8.1.0-canary.17
260
-
261
- ## 8.1.0-canary.16
262
-
263
- ## 8.1.0-canary.15
264
-
265
- ## 8.1.0-canary.14
266
-
267
- ## 8.1.0-canary.13
268
-
269
- ## 8.1.0-canary.12
270
-
271
- ## 8.1.0-canary.11
272
-
273
- ## 8.1.0-canary.10
274
-
275
- ## 8.1.0-canary.9
276
-
277
- ## 8.1.0-canary.8
278
-
279
- ## 8.1.0-canary.7
280
-
281
- ## 8.1.0-canary.6
282
-
283
- ## 8.1.0-canary.5
284
-
285
- ## 8.0.6-canary.4
286
-
287
- ## 8.0.6-canary.3
288
-
289
- ## 8.0.6-canary.2
290
-
291
- ### Patch Changes
292
-
293
- - [#2234](https://github.com/graphcommerce-org/graphcommerce/pull/2234) [`0767bc4`](https://github.com/graphcommerce-org/graphcommerce/commit/0767bc40f7b596209f24ca4e745ff0441f3275c9) - Upgrade input components to no longer use muiRegister, which improves INP scores ([@FrankHarland](https://github.com/FrankHarland))
294
-
295
- - [#2234](https://github.com/graphcommerce-org/graphcommerce/pull/2234) [`530076e`](https://github.com/graphcommerce-org/graphcommerce/commit/530076e3664703cb8b577b7fcf1998a420819f60) - Moved all usages of useFormPersist to the <FormPersist/> component to prevent rerenders. ([@FrankHarland](https://github.com/FrankHarland))
296
-
297
- ## 8.0.6-canary.1
298
-
299
- ## 8.0.6-canary.0
300
-
301
- ## 8.0.5
302
-
303
- ### Patch Changes
304
-
305
- - [#2243](https://github.com/graphcommerce-org/graphcommerce/pull/2243) [`c2ddb9e`](https://github.com/graphcommerce-org/graphcommerce/commit/c2ddb9e1e9d08b4363cc1ffa31e23d715ab1bdb6) - Solve an issue where the cart wouldn't be merged after the customer created a new account. ([@paales](https://github.com/paales))
306
-
307
- ## 8.0.5-canary.10
308
-
309
- ## 8.0.5-canary.9
310
-
311
- ## 8.0.5-canary.8
312
-
313
- ## 8.0.5-canary.7
314
-
315
- ## 8.0.5-canary.6
316
-
317
- ### Patch Changes
318
-
319
- - [#2243](https://github.com/graphcommerce-org/graphcommerce/pull/2243) [`c2ddb9e`](https://github.com/graphcommerce-org/graphcommerce/commit/c2ddb9e1e9d08b4363cc1ffa31e23d715ab1bdb6) - Solve an issue where the cart wouldn't be merged after the customer created a new account. ([@paales](https://github.com/paales))
320
-
321
- ## 8.0.5-canary.5
322
-
323
- ## 8.0.5-canary.4
324
-
325
- ## 8.0.5-canary.3
326
-
327
- ## 8.0.5-canary.2
328
-
329
- ## 8.0.5-canary.1
330
-
331
- ## 8.0.5-canary.0
332
-
333
- ## 8.0.4
334
-
335
- ## 8.0.4-canary.1
336
-
337
- ## 8.0.4-canary.0
338
-
339
- ## 8.0.3
340
-
341
- ### Patch Changes
342
-
343
- - [#2212](https://github.com/graphcommerce-org/graphcommerce/pull/2212) [`6b61a93`](https://github.com/graphcommerce-org/graphcommerce/commit/6b61a93476505e66a3135844b9bce62ccdd1bdcf) - Solve an issue where the customer could not save their region in the customer account section. ([@paales](https://github.com/paales))
344
-
345
- - [#2205](https://github.com/graphcommerce-org/graphcommerce/pull/2205) [`3fbf3da`](https://github.com/graphcommerce-org/graphcommerce/commit/3fbf3da8a67f2fbaa7fa974a37cbbf34613844e4) - Solve an issue where the user would be presented with the Session expired dialog when the user would be logging in during the checkout process. ([@paales](https://github.com/paales))
346
-
347
- - [#2207](https://github.com/graphcommerce-org/graphcommerce/pull/2207) [`4d7594c`](https://github.com/graphcommerce-org/graphcommerce/commit/4d7594ca2174f74bfa9f66a464b77b3fd04f3560) - After changing the default shipping or billing address in the account section other address would not properly update ([@paales](https://github.com/paales))
348
-
349
- - [#2212](https://github.com/graphcommerce-org/graphcommerce/pull/2212) [`dbd943d`](https://github.com/graphcommerce-org/graphcommerce/commit/dbd943d9f588f24d5c73bdf35f2d3bbc5e0e3406) - Split out AddressFields into separate components and allow renaming fields. ([@paales](https://github.com/paales))
350
-
351
- ## 8.0.3-canary.6
352
-
353
- ## 8.0.3-canary.5
354
-
355
- ### Patch Changes
356
-
357
- - [#2212](https://github.com/graphcommerce-org/graphcommerce/pull/2212) [`6b61a93`](https://github.com/graphcommerce-org/graphcommerce/commit/6b61a93476505e66a3135844b9bce62ccdd1bdcf) - Solve an issue where the customer could not save their region in the customer account section. ([@paales](https://github.com/paales))
358
-
359
- - [#2212](https://github.com/graphcommerce-org/graphcommerce/pull/2212) [`dbd943d`](https://github.com/graphcommerce-org/graphcommerce/commit/dbd943d9f588f24d5c73bdf35f2d3bbc5e0e3406) - Split out AddressFields into separate components and allow renaming fields. ([@paales](https://github.com/paales))
360
-
361
- ## 8.0.3-canary.4
362
-
363
- ## 8.0.3-canary.3
364
-
365
- ## 8.0.3-canary.2
366
-
367
- ### Patch Changes
368
-
369
- - [#2205](https://github.com/graphcommerce-org/graphcommerce/pull/2205) [`3fbf3da`](https://github.com/graphcommerce-org/graphcommerce/commit/3fbf3da8a67f2fbaa7fa974a37cbbf34613844e4) - Solve an issue where the user would be presented with the Session expired dialog when the user would be logging in during the checkout process. ([@paales](https://github.com/paales))
370
-
371
- ## 8.0.3-canary.1
372
-
373
- ### Patch Changes
374
-
375
- - [#2207](https://github.com/graphcommerce-org/graphcommerce/pull/2207) [`4d7594c`](https://github.com/graphcommerce-org/graphcommerce/commit/4d7594ca2174f74bfa9f66a464b77b3fd04f3560) - After changing the default shipping or billing address in the account section other address would not properly update ([@paales](https://github.com/paales))
376
-
377
- ## 8.0.3-canary.0
378
-
379
- ## 8.0.2
380
-
381
- ### Patch Changes
382
-
383
- - [#2197](https://github.com/graphcommerce-org/graphcommerce/pull/2197) [`044331c`](https://github.com/graphcommerce-org/graphcommerce/commit/044331cf1ea3a6040cfe8e0f79fb62025d5a9d90) - Revert: Change sorting for customer orders in Descending Created at order ([@paales](https://github.com/paales))
384
-
385
- ## 8.0.2-canary.3
386
-
387
- ## 8.0.2-canary.2
388
-
389
- ### Patch Changes
390
-
391
- - [#2197](https://github.com/graphcommerce-org/graphcommerce/pull/2197) [`044331c`](https://github.com/graphcommerce-org/graphcommerce/commit/044331cf1ea3a6040cfe8e0f79fb62025d5a9d90) - Revert: Change sorting for customer orders in Descending Created at order ([@paales](https://github.com/paales))
392
-
393
- ## 8.0.2-canary.1
394
-
395
- ## 8.0.2-canary.0
396
-
397
- ## 8.0.1
398
-
399
- ### Patch Changes
400
-
401
- - [#2177](https://github.com/graphcommerce-org/graphcommerce/pull/2177) [`816d789`](https://github.com/graphcommerce-org/graphcommerce/commit/816d7893159528bbe4ffc51c3958c806b81b58b0) - Change sorting for customer orders in Descending Created at order ([@LaurensFranken](https://github.com/LaurensFranken))
402
-
403
- - [#2191](https://github.com/graphcommerce-org/graphcommerce/pull/2191) [`13ffa6b`](https://github.com/graphcommerce-org/graphcommerce/commit/13ffa6b945f1c72bf1fdc9298e4ce5dd76b48d73) - When a user was logging in from the checkout react would be caught in an infinite loop and thus the page would hang ([@JoshuaS98](https://github.com/JoshuaS98))
404
-
405
- - [#2187](https://github.com/graphcommerce-org/graphcommerce/pull/2187) [`09a2cc3`](https://github.com/graphcommerce-org/graphcommerce/commit/09a2cc35ceb5e714ffd02e573eebe7de842ae327) - Do not try to automatically invalidate the current token and fully rely on the Session Expired dialog ([@paales](https://github.com/paales))
406
-
407
- - [#2187](https://github.com/graphcommerce-org/graphcommerce/pull/2187) [`ee969bf`](https://github.com/graphcommerce-org/graphcommerce/commit/ee969bfc5415392747b04e0484685f5c611a2559) - After signing out the currentCartId was still returning a value causing the cart to be shown after signing out ([@paales](https://github.com/paales))
408
-
409
- ## 8.0.1-canary.4
410
-
411
- ### Patch Changes
412
-
413
- - [#2191](https://github.com/graphcommerce-org/graphcommerce/pull/2191) [`13ffa6b`](https://github.com/graphcommerce-org/graphcommerce/commit/13ffa6b945f1c72bf1fdc9298e4ce5dd76b48d73) - When a user was logging in from the checkout react would be caught in an infinite loop and thus the page would hang ([@JoshuaS98](https://github.com/JoshuaS98))
414
-
415
- ## 8.0.1-canary.3
416
-
417
- ## 8.0.1-canary.2
418
-
419
- ### Patch Changes
420
-
421
- - [#2177](https://github.com/graphcommerce-org/graphcommerce/pull/2177) [`816d789`](https://github.com/graphcommerce-org/graphcommerce/commit/816d7893159528bbe4ffc51c3958c806b81b58b0) - Change sorting for customer orders in Descending Created at order ([@LaurensFranken](https://github.com/LaurensFranken))
422
-
423
- ## 8.0.1-canary.1
424
-
425
- ## 8.0.1-canary.0
426
-
427
- ### Patch Changes
428
-
429
- - [#2187](https://github.com/graphcommerce-org/graphcommerce/pull/2187) [`09a2cc3`](https://github.com/graphcommerce-org/graphcommerce/commit/09a2cc35ceb5e714ffd02e573eebe7de842ae327) - Do not try to automatically invalidate the current token and fully rely on the Session Expired dialog ([@paales](https://github.com/paales))
430
-
431
- - [#2187](https://github.com/graphcommerce-org/graphcommerce/pull/2187) [`ee969bf`](https://github.com/graphcommerce-org/graphcommerce/commit/ee969bfc5415392747b04e0484685f5c611a2559) - After signing out the currentCartId was still returning a value causing the cart to be shown after signing out ([@paales](https://github.com/paales))
432
-
433
- ## 8.0.0
434
-
435
- ### Minor Changes
436
-
437
- - [#2175](https://github.com/graphcommerce-org/graphcommerce/pull/2175) [`a6bcb87`](https://github.com/graphcommerce-org/graphcommerce/commit/a6bcb8785d54ef735d82154a775822d84f2b2b80) - Autofill country dropdown in CreateCustomerAddressForm so AddPostcodeNLAddressFields plugin works by default ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
438
-
439
- - [#2110](https://github.com/graphcommerce-org/graphcommerce/pull/2110) [`d2e716d`](https://github.com/graphcommerce-org/graphcommerce/commit/d2e716d437fcfed13388ef536a8e73513744027b) - ---
440
-
441
- '@graphcommerce/magento-cart-email': minor '@graphcommerce/magento-customer': minor
442
-
443
- ***
444
-
445
- Added a new `enableGuestCheckoutLogin` configuration: During customer login, GraphCommerce queries Magento to determine whether the customer account already exists or not. If not, the sign-up form is shown instead.
446
-
447
- To restore previous behavior, set `enableGuestCheckoutLogin` to true. For Magento versions, 2.4.7, 2.4.6-p1 and up, 2.4.5-p3 and up, 2.4.4-p4 and up, the following setting must be set to Yes: `Stores -> Configuration -> Sales -> Checkout -> Checkout Options -> Enable Guest Checkout Login` ([@Jessevdpoel](https://github.com/Jessevdpoel))
448
-
449
- ### Patch Changes
450
-
451
- - [#2091](https://github.com/graphcommerce-org/graphcommerce/pull/2091) [`5b865d3`](https://github.com/graphcommerce-org/graphcommerce/commit/5b865d376fe3b830a03af15b56986a0448af4987) - Order details page in the customer account section is completely redesigned to be more in line with other areas. ([@StefanAngenent](https://github.com/StefanAngenent))
452
-
453
- - [#2048](https://github.com/graphcommerce-org/graphcommerce/pull/2048) [`a5c6550`](https://github.com/graphcommerce-org/graphcommerce/commit/a5c65506a7e72bd9ea101f665ce201e82396c63c) - Allow passing skip to useCustomerQuery and useGuestQuery ([@Jessevdpoel](https://github.com/Jessevdpoel))
454
-
455
- - [#2170](https://github.com/graphcommerce-org/graphcommerce/pull/2170) [`f3e906f`](https://github.com/graphcommerce-org/graphcommerce/commit/f3e906f7e374ce22d36af29c0f3c8153e18300e6) - Solved an issue where the inactive cart would set as the current cart when the customer had signed in, checked out their cart, session expired and tried to log in again. ([@FrankHarland](https://github.com/FrankHarland))
456
-
457
- - [#2107](https://github.com/graphcommerce-org/graphcommerce/pull/2107) [`2f51504`](https://github.com/graphcommerce-org/graphcommerce/commit/2f5150456eabcce410ad8a0f1cbebeedabb6564c) - Remember email adress when going from checkout to signin/up form ([@FrankHarland](https://github.com/FrankHarland))
458
-
459
- - [#2128](https://github.com/graphcommerce-org/graphcommerce/pull/2128) [`2320f8f`](https://github.com/graphcommerce-org/graphcommerce/commit/2320f8fa28713f45f0a9ecfc7d8623120add2a9a) - Fixed bug which caused region to not be set properly if user swapped countries in the checkout process. ([@Jessevdpoel](https://github.com/Jessevdpoel))
460
-
461
- - [#1999](https://github.com/graphcommerce-org/graphcommerce/pull/1999) [`ab834fb`](https://github.com/graphcommerce-org/graphcommerce/commit/ab834fbfe057fb507c371a6d22af282cc1b195d4) - Added a new 'Session expired' dialog that is shown when a GraphQL query or mutation returns a `graphql-authorization` error. This error is returned when the user's session has expired. The dialog allows the user to sign in again and then the query or mutation is re-executed. ([@paales](https://github.com/paales))
462
-
463
- - [#2166](https://github.com/graphcommerce-org/graphcommerce/pull/2166) [`304b816`](https://github.com/graphcommerce-org/graphcommerce/commit/304b81659caf82d9f500401d21da4110dd40db61) - When a user is logged in the modal is dismissed immediately without showing a succes page. This speeds up the interaction with the site. ([@FrankHarland](https://github.com/FrankHarland))
464
-
465
- - [#1999](https://github.com/graphcommerce-org/graphcommerce/pull/1999) [`c11f3b8`](https://github.com/graphcommerce-org/graphcommerce/commit/c11f3b88f187bb8e0059a6940b9835a076e5faf8) - Created a `debug.sessions` config that allows debugging sessions. Enable with `GC_DEBUG_SESSIONS=1` in your env or modify your graphcommerce.config.js ([@paales](https://github.com/paales))
466
-
467
- - [#2087](https://github.com/graphcommerce-org/graphcommerce/pull/2087) [`42c33c6`](https://github.com/graphcommerce-org/graphcommerce/commit/42c33c6e3adceee400bc9f10ec416731db9279c0) - The message when the email was updated was unstyled. ([@StefanAngenent](https://github.com/StefanAngenent))
468
-
469
- - [#2082](https://github.com/graphcommerce-org/graphcommerce/pull/2082) [`2e8d19c`](https://github.com/graphcommerce-org/graphcommerce/commit/2e8d19cccd305f0e8eb4c29d05161af6cfdb9d84) - Add 'Current email' translation ([@StefanAngenent](https://github.com/StefanAngenent))
470
-
471
- - [#2098](https://github.com/graphcommerce-org/graphcommerce/pull/2098) [`ca45472`](https://github.com/graphcommerce-org/graphcommerce/commit/ca45472246e084f4b88f91bc700351e29c63e0e2) - Fix `<EditAddressForm />` when addition field is null or undefined ([@JoshuaS98](https://github.com/JoshuaS98))
472
-
473
- ## 8.0.0-canary.100
474
-
475
- ## 8.0.0-canary.99
476
-
477
- ## 8.0.0-canary.98
478
-
479
- ## 8.0.0-canary.97
480
-
481
- ### Minor Changes
482
-
483
- - [#2175](https://github.com/graphcommerce-org/graphcommerce/pull/2175) [`a6bcb87`](https://github.com/graphcommerce-org/graphcommerce/commit/a6bcb8785d54ef735d82154a775822d84f2b2b80) - Autofill country dropdown in CreateCustomerAddressForm so AddPostcodeNLAddressFields plugin works by default ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
484
-
485
- ## 8.0.0-canary.96
486
-
487
- ## 8.0.0-canary.95
488
-
489
- ## 8.0.0-canary.94
490
-
491
- ## 8.0.0-canary.93
492
-
493
- ## 8.0.0-canary.92
494
-
495
- ## 8.0.0-canary.91
496
-
497
- ## 8.0.0-canary.90
498
-
499
- ### Patch Changes
500
-
501
- - [#2170](https://github.com/graphcommerce-org/graphcommerce/pull/2170) [`f3e906f`](https://github.com/graphcommerce-org/graphcommerce/commit/f3e906f7e374ce22d36af29c0f3c8153e18300e6) - fix(GCOM-1317): fix bug where inactive cached cart could be set as currentCartId ([@FrankHarland](https://github.com/FrankHarland))
502
-
503
- ## 8.0.0-canary.89
504
-
505
- ## 8.0.0-canary.88
506
-
507
- ### Patch Changes
508
-
509
- - [#2166](https://github.com/graphcommerce-org/graphcommerce/pull/2166) [`304b816`](https://github.com/graphcommerce-org/graphcommerce/commit/304b81659caf82d9f500401d21da4110dd40db61) - Dismiss login page and go back to previous page asap when logging in ([@FrankHarland](https://github.com/FrankHarland))
510
-
511
- ## 8.0.0-canary.87
512
-
513
- ## 8.0.0-canary.86
514
-
515
- ## 8.0.0-canary.85
516
-
517
- ## 8.0.0-canary.84
518
-
519
- ## 8.0.0-canary.83
520
-
521
- ## 8.0.0-canary.82
522
-
523
- ## 8.0.0-canary.81
524
-
525
- ## 8.0.0-canary.80
526
-
527
- ## 8.0.0-canary.79
528
-
529
- ## 8.0.0-canary.78
530
-
531
- ## 8.0.0-canary.77
532
-
533
- ## 8.0.0-canary.76
534
-
535
- ## 8.0.0-canary.75
536
-
537
- ## 8.0.0-canary.74
538
-
539
- ## 8.0.0-canary.73
540
-
541
- ## 8.0.0-canary.72
542
-
543
- ## 8.0.0-canary.71
544
-
545
- ## 8.0.0-canary.70
546
-
547
- ### Patch Changes
548
-
549
- - [#2128](https://github.com/graphcommerce-org/graphcommerce/pull/2128) [`2320f8f`](https://github.com/graphcommerce-org/graphcommerce/commit/2320f8fa28713f45f0a9ecfc7d8623120add2a9a) - Fixed bug which caused region to not be set properly if user swapped countries in the checkout process. ([@Jessevdpoel](https://github.com/Jessevdpoel))
550
-
551
- ## 8.0.0-canary.69
552
-
553
- ## 7.1.0-canary.68
554
-
555
- ### Patch Changes
556
-
557
- - [#1999](https://github.com/graphcommerce-org/graphcommerce/pull/1999) [`ab834fb`](https://github.com/graphcommerce-org/graphcommerce/commit/ab834fbfe057fb507c371a6d22af282cc1b195d4) - Added user session reevaluation after unathenticated call. Queries will be paused untill user has signed in again ([@paales](https://github.com/paales))
558
-
559
- - [#1999](https://github.com/graphcommerce-org/graphcommerce/pull/1999) [`c11f3b8`](https://github.com/graphcommerce-org/graphcommerce/commit/c11f3b88f187bb8e0059a6940b9835a076e5faf8) - Created a debug.sessions config that allows debugging sessions. Enable with GC_DEBUG_SESSIONS=1 in your env or modify your graphcommerce.config.js ([@paales](https://github.com/paales))
560
-
561
- ## 7.1.0-canary.67
562
-
563
- ## 7.1.0-canary.66
564
-
565
- ## 7.1.0-canary.65
566
-
567
- ## 7.1.0-canary.64
568
-
569
- ## 7.1.0-canary.63
570
-
571
- ## 7.1.0-canary.62
572
-
573
- ## 7.1.0-canary.61
574
-
575
- ## 7.1.0-canary.60
576
-
577
- ## 7.1.0-canary.59
578
-
579
- ## 7.1.0-canary.58
580
-
581
- ## 7.1.0-canary.57
582
-
583
- ## 7.1.0-canary.56
584
-
585
- ## 7.1.0-canary.55
586
-
587
- ## 7.1.0-canary.54
588
-
589
- ## 7.1.0-canary.53
590
-
591
- ## 7.1.0-canary.52
592
-
593
- ### Minor Changes
594
-
595
- - [#2110](https://github.com/graphcommerce-org/graphcommerce/pull/2110) [`d2e716d43`](https://github.com/graphcommerce-org/graphcommerce/commit/d2e716d437fcfed13388ef536a8e73513744027b) - ---
596
-
597
- '@graphcommerce/magento-cart-email': minor '@graphcommerce/magento-customer': minor
598
-
599
- ***
600
-
601
- Added a new enableGuestCheckoutLogin configuration: During customer login, GraphCommerce queries Magento to determine whether the customer account already exists or not. If not, the sign-up form is shown instead.
602
-
603
- To restore previous behavior, set enableGuestCheckoutLogin to true. For Magento versions, 2.4.7, 2.4.6-p1 and up, 2.4.5-p3 and up, 2.4.4-p4 and up, the following setting must be set to Yes: `Stores -> Configuration -> Sales -> Checkout -> Checkout Options -> Enable Guest Checkout Login` ([@Jessevdpoel](https://github.com/Jessevdpoel))
604
-
605
- ## 7.1.0-canary.51
606
-
607
- ## 7.1.0-canary.50
608
-
609
- ## 7.1.0-canary.49
610
-
611
- ## 7.1.0-canary.48
612
-
613
- ## 7.1.0-canary.47
614
-
615
- ## 7.1.0-canary.46
616
-
617
- ## 7.1.0-canary.45
618
-
619
- ## 7.1.0-canary.38
620
-
621
- ### Patch Changes
622
-
623
- - [#2048](https://github.com/graphcommerce-org/graphcommerce/pull/2048) [`a5c65506a`](https://github.com/graphcommerce-org/graphcommerce/commit/a5c65506a7e72bd9ea101f665ce201e82396c63c) - Allow passing skip to useCustomerQuery and useGuestQuery ([@Jessevdpoel](https://github.com/Jessevdpoel))
624
-
625
- ## 7.1.0-canary.37
626
-
627
- ## 7.1.0-canary.36
628
-
629
- ### Patch Changes
630
-
631
- - [#2107](https://github.com/graphcommerce-org/graphcommerce/pull/2107) [`2f5150456`](https://github.com/graphcommerce-org/graphcommerce/commit/2f5150456eabcce410ad8a0f1cbebeedabb6564c) - feat(GCOM-1237): remember email adress when going from checkout to si… ([@FrankHarland](https://github.com/FrankHarland))
632
-
633
- ## 7.1.0-canary.35
634
-
635
- ## 7.1.0-canary.34
636
-
637
- ## 7.1.0-canary.33
638
-
639
- ## 7.1.0-canary.32
640
-
641
- ### Patch Changes
642
-
643
- - [#2091](https://github.com/graphcommerce-org/graphcommerce/pull/2091) [`5b865d376`](https://github.com/graphcommerce-org/graphcommerce/commit/5b865d376fe3b830a03af15b56986a0448af4987) - Update OrderDetails and styling ([@StefanAngenent](https://github.com/StefanAngenent))
644
-
645
- ## 7.1.0-canary.31
646
-
647
- ## 7.1.0-canary.30
648
-
649
- ## 7.1.0-canary.29
650
-
651
- ## 7.1.0-canary.28
652
-
653
- ## 7.1.0-canary.27
654
-
655
- ## 7.1.0-canary.26
656
-
657
- ## 7.1.0-canary.25
658
-
659
- ## 7.1.0-canary.24
660
-
661
- ## 7.1.0-canary.23
662
-
663
- ### Patch Changes
664
-
665
- - [#2098](https://github.com/graphcommerce-org/graphcommerce/pull/2098) [`ca4547224`](https://github.com/graphcommerce-org/graphcommerce/commit/ca45472246e084f4b88f91bc700351e29c63e0e2) - Fix EditAddressForm when addition field is null or undefined ([@JoshuaS98](https://github.com/JoshuaS98))
666
-
667
- ## 7.1.0-canary.22
668
-
669
- ## 7.1.0-canary.21
670
-
671
- ## 7.1.0-canary.20
672
-
673
- ## 7.1.0-canary.19
674
-
675
- ## 7.1.0-canary.18
676
-
677
- ## 7.1.0-canary.17
678
-
679
- ## 7.1.0-canary.16
680
-
681
- ### Patch Changes
682
-
683
- - [#2087](https://github.com/graphcommerce-org/graphcommerce/pull/2087) [`42c33c6e3`](https://github.com/graphcommerce-org/graphcommerce/commit/42c33c6e3adceee400bc9f10ec416731db9279c0) - fix email update snackbar styling ([@StefanAngenent](https://github.com/StefanAngenent))
684
-
685
- ## 7.1.0-canary.15
686
-
687
- ### Patch Changes
688
-
689
- - [#2082](https://github.com/graphcommerce-org/graphcommerce/pull/2082) [`2e8d19ccc`](https://github.com/graphcommerce-org/graphcommerce/commit/2e8d19cccd305f0e8eb4c29d05161af6cfdb9d84) - Add current email translation ([@StefanAngenent](https://github.com/StefanAngenent))
690
-
691
- ## 7.1.0-canary.14
692
-
693
- ## 7.1.0-canary.13
694
-
695
- ## 7.1.0-canary.12
696
-
697
- ## 7.1.0-canary.11
698
-
699
- ## 7.1.0-canary.10
700
-
701
- ## 7.1.0-canary.9
702
-
703
- ## 7.1.0-canary.8
704
-
705
- ## 7.0.2-canary.7
706
-
707
- ## 7.0.2-canary.6
708
-
709
- ## 7.0.2-canary.5
710
-
711
- ## 7.0.1
712
-
713
- ### Patch Changes
714
-
715
- - [#2032](https://github.com/graphcommerce-org/graphcommerce/pull/2032) [`7e44afc94`](https://github.com/graphcommerce-org/graphcommerce/commit/7e44afc94629a938da1b819d99fe3d19857de497) - Add shipping adresses translation ([@StefanAngenent](https://github.com/StefanAngenent))
716
-
717
- ## 7.0.1-canary.15
718
-
719
- ## 7.0.1-canary.14
720
-
721
- ## 7.0.1-canary.13
722
-
723
- ## 7.0.1-canary.12
724
-
725
- ## 7.0.1-canary.11
726
-
727
- ## 7.0.1-canary.10
728
-
729
- ## 7.0.1-canary.9
730
-
731
- ## 7.0.1-canary.8
732
-
733
- ## 7.0.1-canary.7
734
-
735
- ## 7.0.1-canary.6
736
-
737
- ## 7.0.1-canary.5
738
-
739
- ## 7.0.1-canary.4
740
-
741
- ## 7.0.1-canary.3
742
-
743
- ### Patch Changes
744
-
745
- - [#2032](https://github.com/graphcommerce-org/graphcommerce/pull/2032) [`7e44afc94`](https://github.com/graphcommerce-org/graphcommerce/commit/7e44afc94629a938da1b819d99fe3d19857de497) - Add shipping adresses translation ([@StefanAngenent](https://github.com/StefanAngenent))
746
-
747
- ## 7.0.1-canary.2
748
-
749
- ## 7.0.1-canary.1
750
-
751
- ## 7.0.1-canary.0
752
-
753
- ## 7.0.0
754
-
755
- ### Minor Changes
756
-
757
- - [#1962](https://github.com/graphcommerce-org/graphcommerce/pull/1962) [`518b6ca24`](https://github.com/graphcommerce-org/graphcommerce/commit/518b6ca248fc94624dc06eb02de5b3eac0fc9483) - Created a new `<ValidatedPasswordElement/>` which validates according to Magento's validation groups and implement on all locations. Move remaining password fields to `<PasswordElement />` ([@carlocarels90](https://github.com/carlocarels90))
758
-
759
- - [#1926](https://github.com/graphcommerce-org/graphcommerce/pull/1926) [`ab8877fdb`](https://github.com/graphcommerce-org/graphcommerce/commit/ab8877fdb6147960ce656d28306d719e92f6de68) - Made the follow order link in the order card & order details a working `<Link />` if provided from magento backend. ([@JoshuaS98](https://github.com/JoshuaS98))
760
-
761
- ### Patch Changes
762
-
763
- - [#1916](https://github.com/graphcommerce-org/graphcommerce/pull/1916) [`97ebc19af`](https://github.com/graphcommerce-org/graphcommerce/commit/97ebc19aff093bf57d24d009e96661ad43926fd6) - The customer's token would be invalidated if any authorization error occured. Now only scoped to customer queries and mutations, potentially reducing the amount of random logouts. ([@paales](https://github.com/paales))
764
-
765
- - [#1952](https://github.com/graphcommerce-org/graphcommerce/pull/1952) [`f1fe4f598`](https://github.com/graphcommerce-org/graphcommerce/commit/f1fe4f5986cee1f7c8313152e43691ed939c8f21) - Enable password fields when there is an error and user input correction is required. ([@carlocarels90](https://github.com/carlocarels90))
766
-
767
- - [#1914](https://github.com/graphcommerce-org/graphcommerce/pull/1914) [`38d6c4888`](https://github.com/graphcommerce-org/graphcommerce/commit/38d6c488850013b36cae9f388996039219c1327e) - Errors in the cart didn't allow for recovery from the faulty state ([@paales](https://github.com/paales))
768
-
769
- - [#1930](https://github.com/graphcommerce-org/graphcommerce/pull/1930) [`c8d023e9e`](https://github.com/graphcommerce-org/graphcommerce/commit/c8d023e9e874131cd9f8fe192b1fca5fe1a26ee3) - Fix the 'close menu' on search and add the option to secondary menu items ([@StefanAngenent](https://github.com/StefanAngenent))
770
-
771
- - [#2006](https://github.com/graphcommerce-org/graphcommerce/pull/2006) [`80b60cb40`](https://github.com/graphcommerce-org/graphcommerce/commit/80b60cb404882260bd0e8184f3e54f4720925c96) - The Billing address was set to the shipping address when a default billing address was available and made prefix optional when creating an address ([@Jessevdpoel](https://github.com/Jessevdpoel))
772
-
773
- - [#1942](https://github.com/graphcommerce-org/graphcommerce/pull/1942) [`21b0d0c48`](https://github.com/graphcommerce-org/graphcommerce/commit/21b0d0c48603343c09f287978bf051140e9be912) - Customer's session is now revalidated when a previous session is detected on pageload, making sure the customer is still logged in. ([@paales](https://github.com/paales))
774
-
775
- - [#1972](https://github.com/graphcommerce-org/graphcommerce/pull/1972) [`cda89820d`](https://github.com/graphcommerce-org/graphcommerce/commit/cda89820dc50e2019a26239b7450863d8c862bfb) - Ensure correct width for CircularProgress and fix misalignment in rotate animation ([@carlocarels90](https://github.com/carlocarels90))
776
-
777
- - [#2016](https://github.com/graphcommerce-org/graphcommerce/pull/2016) [`227ddcee8`](https://github.com/graphcommerce-org/graphcommerce/commit/227ddcee8808715928371c1f3a4c7925032df0ef) - Made cardProps on CustomerAddressActionCards overridable. ([@Jessevdpoel](https://github.com/Jessevdpoel))
778
-
779
- - [#1969](https://github.com/graphcommerce-org/graphcommerce/pull/1969) [`838322a97`](https://github.com/graphcommerce-org/graphcommerce/commit/838322a97c7ef1b8aa919196e756da381904bf04) - Fixing the Internal Server Error if the third address line is empty. ([@action-simon](https://github.com/action-simon))
780
-
781
- ## 6.2.0-canary.98
782
-
783
- ## 6.2.0-canary.97
784
-
785
- ## 6.2.0-canary.96
786
-
787
- ## 6.2.0-canary.95
788
-
789
- ## 6.2.0-canary.94
790
-
791
- ## 6.2.0-canary.93
792
-
793
- ## 6.2.0-canary.92
794
-
795
- ## 6.2.0-canary.91
796
-
797
- ## 6.2.0-canary.90
798
-
799
- ## 6.2.0-canary.89
800
-
801
- ## 6.2.0-canary.88
802
-
803
- ## 6.2.0-canary.87
804
-
805
- ## 6.2.0-canary.86
806
-
807
- ## 6.2.0-canary.85
808
-
809
- ## 6.2.0-canary.84
810
-
811
- ## 6.2.0-canary.83
812
-
813
- ## 6.2.0-canary.82
814
-
815
- ## 6.2.0-canary.81
816
-
817
- ## 6.2.0-canary.80
818
-
819
- ## 6.2.0-canary.79
820
-
821
- ## 6.2.0-canary.78
822
-
823
- ## 6.2.0-canary.77
824
-
825
- ## 6.2.0-canary.76
826
-
827
- ## 6.2.0-canary.75
828
-
829
- ### Patch Changes
830
-
831
- - [#2016](https://github.com/graphcommerce-org/graphcommerce/pull/2016) [`227ddcee8`](https://github.com/graphcommerce-org/graphcommerce/commit/227ddcee8808715928371c1f3a4c7925032df0ef) - Made cardProps on CustomerAddressActionCards overridable. ([@Jessevdpoel](https://github.com/Jessevdpoel))
832
-
833
- ## 6.2.0-canary.74
834
-
835
- ### Patch Changes
836
-
837
- - [#2006](https://github.com/graphcommerce-org/graphcommerce/pull/2006) [`80b60cb40`](https://github.com/graphcommerce-org/graphcommerce/commit/80b60cb404882260bd0e8184f3e54f4720925c96) - Bugfix for unintentionally overriding the billing address even if a default address was set. Also made prefix optional when creating an address ([@Jessevdpoel](https://github.com/Jessevdpoel))
838
-
839
- ## 6.2.0-canary.73
840
-
841
- ## 6.2.0-canary.72
842
-
843
- ## 6.2.0-canary.71
844
-
845
- ## 6.2.0-canary.70
846
-
847
- ## 6.2.0-canary.69
848
-
849
- ## 6.2.0-canary.68
850
-
851
- ## 6.2.0-canary.67
852
-
853
- ## 6.2.0-canary.66
854
-
855
- ## 6.2.0-canary.65
856
-
857
- ## 6.2.0-canary.64
858
-
859
- ## 6.2.0-canary.63
860
-
861
- ## 6.2.0-canary.62
862
-
863
- ## 6.2.0-canary.61
864
-
865
- ## 6.2.0-canary.60
866
-
867
- ## 6.2.0-canary.59
868
-
869
- ## 6.2.0-canary.58
870
-
871
- ## 6.2.0-canary.57
872
-
873
- ## 6.2.0-canary.56
874
-
875
- ## 6.2.0-canary.55
876
-
877
- ## 6.2.0-canary.54
878
-
879
- ## 6.2.0-canary.53
880
-
881
- ## 6.2.0-canary.52
882
-
883
- ### Patch Changes
884
-
885
- - [#1972](https://github.com/graphcommerce-org/graphcommerce/pull/1972) [`cda89820d`](https://github.com/graphcommerce-org/graphcommerce/commit/cda89820dc50e2019a26239b7450863d8c862bfb) - Ensure correct width for CircularProgress and fix misalignment in rotate animation ([@carlocarels90](https://github.com/carlocarels90))
886
-
887
- ## 6.2.0-canary.51
888
-
889
- ## 6.2.0-canary.50
890
-
891
- ## 6.2.0-canary.49
892
-
893
- ## 6.2.0-canary.48
894
-
895
- ## 6.2.0-canary.47
896
-
897
- ### Patch Changes
898
-
899
- - [#1969](https://github.com/graphcommerce-org/graphcommerce/pull/1969) [`838322a97`](https://github.com/graphcommerce-org/graphcommerce/commit/838322a97c7ef1b8aa919196e756da381904bf04) - Fixing the Internal Server Error if the third address line is empty. ([@action-simon](https://github.com/action-simon))
900
-
901
- ## 6.2.0-canary.46
902
-
903
- ## 6.2.0-canary.45
3
+ ## 9.0.0
904
4
 
905
5
  ### Minor Changes
906
6
 
907
- - [#1962](https://github.com/graphcommerce-org/graphcommerce/pull/1962) [`518b6ca24`](https://github.com/graphcommerce-org/graphcommerce/commit/518b6ca248fc94624dc06eb02de5b3eac0fc9483) - Created a new `<ValidatedPasswordElement/>` which validates according to Magento's validation groups and implement on all locations. Move remaining password fields to `<PasswordElement />` ([@carlocarels90](https://github.com/carlocarels90))
908
-
909
- ## 6.2.0-canary.44
7
+ - [#2319](https://github.com/graphcommerce-org/graphcommerce/pull/2319) [`a3409e8`](https://github.com/graphcommerce-org/graphcommerce/commit/a3409e8a629ee95413da6547cbdcf48aa2502c23) - Created a new `<TelephoneElement />` component to make re-use easier. ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
910
8
 
911
- ## 6.2.0-canary.43
9
+ - [#2327](https://github.com/graphcommerce-org/graphcommerce/pull/2327) [`be719fc`](https://github.com/graphcommerce-org/graphcommerce/commit/be719fc465c8804ddcb720a93813262e3a292b69) - Implemented the `CancelOrder` mutation and added a cancel order overlay to the account section. ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
912
10
 
913
- ## 6.2.0-canary.42
11
+ - [#2306](https://github.com/graphcommerce-org/graphcommerce/pull/2306) [`5e188e8`](https://github.com/graphcommerce-org/graphcommerce/commit/5e188e830dca4730c73830858f59a94e9d41ed12) - Added delete account functionality to the account section. Disabled by default and can be enabled through the config. ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
914
12
 
915
- ## 6.2.0-canary.41
13
+ - [#2305](https://github.com/graphcommerce-org/graphcommerce/pull/2305) [`77e8297`](https://github.com/graphcommerce-org/graphcommerce/commit/77e82976816994336c616208a651cb18ce9ea270) - Added `<CompanyFields/>` with `<CompanyName />` and `<CompanyVAT />` to shipping and billing forms. ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
916
14
 
917
- ## 6.2.0-canary.40
15
+ - [#2327](https://github.com/graphcommerce-org/graphcommerce/pull/2327) [`af83d81`](https://github.com/graphcommerce-org/graphcommerce/commit/af83d81656a4c1a014802fb052a94a079e9f60c1) - Add `reorderItems` mutation, add `reorder` button to order detail page. ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
918
16
 
919
- ## 6.2.0-canary.39
920
-
921
- ## 6.2.0-canary.38
922
-
923
- ## 6.2.0-canary.37
924
-
925
- ### Patch Changes
17
+ - [#2320](https://github.com/graphcommerce-org/graphcommerce/pull/2320) [`dc5e85c`](https://github.com/graphcommerce-org/graphcommerce/commit/dc5e85c95dad6145fde02a6e54f0fbd1cdfe9e3d) - Replace deprecated `updateCustomer` mutations with `updateCustomerV2`. ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
926
18
 
927
- - [#1952](https://github.com/graphcommerce-org/graphcommerce/pull/1952) [`f1fe4f598`](https://github.com/graphcommerce-org/graphcommerce/commit/f1fe4f5986cee1f7c8313152e43691ed939c8f21) - enable password fields when there is an error and user input correction is required. ([@carlocarels90](https://github.com/carlocarels90))
19
+ - [#2392](https://github.com/graphcommerce-org/graphcommerce/pull/2392) [`1c0bde3`](https://github.com/graphcommerce-org/graphcommerce/commit/1c0bde328035de75b165c40e4a0fe80c7de2267b) - Redirect users to homepage after password reset as `router.back()` often returns an empty or invalid history state. ([@carlocarels90](https://github.com/carlocarels90))
928
20
 
929
- ## 6.2.0-canary.36
21
+ - [#2366](https://github.com/graphcommerce-org/graphcommerce/pull/2366) [`3612c99`](https://github.com/graphcommerce-org/graphcommerce/commit/3612c994b80bb3b1bc02de10668f69a332402dc4) - Add `permissions` config so the website or store can be configurated to run in different modes. ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
930
22
 
931
- ## 6.2.0-canary.35
23
+ - [#2324](https://github.com/graphcommerce-org/graphcommerce/pull/2324) [`1c8b1e4`](https://github.com/graphcommerce-org/graphcommerce/commit/1c8b1e441ac44935bfd2215d62a71c02b3ba7e6f) - Implement the `contactUs` mutation, add contact us overlay. ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
932
24
 
933
- ## 6.2.0-canary.34
25
+ - [#2330](https://github.com/graphcommerce-org/graphcommerce/pull/2330) [`8de9c13`](https://github.com/graphcommerce-org/graphcommerce/commit/8de9c13b977633104ab81ce04def1dd6d1d4411b) - Added support `X-Magento-Cache-Id` to allow Varnish to cache requests that are made in the browser while users are logged in. For example the products query can now be cached for logged in users. Functionality can be disabled by setting `customerXMagentoCacheIdDisable: true` in your configuration. ([@paales](https://github.com/paales))
934
26
 
935
- ## 6.2.0-canary.33
27
+ - [#2315](https://github.com/graphcommerce-org/graphcommerce/pull/2315) [`fb9118e`](https://github.com/graphcommerce-org/graphcommerce/commit/fb9118ec819d1b507d4fbde04f2ca34ec01ecf49) - Add `guestOrder` functionality. ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
936
28
 
937
- ## 6.2.0-canary.32
29
+ - [#2301](https://github.com/graphcommerce-org/graphcommerce/pull/2301) [`47bb47b`](https://github.com/graphcommerce-org/graphcommerce/commit/47bb47bac4b3689a6859afbc587274d813e0b072) - Implement confirm email functionality ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
938
30
 
939
- ## 6.2.0-canary.31
31
+ - [#2339](https://github.com/graphcommerce-org/graphcommerce/pull/2339) [`df942e5`](https://github.com/graphcommerce-org/graphcommerce/commit/df942e5726ddb4d7c7d4b583aa474c7c0f0dea7d) - Show actual order status from the backend, improve order state logic. ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
940
32
 
941
- ## 6.2.0-canary.30
33
+ - [#2341](https://github.com/graphcommerce-org/graphcommerce/pull/2341) [`1d6512d`](https://github.com/graphcommerce-org/graphcommerce/commit/1d6512d4118cfb46602aa1f2432c3566fdb3261d) - Rename `experimental_useV2` prop to `deprecated_useV1` in `useFromGql` and enable it by default. ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
942
34
 
943
35
  ### Patch Changes
944
36
 
945
- - [#1942](https://github.com/graphcommerce-org/graphcommerce/pull/1942) [`21b0d0c48`](https://github.com/graphcommerce-org/graphcommerce/commit/21b0d0c48603343c09f287978bf051140e9be912) - Customer's session is now revalidated when a previous session is detected on pageload, making sure the customer is still logged in. ([@paales](https://github.com/paales))
946
-
947
- ## 6.2.0-canary.29
37
+ - [#2354](https://github.com/graphcommerce-org/graphcommerce/pull/2354) [`7cd5c1c`](https://github.com/graphcommerce-org/graphcommerce/commit/7cd5c1cadf8dac43de9e5bb19038383be64aa08f) - Fix issues when using non-hex colors in theme ([@bramvanderholst](https://github.com/bramvanderholst))
948
38
 
949
- ## 6.2.0-canary.28
39
+ - [#2341](https://github.com/graphcommerce-org/graphcommerce/pull/2341) [`cc1c6e8`](https://github.com/graphcommerce-org/graphcommerce/commit/cc1c6e8c857c12f2d38d7283a250e3b77bd885f4) - The `<AddressCountryRegion/>` component would show a warning if the countries weren't loaded yet. It will now show a readonly field with the country code. ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
950
40
 
951
- ## 6.2.0-canary.27
41
+ - [#2448](https://github.com/graphcommerce-org/graphcommerce/pull/2448) [`cca7a52`](https://github.com/graphcommerce-org/graphcommerce/commit/cca7a5209d5aa6b914ac738f71e6d90cc72f71a6) - Replace useWatch with watch in order to prevent email from being undefinded when already being prefilled for expired sessions ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
952
42
 
953
- ## 6.2.0-canary.26
43
+ - [#2379](https://github.com/graphcommerce-org/graphcommerce/pull/2379) [`6202fc7`](https://github.com/graphcommerce-org/graphcommerce/commit/6202fc7d2f36d5d1f2fedb74b2f2d93b308d5885) - In some cases the `xMagentoCacheId` wasn't defined in the returned query, making sure the application doesn't crash. ([@paales](https://github.com/paales))
954
44
 
955
- ## 6.2.0-canary.25
45
+ - [#2380](https://github.com/graphcommerce-org/graphcommerce/pull/2380) [`d601222`](https://github.com/graphcommerce-org/graphcommerce/commit/d601222c2ca538969023e9d42fdfee2a91cfa0d4) - Solve issue where persisted Form-data would remain in the sessionStorage after logging out. ([@paales](https://github.com/paales))
956
46
 
957
- ## 6.2.0-canary.24
47
+ - [#2317](https://github.com/graphcommerce-org/graphcommerce/pull/2317) [`ff95ab3`](https://github.com/graphcommerce-org/graphcommerce/commit/ff95ab31ee6e00c86cd9e96031f7babbd20e4280) - The `useSignInForm` hook now optionally accepts an email prop. ([@paales](https://github.com/paales))
958
48
 
959
- ## 6.2.0-canary.23
49
+ - [#2234](https://github.com/graphcommerce-org/graphcommerce/pull/2234) [`0767bc4`](https://github.com/graphcommerce-org/graphcommerce/commit/0767bc40f7b596209f24ca4e745ff0441f3275c9) - Upgrade input components to no longer use `muiRegister`, which improves INP scores. ([@FrankHarland](https://github.com/FrankHarland))
960
50
 
961
- ## 6.2.0-canary.22
51
+ - [#2445](https://github.com/graphcommerce-org/graphcommerce/pull/2445) [`e09905a`](https://github.com/graphcommerce-org/graphcommerce/commit/e09905a1d821b4ac36bb22f31a3e90c2d83e3049) - fix session expired email not always available in cache ([@StefanAngenent](https://github.com/StefanAngenent))
962
52
 
963
- ## 6.2.0-canary.21
53
+ - [#2411](https://github.com/graphcommerce-org/graphcommerce/pull/2411) [`7831a40`](https://github.com/graphcommerce-org/graphcommerce/commit/7831a404e27cf743dc25989e6155233ad1368aef) - Prevent overlap between autofilled data and input label for all TextFieldElements and its derivatives. ([@carlocarels90](https://github.com/carlocarels90))
964
54
 
965
- ## 6.2.0-canary.20
55
+ - [#2341](https://github.com/graphcommerce-org/graphcommerce/pull/2341) [`b8b621a`](https://github.com/graphcommerce-org/graphcommerce/commit/b8b621a4a7549cae4ac56fee76773443a0d55504) - The `<CompanyFields />` toggle wouldn't be valid when Private was selected and would only validate if Business was selected. ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
966
56
 
967
- ## 6.2.0-canary.19
57
+ - [#2441](https://github.com/graphcommerce-org/graphcommerce/pull/2441) [`0d0aca2`](https://github.com/graphcommerce-org/graphcommerce/commit/0d0aca2ebd93fa04769ff85016a3be96685986ce) - Check validation of email field in SignInForm and SignUpForm ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
968
58
 
969
- ## 6.2.0-canary.18
59
+ - [#2404](https://github.com/graphcommerce-org/graphcommerce/pull/2404) [`a5c52ac`](https://github.com/graphcommerce-org/graphcommerce/commit/a5c52ac6e56ca34819f86708c00b0e8dec39d95c) - fix: formData.region can be undefined when creating new address ([@FrankHarland](https://github.com/FrankHarland))
970
60
 
971
- ## 6.2.0-canary.17
61
+ - [#2352](https://github.com/graphcommerce-org/graphcommerce/pull/2352) [`8ace660`](https://github.com/graphcommerce-org/graphcommerce/commit/8ace660addf25eacb49376eceb5e3bfc351a2c57) - Add `disableMargin` prop to `<WaitForCustomer/>` component. ([@JoshuaS98](https://github.com/JoshuaS98))
972
62
 
973
- ## 6.2.0-canary.16
63
+ - [#2234](https://github.com/graphcommerce-org/graphcommerce/pull/2234) [`530076e`](https://github.com/graphcommerce-org/graphcommerce/commit/530076e3664703cb8b577b7fcf1998a420819f60) - Moved all usages of `useFormPersist` to the `<FormPersist/>` component to prevent rerenders. ([@FrankHarland](https://github.com/FrankHarland))
974
64
 
975
- ### Patch Changes
65
+ - [#2301](https://github.com/graphcommerce-org/graphcommerce/pull/2301) [`13d0649`](https://github.com/graphcommerce-org/graphcommerce/commit/13d06498d121f93b52c25930e50aa3b0bd12a818) - Created a new `<EmailElement/>` component to make re-use easier. ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
976
66
 
977
- - [#1930](https://github.com/graphcommerce-org/graphcommerce/pull/1930) [`c8d023e9e`](https://github.com/graphcommerce-org/graphcommerce/commit/c8d023e9e874131cd9f8fe192b1fca5fe1a26ee3) - Fix the close menu on search and add the option to secondary menu items ([@StefanAngenent](https://github.com/StefanAngenent))
67
+ - [#2283](https://github.com/graphcommerce-org/graphcommerce/pull/2283) [`170aebd`](https://github.com/graphcommerce-org/graphcommerce/commit/170aebde3fb0705504e6d0919e7fbad0b89c1197) - Prevent success message from showing up when updating the users email while the form is still submitting a new request to update the users email. ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
978
68
 
979
- ## 6.2.0-canary.15
69
+ - [#2380](https://github.com/graphcommerce-org/graphcommerce/pull/2380) [`355a9ac`](https://github.com/graphcommerce-org/graphcommerce/commit/355a9ac21e4a6741320d7dcb42327392be83786e) - Remove the privateContext directive from the query before sending to the server ([@paales](https://github.com/paales))
980
70
 
981
- ### Minor Changes
71
+ - [#2440](https://github.com/graphcommerce-org/graphcommerce/pull/2440) [`7fe3bc5`](https://github.com/graphcommerce-org/graphcommerce/commit/7fe3bc5109a15a4cb4ab46a987b40f304c5add48) - fix session expired email not always available in cache ([@StefanAngenent](https://github.com/StefanAngenent))
982
72
 
983
- - [#1926](https://github.com/graphcommerce-org/graphcommerce/pull/1926) [`ab8877fdb`](https://github.com/graphcommerce-org/graphcommerce/commit/ab8877fdb6147960ce656d28306d719e92f6de68) - Made the follow order link in the order card & order details a working <Link /> if provided from magento backend. ([@JoshuaS98](https://github.com/JoshuaS98))
73
+ - [#2305](https://github.com/graphcommerce-org/graphcommerce/pull/2305) [`77e8297`](https://github.com/graphcommerce-org/graphcommerce/commit/77e82976816994336c616208a651cb18ce9ea270) - Fix bug with persist not applying saved changes by moving `<FromPersist/>` below the form components. ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
984
74
 
985
- ## 6.2.0-canary.14
75
+ - [#2452](https://github.com/graphcommerce-org/graphcommerce/pull/2452) [`5dfd3b2`](https://github.com/graphcommerce-org/graphcommerce/commit/5dfd3b201255ef35263485d04153d37bb7e4fe67) - Renamed useInContextQuery to usePrivateQuery ([@paales](https://github.com/paales))
986
76
 
987
- ## 6.2.0-canary.13
77
+ - [#2438](https://github.com/graphcommerce-org/graphcommerce/pull/2438) [`cb8d2f0`](https://github.com/graphcommerce-org/graphcommerce/commit/cb8d2f0059d64242260e30ce34655868f204ef4c) - Made all component prop types exported ([@bramvanderholst](https://github.com/bramvanderholst))
988
78
 
989
- ## 6.2.0-canary.12
79
+ - [#2421](https://github.com/graphcommerce-org/graphcommerce/pull/2421) [`8aaca29`](https://github.com/graphcommerce-org/graphcommerce/commit/8aaca29147da4d4a508fb1a00c088d30e2a304cf) - Forward BadgeProps to WishlistFab, CartFab and CustomerFab ([@paales](https://github.com/paales))
990
80
 
991
- ## 6.2.0-canary.11
81
+ - [#2438](https://github.com/graphcommerce-org/graphcommerce/pull/2438) [`49937fd`](https://github.com/graphcommerce-org/graphcommerce/commit/49937fd765338e25899d427ee4d799fa7978faeb) - Allow changing various props for internal components ([@bramvanderholst](https://github.com/bramvanderholst))
992
82
 
993
- ## 6.2.0-canary.10
83
+ - [#2333](https://github.com/graphcommerce-org/graphcommerce/pull/2333) [`03c28ab`](https://github.com/graphcommerce-org/graphcommerce/commit/03c28ab342bca3179b7ce1650fa7c16df1119a86) - Avoid displaying `undefined` for `countryName` or `regionName`. ([@carlocarels90](https://github.com/carlocarels90))
994
84
 
995
- ## 6.2.0-canary.9
85
+ ## 9.0.0-canary.118
996
86
 
997
- ## 6.2.0-canary.8
87
+ ## 9.0.0-canary.117
998
88
 
999
- ## 6.2.0-canary.7
89
+ ## 9.0.0-canary.116
1000
90
 
1001
91
  ### Patch Changes
1002
92
 
1003
- - [#1916](https://github.com/graphcommerce-org/graphcommerce/pull/1916) [`97ebc19af`](https://github.com/graphcommerce-org/graphcommerce/commit/97ebc19aff093bf57d24d009e96661ad43926fd6) - The customer's token would be invalidated if any authorization error occured. Now only scoped to customer queries and mutations, potentially reducing the amount of random logouts. ([@paales](https://github.com/paales))
93
+ - [#2452](https://github.com/graphcommerce-org/graphcommerce/pull/2452) [`5dfd3b2`](https://github.com/graphcommerce-org/graphcommerce/commit/5dfd3b201255ef35263485d04153d37bb7e4fe67) - Renamed useInContextQuery to usePrivateQuery ([@paales](https://github.com/paales))
1004
94
 
1005
- ## 6.2.0-canary.6
95
+ ## 9.0.0-canary.115
1006
96
 
1007
- ## 6.1.1-canary.5
97
+ ## 9.0.0-canary.114
1008
98
 
1009
- ## 6.1.1-canary.4
99
+ ## 9.0.0-canary.113
1010
100
 
1011
101
  ### Patch Changes
1012
102
 
1013
- - [#1914](https://github.com/graphcommerce-org/graphcommerce/pull/1914) [`38d6c4888`](https://github.com/graphcommerce-org/graphcommerce/commit/38d6c488850013b36cae9f388996039219c1327e) - Errors in the cart didn't allow for recovery from the faulty state ([@paales](https://github.com/paales))
1014
-
1015
- ## 6.1.1-canary.3
1016
-
1017
- ## 6.1.1-canary.2
103
+ - [#2445](https://github.com/graphcommerce-org/graphcommerce/pull/2445) [`e09905a`](https://github.com/graphcommerce-org/graphcommerce/commit/e09905a1d821b4ac36bb22f31a3e90c2d83e3049) - fix session expired email not always available in cache ([@StefanAngenent](https://github.com/StefanAngenent))
1018
104
 
1019
- ## 6.1.1-canary.1
105
+ ## 9.0.0-canary.112
1020
106
 
1021
- ## 6.1.1-canary.0
107
+ ## 9.0.0-canary.111
1022
108
 
1023
- ## 6.1.0
109
+ ### Patch Changes
1024
110
 
1025
- ### Minor Changes
111
+ - [#2448](https://github.com/graphcommerce-org/graphcommerce/pull/2448) [`cca7a52`](https://github.com/graphcommerce-org/graphcommerce/commit/cca7a5209d5aa6b914ac738f71e6d90cc72f71a6) - Replace useWatch with watch in order to prevent email from being undefinded when already being prefilled for expired sessions ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
1026
112
 
1027
- - [#1869](https://github.com/graphcommerce-org/graphcommerce/pull/1869) [`82111fa35`](https://github.com/graphcommerce-org/graphcommerce/commit/82111fa351b68a76ff053ebb7e0261ee507a826d) - Faster page rendering on all pages that use Apollo Client: Revert to classical useEffect strategy for Apollo cache persist restore and remove custom hydration strategies from the cart/customer.
113
+ ## 9.0.0-canary.110
1028
114
 
1029
- This comes with a caviat: When using `<Suspense>` to defer rendering you might run into hydration errors. In the case where the Suspense boundaries are used to improve performance, you are required to remove those. We have a follow-up [PR](https://github.com/graphcommerce-org/graphcommerce/pull/1878) in the works that allows getting the hydration performance improvement, but not have the hydration errors. ([@paales](https://github.com/paales))
115
+ ## 9.0.0-canary.109
1030
116
 
1031
117
  ### Patch Changes
1032
118
 
1033
- - [#1866](https://github.com/graphcommerce-org/graphcommerce/pull/1866) [`eafe3a17d`](https://github.com/graphcommerce-org/graphcommerce/commit/eafe3a17d6c6b4a9ca524361498ffa382d44c63f) - useOrderCardItemImages was triggered when there were no urlKeys present, causing unnessary requests to be made to the backend. ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
119
+ - [#2441](https://github.com/graphcommerce-org/graphcommerce/pull/2441) [`0d0aca2`](https://github.com/graphcommerce-org/graphcommerce/commit/0d0aca2ebd93fa04769ff85016a3be96685986ce) - Check validation of email field in SignInForm and SignUpForm ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
1034
120
 
1035
- - [#1889](https://github.com/graphcommerce-org/graphcommerce/pull/1889) [`38bf4b6bc`](https://github.com/graphcommerce-org/graphcommerce/commit/38bf4b6bc6e705d9d124d50b775ba3f440599482) - put the country field first, so the address fields will not be changed afterwards when postcode service is active. ([@carlocarels90](https://github.com/carlocarels90))
121
+ ## 9.0.0-canary.108
1036
122
 
1037
- - [#1899](https://github.com/graphcommerce-org/graphcommerce/pull/1899) [`3de184ee2`](https://github.com/graphcommerce-org/graphcommerce/commit/3de184ee28d48d8f1c1c092f264ac6b86fdf3ec6) - Make order states translatable ([@carlocarels90](https://github.com/carlocarels90))
123
+ ### Patch Changes
1038
124
 
1039
- - [#1896](https://github.com/graphcommerce-org/graphcommerce/pull/1896) [`4f846293f`](https://github.com/graphcommerce-org/graphcommerce/commit/4f846293f3b020dc7bae885fe4ccd1cbd0cb10d7) - When a customer would log in the current guest information would be lost ([@paales](https://github.com/paales))
125
+ - [#2440](https://github.com/graphcommerce-org/graphcommerce/pull/2440) [`7fe3bc5`](https://github.com/graphcommerce-org/graphcommerce/commit/7fe3bc5109a15a4cb4ab46a987b40f304c5add48) - fix session expired email not always available in cache ([@StefanAngenent](https://github.com/StefanAngenent))
1040
126
 
1041
- ## 6.0.2-canary.22
127
+ - [#2438](https://github.com/graphcommerce-org/graphcommerce/pull/2438) [`cb8d2f0`](https://github.com/graphcommerce-org/graphcommerce/commit/cb8d2f0059d64242260e30ce34655868f204ef4c) - Made all component prop types exported ([@bramvanderholst](https://github.com/bramvanderholst))
1042
128
 
1043
- ## 6.0.2-canary.21
129
+ - [#2438](https://github.com/graphcommerce-org/graphcommerce/pull/2438) [`49937fd`](https://github.com/graphcommerce-org/graphcommerce/commit/49937fd765338e25899d427ee4d799fa7978faeb) - Allow changing various props for internal components ([@bramvanderholst](https://github.com/bramvanderholst))
1044
130
 
1045
- ### Patch Changes
131
+ ## 9.0.0-canary.107
1046
132
 
1047
- - [#1899](https://github.com/graphcommerce-org/graphcommerce/pull/1899) [`3de184ee2`](https://github.com/graphcommerce-org/graphcommerce/commit/3de184ee28d48d8f1c1c092f264ac6b86fdf3ec6) - Make order states translatable ([@carlocarels90](https://github.com/carlocarels90))
133
+ ## 9.0.0-canary.106
1048
134
 
1049
- ## 6.0.2-canary.20
135
+ ## 9.0.0-canary.105
1050
136
 
1051
- ## 6.0.2-canary.19
137
+ ## 9.0.0-canary.104
1052
138
 
1053
- ## 6.0.2-canary.18
139
+ ## 9.0.0-canary.103
1054
140
 
1055
141
  ### Patch Changes
1056
142
 
1057
- - [#1889](https://github.com/graphcommerce-org/graphcommerce/pull/1889) [`38bf4b6bc`](https://github.com/graphcommerce-org/graphcommerce/commit/38bf4b6bc6e705d9d124d50b775ba3f440599482) - put the country field first, so the address fields will not be changed afterwards when postcode service is active. ([@carlocarels90](https://github.com/carlocarels90))
1058
-
1059
- ## 6.0.2-canary.17
143
+ - [#2421](https://github.com/graphcommerce-org/graphcommerce/pull/2421) [`8aaca29`](https://github.com/graphcommerce-org/graphcommerce/commit/8aaca29147da4d4a508fb1a00c088d30e2a304cf) - Forward BadgeProps to WishlistFab, CartFab and CustomerFab ([@paales](https://github.com/paales))
1060
144
 
1061
- ## 6.0.2-canary.16
145
+ ## 9.0.0-canary.101
1062
146
 
1063
147
  ### Patch Changes
1064
148
 
1065
- - [#1896](https://github.com/graphcommerce-org/graphcommerce/pull/1896) [`4f846293f`](https://github.com/graphcommerce-org/graphcommerce/commit/4f846293f3b020dc7bae885fe4ccd1cbd0cb10d7) - When a customer would log in the current guest information would be lost ([@paales](https://github.com/paales))
149
+ - [#2380](https://github.com/graphcommerce-org/graphcommerce/pull/2380) [`d601222`](https://github.com/graphcommerce-org/graphcommerce/commit/d601222c2ca538969023e9d42fdfee2a91cfa0d4) - Solve issue where persisted Form-data would remain in the sessionStorage after logging out. ([@paales](https://github.com/paales))
1066
150
 
1067
- ## 6.0.2-canary.15
151
+ - [#2411](https://github.com/graphcommerce-org/graphcommerce/pull/2411) [`7831a40`](https://github.com/graphcommerce-org/graphcommerce/commit/7831a404e27cf743dc25989e6155233ad1368aef) - Prevent overlap between autofilled data and input label for all TextFieldElements and its derivatives. ([@carlocarels90](https://github.com/carlocarels90))
1068
152
 
1069
- ## 6.0.2-canary.14
153
+ - [#2380](https://github.com/graphcommerce-org/graphcommerce/pull/2380) [`355a9ac`](https://github.com/graphcommerce-org/graphcommerce/commit/355a9ac21e4a6741320d7dcb42327392be83786e) - Remove the inContext directive from the query before sending to the server ([@paales](https://github.com/paales))
1070
154
 
1071
- ## 6.0.2-canary.13
155
+ ## 9.0.0-canary.96
1072
156
 
1073
157
  ### Patch Changes
1074
158
 
1075
- - [#1869](https://github.com/graphcommerce-org/graphcommerce/pull/1869) [`82111fa35`](https://github.com/graphcommerce-org/graphcommerce/commit/82111fa351b68a76ff053ebb7e0261ee507a826d) - Revert to classical useEffect strategy for Apollo cache persist restore and remove custom hydration strategies from the cart. ([@paales](https://github.com/paales))
159
+ - [#2404](https://github.com/graphcommerce-org/graphcommerce/pull/2404) [`a5c52ac`](https://github.com/graphcommerce-org/graphcommerce/commit/a5c52ac6e56ca34819f86708c00b0e8dec39d95c) - fix: formData.region can be undefined when creating new address ([@FrankHarland](https://github.com/FrankHarland))
1076
160
 
1077
- ## 6.0.2-canary.12
161
+ ## 9.0.0-canary.86
1078
162
 
1079
- ## 6.0.2-canary.11
163
+ ### Patch Changes
1080
164
 
1081
- ## 6.0.2-canary.10
165
+ - [#2379](https://github.com/graphcommerce-org/graphcommerce/pull/2379) [`6202fc7`](https://github.com/graphcommerce-org/graphcommerce/commit/6202fc7d2f36d5d1f2fedb74b2f2d93b308d5885) - In some cases the xMagentoCacheId wasn't defined in the returned query, make sure the application doesn't crash ([@paales](https://github.com/paales))
1082
166
 
1083
- ## 6.0.2-canary.9
167
+ ## 9.0.0-canary.82
1084
168
 
1085
- ## 6.0.2-canary.8
169
+ ### Minor Changes
1086
170
 
1087
- ## 6.0.2-canary.7
171
+ - [#2366](https://github.com/graphcommerce-org/graphcommerce/pull/2366) [`3612c99`](https://github.com/graphcommerce-org/graphcommerce/commit/3612c994b80bb3b1bc02de10668f69a332402dc4) - Add `permissions` config so the website or store can be configurated to run in different modes. ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
1088
172
 
1089
- ## 6.0.2-canary.6
173
+ ## 9.0.0-canary.80
1090
174
 
1091
- ## 6.0.2-canary.5
175
+ ### Minor Changes
1092
176
 
1093
- ## 6.0.2-canary.4
177
+ - [#2341](https://github.com/graphcommerce-org/graphcommerce/pull/2341) [`1d6512d`](https://github.com/graphcommerce-org/graphcommerce/commit/1d6512d4118cfb46602aa1f2432c3566fdb3261d) - Rename experimental_useV2 prop to deprecated_useV1 in useFromGql and enable it by default ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
1094
178
 
1095
- ## 6.0.2-canary.3
179
+ ### Patch Changes
1096
180
 
1097
- ## 6.0.2-canary.2
181
+ - [#2341](https://github.com/graphcommerce-org/graphcommerce/pull/2341) [`cc1c6e8`](https://github.com/graphcommerce-org/graphcommerce/commit/cc1c6e8c857c12f2d38d7283a250e3b77bd885f4) - The AddressCountryRegion select would show a warning if the countries weren't loaded yet. It will now show a readonly field with the country code. ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
1098
182
 
1099
- ## 6.0.2-canary.1
183
+ - [#2341](https://github.com/graphcommerce-org/graphcommerce/pull/2341) [`b8b621a`](https://github.com/graphcommerce-org/graphcommerce/commit/b8b621a4a7549cae4ac56fee76773443a0d55504) - The CompanyFields toggle wouldn't be valid when Private was selected and would only validate if Business was selected. ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
1100
184
 
1101
- ## 6.0.2-canary.0
185
+ ## 9.0.0-canary.78
1102
186
 
1103
187
  ### Patch Changes
1104
188
 
1105
- - [#1866](https://github.com/graphcommerce-org/graphcommerce/pull/1866) [`eafe3a17d`](https://github.com/graphcommerce-org/graphcommerce/commit/eafe3a17d6c6b4a9ca524361498ffa382d44c63f) - don't execute useOrderCardItemImages if urlKeys is empty ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
189
+ - [#2354](https://github.com/graphcommerce-org/graphcommerce/pull/2354) [`7cd5c1c`](https://github.com/graphcommerce-org/graphcommerce/commit/7cd5c1cadf8dac43de9e5bb19038383be64aa08f) - Fix issues when using non-hex colors in theme ([@bramvanderholst](https://github.com/bramvanderholst))
1106
190
 
1107
- ## 6.0.1
191
+ ## 9.0.0-canary.75
1108
192
 
1109
193
  ### Patch Changes
1110
194
 
1111
- - [#1855](https://github.com/graphcommerce-org/graphcommerce/pull/1855) [`0f789d3be`](https://github.com/graphcommerce-org/graphcommerce/commit/0f789d3be1aa6d724bd98bceee092e1da6701915) - Added registration email validation to inline registration form. ([@mikekeehnen](https://github.com/mikekeehnen))
1112
-
1113
- ## 6.0.1-canary.7
195
+ - [#2352](https://github.com/graphcommerce-org/graphcommerce/pull/2352) [`8ace660`](https://github.com/graphcommerce-org/graphcommerce/commit/8ace660addf25eacb49376eceb5e3bfc351a2c57) - Add disableMargin prop to WaitForCustomer component ([@JoshuaS98](https://github.com/JoshuaS98))
1114
196
 
1115
- ## 6.0.1-canary.6
197
+ ## 9.0.0-canary.66
1116
198
 
1117
- ## 6.0.1-canary.5
199
+ ### Minor Changes
1118
200
 
1119
- ## 6.0.1-canary.4
201
+ - [#2339](https://github.com/graphcommerce-org/graphcommerce/pull/2339) [`df942e5`](https://github.com/graphcommerce-org/graphcommerce/commit/df942e5726ddb4d7c7d4b583aa474c7c0f0dea7d) - Show actual order status from the backend, improve order state logic ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
1120
202
 
1121
- ## 6.0.1-canary.3
203
+ ## 9.0.0-canary.65
1122
204
 
1123
205
  ### Patch Changes
1124
206
 
1125
- - [#1855](https://github.com/graphcommerce-org/graphcommerce/pull/1855) [`0f789d3be`](https://github.com/graphcommerce-org/graphcommerce/commit/0f789d3be1aa6d724bd98bceee092e1da6701915) - Added registration email validation to inline registration form. ([@mikekeehnen](https://github.com/mikekeehnen))
207
+ - [#2333](https://github.com/graphcommerce-org/graphcommerce/pull/2333) [`03c28ab`](https://github.com/graphcommerce-org/graphcommerce/commit/03c28ab342bca3179b7ce1650fa7c16df1119a86) - Avoid displaying 'undefined' for countryName or regionName ([@carlocarels90](https://github.com/carlocarels90))
208
+
209
+ ## 9.0.0-canary.61
1126
210
 
1127
- ## 6.0.1-canary.2
211
+ ### Minor Changes
1128
212
 
1129
- ## 6.0.1-canary.1
213
+ - [#2327](https://github.com/graphcommerce-org/graphcommerce/pull/2327) [`be719fc`](https://github.com/graphcommerce-org/graphcommerce/commit/be719fc465c8804ddcb720a93813262e3a292b69) - Implement CancelOrder mutation, add cancel order overlay to account section ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
1130
214
 
1131
- ## 6.0.1-canary.0
215
+ - [#2327](https://github.com/graphcommerce-org/graphcommerce/pull/2327) [`af83d81`](https://github.com/graphcommerce-org/graphcommerce/commit/af83d81656a4c1a014802fb052a94a079e9f60c1) - Add reorderItems mutation, add reorder button to order detail page ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
1132
216
 
1133
- ## 6.0.0
217
+ ## 9.0.0-canary.58
1134
218
 
1135
219
  ### Minor Changes
1136
220
 
1137
- - [#1816](https://github.com/graphcommerce-org/graphcommerce/pull/1816) [`f61e2e572`](https://github.com/graphcommerce-org/graphcommerce/commit/f61e2e5721806c258b771a7ed5165da8dc7b815b) - Add feedback messages on 'add address form' ([@FrankHarland](https://github.com/FrankHarland))
1138
-
1139
- - [#1779](https://github.com/graphcommerce-org/graphcommerce/pull/1779) [`6c6d7e4d7`](https://github.com/graphcommerce-org/graphcommerce/commit/6c6d7e4d7cf5d68a39acc82b91e1f3acce366517) - Added postcode check for Dutch address fields. Ddds an autocomplete field for the street name and city based of the customers postcode + street number + addition. ([@Jessevdpoel](https://github.com/Jessevdpoel))
221
+ - [#2330](https://github.com/graphcommerce-org/graphcommerce/pull/2330) [`8de9c13`](https://github.com/graphcommerce-org/graphcommerce/commit/8de9c13b977633104ab81ce04def1dd6d1d4411b) - Added support X-Magento-Cache-Id to allow Varnish to cache requests that are made in the browser while users are logged in. For example the products query can now be cached for logged in users. Functionality can be disabled by setting `customerXMagentoCacheIdDisable: true` in your configuration. ([@paales](https://github.com/paales))
1140
222
 
1141
- ### Patch Changes
223
+ ## 9.0.0-canary.55
1142
224
 
1143
- - [#1768](https://github.com/graphcommerce-org/graphcommerce/pull/1768) [`23e9a4728`](https://github.com/graphcommerce-org/graphcommerce/commit/23e9a472899dfc0b56b989f5d0e8ffb802c8cc5f) - Deprecated @graphcommerce/magento-customer-account & @graphcommerce/magento-customer-order packages and moved all functionality to @graphcomemrce/magento-customer ([@bramvanderholst](https://github.com/bramvanderholst))
225
+ ### Minor Changes
1144
226
 
1145
- - [#1768](https://github.com/graphcommerce-org/graphcommerce/pull/1768) [`7e8dcf447`](https://github.com/graphcommerce-org/graphcommerce/commit/7e8dcf44777aca527c07aaee397d272dd2f6ae44) - Customer accoutn address list now updates after deleting an address. ([@bramvanderholst](https://github.com/bramvanderholst))
227
+ - [#2324](https://github.com/graphcommerce-org/graphcommerce/pull/2324) [`1c8b1e4`](https://github.com/graphcommerce-org/graphcommerce/commit/1c8b1e441ac44935bfd2215d62a71c02b3ba7e6f) - Implement the contactUs mutation, add contact us overlay ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
1146
228
 
1147
- - [#1768](https://github.com/graphcommerce-org/graphcommerce/pull/1768) [`9f0e9ab2d`](https://github.com/graphcommerce-org/graphcommerce/commit/9f0e9ab2dec3f9261ae00e9fd44d06a65ddb1d0d) - After editing an address in the my account section it, the user will now be redirected to the over page, instead of redirecting to the edit page. ([@bramvanderholst](https://github.com/bramvanderholst))
229
+ ## 8.1.0-canary.52
1148
230
 
1149
- - [#1801](https://github.com/graphcommerce-org/graphcommerce/pull/1801) [`12263d608`](https://github.com/graphcommerce-org/graphcommerce/commit/12263d6080c1e550985a42f140ffa9d95d0b0335) - Added translations for the sign-up form. ([@StefanAngenent](https://github.com/StefanAngenent))
231
+ ### Minor Changes
1150
232
 
1151
- - [#1769](https://github.com/graphcommerce-org/graphcommerce/pull/1769) [`2693a616a`](https://github.com/graphcommerce-org/graphcommerce/commit/2693a616af2f9793012a5fb2eeacc084e695b83e) - WaitForCustomer now accepts overridable components for the fallback and unauthenticated state. ([@mikekeehnen](https://github.com/mikekeehnen))
233
+ - [#2320](https://github.com/graphcommerce-org/graphcommerce/pull/2320) [`dc5e85c`](https://github.com/graphcommerce-org/graphcommerce/commit/dc5e85c95dad6145fde02a6e54f0fbd1cdfe9e3d) - Replace depricated updateCustomer mutations with updateCustomerV2 ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
1152
234
 
1153
- ## 6.0.0-canary.54
235
+ ## 8.1.0-canary.49
1154
236
 
1155
- ## 6.0.0-canary.53
237
+ ### Patch Changes
1156
238
 
1157
- ## 6.0.0-canary.52
239
+ - [#2317](https://github.com/graphcommerce-org/graphcommerce/pull/2317) [`ff95ab3`](https://github.com/graphcommerce-org/graphcommerce/commit/ff95ab31ee6e00c86cd9e96031f7babbd20e4280) - useSignInForm now optionally expects an email ([@paales](https://github.com/paales))
1158
240
 
1159
- ## 6.0.0-canary.51
241
+ ## 8.1.0-canary.48
1160
242
 
1161
- ## 6.0.0-canary.50
243
+ ### Minor Changes
1162
244
 
1163
- ## 6.0.0-canary.49
245
+ - [#2319](https://github.com/graphcommerce-org/graphcommerce/pull/2319) [`a3409e8`](https://github.com/graphcommerce-org/graphcommerce/commit/a3409e8a629ee95413da6547cbdcf48aa2502c23) - Created a new TelephoneElement component to make re-use easier ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
1164
246
 
1165
- ## 6.0.0-canary.48
247
+ ## 8.1.0-canary.47
1166
248
 
1167
- ## 6.0.0-canary.47
249
+ ### Minor Changes
1168
250
 
1169
- ## 6.0.0-canary.46
251
+ - [#2315](https://github.com/graphcommerce-org/graphcommerce/pull/2315) [`fb9118e`](https://github.com/graphcommerce-org/graphcommerce/commit/fb9118ec819d1b507d4fbde04f2ca34ec01ecf49) - Add guestOrder functionality, remove `size: 'max'` from getStaticProps ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
1170
252
 
1171
- ## 6.0.0-canary.45
253
+ ## 8.1.0-canary.40
1172
254
 
1173
- ## 6.0.0-canary.44
255
+ ### Minor Changes
1174
256
 
1175
- ## 6.0.0-canary.43
257
+ - [#2306](https://github.com/graphcommerce-org/graphcommerce/pull/2306) [`5e188e8`](https://github.com/graphcommerce-org/graphcommerce/commit/5e188e830dca4730c73830858f59a94e9d41ed12) - Add delete account functionality to the account section. Disabled by default and can be enabled through the config. ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
1176
258
 
1177
- ## 6.0.0-canary.42
259
+ ## 8.1.0-canary.38
1178
260
 
1179
- ## 6.0.0-canary.41
261
+ ### Minor Changes
1180
262
 
1181
- ## 6.0.0-canary.40
263
+ - [#2305](https://github.com/graphcommerce-org/graphcommerce/pull/2305) [`77e8297`](https://github.com/graphcommerce-org/graphcommerce/commit/77e82976816994336c616208a651cb18ce9ea270) - Add company and vat fields to shipping and billing forms ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
1182
264
 
1183
- ## 6.0.0-canary.39
265
+ ### Patch Changes
1184
266
 
1185
- ## 6.0.0-canary.38
267
+ - [#2305](https://github.com/graphcommerce-org/graphcommerce/pull/2305) [`77e8297`](https://github.com/graphcommerce-org/graphcommerce/commit/77e82976816994336c616208a651cb18ce9ea270) - Fix bug with persist not applying saved changes by moving <FromPersist/> below the form components ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
1186
268
 
1187
- ## 6.0.0-canary.37
269
+ ## 8.1.0-canary.35
1188
270
 
1189
- ## 6.0.0-canary.36
271
+ ### Minor Changes
1190
272
 
1191
- ## 6.0.0-canary.35
273
+ - [#2301](https://github.com/graphcommerce-org/graphcommerce/pull/2301) [`47bb47b`](https://github.com/graphcommerce-org/graphcommerce/commit/47bb47bac4b3689a6859afbc587274d813e0b072) - Implement confirm email functionality ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
1192
274
 
1193
- ## 6.0.0-canary.34
275
+ ### Patch Changes
1194
276
 
1195
- ## 6.0.0-canary.33
277
+ - [#2301](https://github.com/graphcommerce-org/graphcommerce/pull/2301) [`13d0649`](https://github.com/graphcommerce-org/graphcommerce/commit/13d06498d121f93b52c25930e50aa3b0bd12a818) - Created a new EmailElement component to make re-use easier ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
1196
278
 
1197
- ## 6.0.0-canary.32
279
+ ## 8.1.0-canary.22
1198
280
 
1199
- ## 6.0.0-canary.31
281
+ ### Patch Changes
1200
282
 
1201
- ## 6.0.0-canary.30
283
+ - [#2283](https://github.com/graphcommerce-org/graphcommerce/pull/2283) [`170aebd`](https://github.com/graphcommerce-org/graphcommerce/commit/170aebde3fb0705504e6d0919e7fbad0b89c1197) - Prevent success message from showing up when form is still submitting a new request to update the users email ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
1202
284
 
1203
- ## 6.0.0-canary.29
285
+ ## 8.0.6-canary.2
1204
286
 
1205
- ## 6.0.0-canary.28
287
+ ### Patch Changes
1206
288
 
1207
- ## 6.0.0-canary.27
289
+ - [#2234](https://github.com/graphcommerce-org/graphcommerce/pull/2234) [`0767bc4`](https://github.com/graphcommerce-org/graphcommerce/commit/0767bc40f7b596209f24ca4e745ff0441f3275c9) - Upgrade input components to no longer use muiRegister, which improves INP scores ([@FrankHarland](https://github.com/FrankHarland))
1208
290
 
1209
- ## 6.0.0-canary.26
291
+ - [#2234](https://github.com/graphcommerce-org/graphcommerce/pull/2234) [`530076e`](https://github.com/graphcommerce-org/graphcommerce/commit/530076e3664703cb8b577b7fcf1998a420819f60) - Moved all usages of useFormPersist to the <FormPersist/> component to prevent rerenders. ([@FrankHarland](https://github.com/FrankHarland))
1210
292
 
1211
- ## 6.0.0-canary.25
293
+ ## 8.0.5
1212
294
 
1213
295
  ### Patch Changes
1214
296
 
1215
- - [#1816](https://github.com/graphcommerce-org/graphcommerce/pull/1816) [`f61e2e572`](https://github.com/graphcommerce-org/graphcommerce/commit/f61e2e5721806c258b771a7ed5165da8dc7b815b) - feat(GCOM-1015): add feedback on add address form, update addresslist… ([@FrankHarland](https://github.com/FrankHarland))
1216
-
1217
- ## 6.0.0-canary.24
297
+ - [#2243](https://github.com/graphcommerce-org/graphcommerce/pull/2243) [`c2ddb9e`](https://github.com/graphcommerce-org/graphcommerce/commit/c2ddb9e1e9d08b4363cc1ffa31e23d715ab1bdb6) - Solve an issue where the cart wouldn't be merged after the customer created a new account. ([@paales](https://github.com/paales))
1218
298
 
1219
- ## 6.0.0-canary.23
299
+ ## 8.0.3
1220
300
 
1221
- ## 6.0.0-canary.22
301
+ ### Patch Changes
1222
302
 
1223
- ## 6.0.0-canary.21
303
+ - [#2212](https://github.com/graphcommerce-org/graphcommerce/pull/2212) [`6b61a93`](https://github.com/graphcommerce-org/graphcommerce/commit/6b61a93476505e66a3135844b9bce62ccdd1bdcf) - Solve an issue where the customer could not save their region in the customer account section. ([@paales](https://github.com/paales))
1224
304
 
1225
- ## 6.0.0-canary.20
305
+ - [#2205](https://github.com/graphcommerce-org/graphcommerce/pull/2205) [`3fbf3da`](https://github.com/graphcommerce-org/graphcommerce/commit/3fbf3da8a67f2fbaa7fa974a37cbbf34613844e4) - Solve an issue where the user would be presented with the Session expired dialog when the user would be logging in during the checkout process. ([@paales](https://github.com/paales))
1226
306
 
1227
- ## 5.2.0-canary.19
307
+ - [#2207](https://github.com/graphcommerce-org/graphcommerce/pull/2207) [`4d7594c`](https://github.com/graphcommerce-org/graphcommerce/commit/4d7594ca2174f74bfa9f66a464b77b3fd04f3560) - After changing the default shipping or billing address in the account section other address would not properly update ([@paales](https://github.com/paales))
1228
308
 
1229
- ## 5.2.0-canary.18
309
+ - [#2212](https://github.com/graphcommerce-org/graphcommerce/pull/2212) [`dbd943d`](https://github.com/graphcommerce-org/graphcommerce/commit/dbd943d9f588f24d5c73bdf35f2d3bbc5e0e3406) - Split out AddressFields into separate components and allow renaming fields. ([@paales](https://github.com/paales))
1230
310
 
1231
- ## 5.2.0-canary.17
311
+ ## 8.0.2
1232
312
 
1233
313
  ### Patch Changes
1234
314
 
1235
- - [#1801](https://github.com/graphcommerce-org/graphcommerce/pull/1801) [`12263d608`](https://github.com/graphcommerce-org/graphcommerce/commit/12263d6080c1e550985a42f140ffa9d95d0b0335) - Add sign up form translations ([@StefanAngenent](https://github.com/StefanAngenent))
1236
-
1237
- ## 5.2.0-canary.16
1238
-
1239
- ## 5.2.0-canary.15
315
+ - [#2197](https://github.com/graphcommerce-org/graphcommerce/pull/2197) [`044331c`](https://github.com/graphcommerce-org/graphcommerce/commit/044331cf1ea3a6040cfe8e0f79fb62025d5a9d90) - Revert: Change sorting for customer orders in Descending Created at order ([@paales](https://github.com/paales))
1240
316
 
1241
- ## 5.2.0-canary.14
317
+ ## 8.0.1
1242
318
 
1243
- ## 5.2.0-canary.13
319
+ ### Patch Changes
1244
320
 
1245
- ## 5.2.0-canary.12
321
+ - [#2177](https://github.com/graphcommerce-org/graphcommerce/pull/2177) [`816d789`](https://github.com/graphcommerce-org/graphcommerce/commit/816d7893159528bbe4ffc51c3958c806b81b58b0) - Change sorting for customer orders in Descending Created at order ([@LaurensFranken](https://github.com/LaurensFranken))
1246
322
 
1247
- ## 5.2.0-canary.11
323
+ - [#2191](https://github.com/graphcommerce-org/graphcommerce/pull/2191) [`13ffa6b`](https://github.com/graphcommerce-org/graphcommerce/commit/13ffa6b945f1c72bf1fdc9298e4ce5dd76b48d73) - When a user was logging in from the checkout react would be caught in an infinite loop and thus the page would hang ([@JoshuaS98](https://github.com/JoshuaS98))
1248
324
 
1249
- ## 5.2.0-canary.10
325
+ - [#2187](https://github.com/graphcommerce-org/graphcommerce/pull/2187) [`09a2cc3`](https://github.com/graphcommerce-org/graphcommerce/commit/09a2cc35ceb5e714ffd02e573eebe7de842ae327) - Do not try to automatically invalidate the current token and fully rely on the Session Expired dialog ([@paales](https://github.com/paales))
1250
326
 
1251
- ## 5.2.0-canary.9
327
+ - [#2187](https://github.com/graphcommerce-org/graphcommerce/pull/2187) [`ee969bf`](https://github.com/graphcommerce-org/graphcommerce/commit/ee969bfc5415392747b04e0484685f5c611a2559) - After signing out the currentCartId was still returning a value causing the cart to be shown after signing out ([@paales](https://github.com/paales))
1252
328
 
1253
- ## 5.2.0-canary.8
329
+ ## 8.0.0
1254
330
 
1255
331
  ### Minor Changes
1256
332
 
1257
- - [#1779](https://github.com/graphcommerce-org/graphcommerce/pull/1779) [`6c6d7e4d7`](https://github.com/graphcommerce-org/graphcommerce/commit/6c6d7e4d7cf5d68a39acc82b91e1f3acce366517) - Implementation of the Dutch address fields, add an autocomplete field for the street name and city based of the customers postcode + street number + addition. ([@Jessevdpoel](https://github.com/Jessevdpoel))
333
+ - [#2175](https://github.com/graphcommerce-org/graphcommerce/pull/2175) [`a6bcb87`](https://github.com/graphcommerce-org/graphcommerce/commit/a6bcb8785d54ef735d82154a775822d84f2b2b80) - Autofill country dropdown in CreateCustomerAddressForm so AddPostcodeNLAddressFields plugin works by default ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
1258
334
 
1259
- ## 5.2.0-canary.7
335
+ - [#2110](https://github.com/graphcommerce-org/graphcommerce/pull/2110) [`d2e716d`](https://github.com/graphcommerce-org/graphcommerce/commit/d2e716d437fcfed13388ef536a8e73513744027b) - ---
1260
336
 
1261
- ## 5.2.0-canary.6
337
+ '@graphcommerce/magento-cart-email': minor '@graphcommerce/magento-customer': minor
1262
338
 
1263
- ## 5.2.0-canary.5
339
+ ***
1264
340
 
1265
- ## 5.2.0-canary.4
341
+ Added a new `enableGuestCheckoutLogin` configuration: During customer login, GraphCommerce queries Magento to determine whether the customer account already exists or not. If not, the sign-up form is shown instead.
1266
342
 
1267
- ## 5.2.0-canary.3
343
+ To restore previous behavior, set `enableGuestCheckoutLogin` to true. For Magento versions, 2.4.7, 2.4.6-p1 and up, 2.4.5-p3 and up, 2.4.4-p4 and up, the following setting must be set to Yes: `Stores -> Configuration -> Sales -> Checkout -> Checkout Options -> Enable Guest Checkout Login` ([@Jessevdpoel](https://github.com/Jessevdpoel))
1268
344
 
1269
- ## 5.2.0-canary.2
345
+ ### Patch Changes
1270
346
 
1271
- ## 5.2.0-canary.1
347
+ - [#2091](https://github.com/graphcommerce-org/graphcommerce/pull/2091) [`5b865d3`](https://github.com/graphcommerce-org/graphcommerce/commit/5b865d376fe3b830a03af15b56986a0448af4987) - Order details page in the customer account section is completely redesigned to be more in line with other areas. ([@StefanAngenent](https://github.com/StefanAngenent))
1272
348
 
1273
- ### Patch Changes
349
+ - [#2048](https://github.com/graphcommerce-org/graphcommerce/pull/2048) [`a5c6550`](https://github.com/graphcommerce-org/graphcommerce/commit/a5c65506a7e72bd9ea101f665ce201e82396c63c) - Allow passing skip to useCustomerQuery and useGuestQuery ([@Jessevdpoel](https://github.com/Jessevdpoel))
1274
350
 
1275
- - [#1768](https://github.com/graphcommerce-org/graphcommerce/pull/1768) [`23e9a4728`](https://github.com/graphcommerce-org/graphcommerce/commit/23e9a472899dfc0b56b989f5d0e8ffb802c8cc5f) - Move magento-customer-account & magento-customer-order into magento-customer package (magento-customer-account & magento-customer-order are now deprecated) ([@bramvanderholst](https://github.com/bramvanderholst))
351
+ - [#2170](https://github.com/graphcommerce-org/graphcommerce/pull/2170) [`f3e906f`](https://github.com/graphcommerce-org/graphcommerce/commit/f3e906f7e374ce22d36af29c0f3c8153e18300e6) - Solved an issue where the inactive cart would set as the current cart when the customer had signed in, checked out their cart, session expired and tried to log in again. ([@FrankHarland](https://github.com/FrankHarland))
1276
352
 
1277
- - [#1768](https://github.com/graphcommerce-org/graphcommerce/pull/1768) [`7e8dcf447`](https://github.com/graphcommerce-org/graphcommerce/commit/7e8dcf44777aca527c07aaee397d272dd2f6ae44) - Update account address list after deleting an address ([@bramvanderholst](https://github.com/bramvanderholst))
353
+ - [#2107](https://github.com/graphcommerce-org/graphcommerce/pull/2107) [`2f51504`](https://github.com/graphcommerce-org/graphcommerce/commit/2f5150456eabcce410ad8a0f1cbebeedabb6564c) - Remember email adress when going from checkout to signin/up form ([@FrankHarland](https://github.com/FrankHarland))
1278
354
 
1279
- - [#1768](https://github.com/graphcommerce-org/graphcommerce/pull/1768) [`9f0e9ab2d`](https://github.com/graphcommerce-org/graphcommerce/commit/9f0e9ab2dec3f9261ae00e9fd44d06a65ddb1d0d) - Redirect to address overview page after creating an address instead of redirecting to the edit page for the address that was just created ([@bramvanderholst](https://github.com/bramvanderholst))
355
+ - [#2128](https://github.com/graphcommerce-org/graphcommerce/pull/2128) [`2320f8f`](https://github.com/graphcommerce-org/graphcommerce/commit/2320f8fa28713f45f0a9ecfc7d8623120add2a9a) - Fixed bug which caused region to not be set properly if user swapped countries in the checkout process. ([@Jessevdpoel](https://github.com/Jessevdpoel))
1280
356
 
1281
- ## 5.2.0-canary.0
357
+ - [#1999](https://github.com/graphcommerce-org/graphcommerce/pull/1999) [`ab834fb`](https://github.com/graphcommerce-org/graphcommerce/commit/ab834fbfe057fb507c371a6d22af282cc1b195d4) - Added a new 'Session expired' dialog that is shown when a GraphQL query or mutation returns a `graphql-authorization` error. This error is returned when the user's session has expired. The dialog allows the user to sign in again and then the query or mutation is re-executed. ([@paales](https://github.com/paales))
1282
358
 
1283
- ### Minor Changes
359
+ - [#2166](https://github.com/graphcommerce-org/graphcommerce/pull/2166) [`304b816`](https://github.com/graphcommerce-org/graphcommerce/commit/304b81659caf82d9f500401d21da4110dd40db61) - When a user is logged in the modal is dismissed immediately without showing a succes page. This speeds up the interaction with the site. ([@FrankHarland](https://github.com/FrankHarland))
1284
360
 
1285
- - [#1769](https://github.com/graphcommerce-org/graphcommerce/pull/1769) [`2693a616a`](https://github.com/graphcommerce-org/graphcommerce/commit/2693a616af2f9793012a5fb2eeacc084e695b83e) - WaitForCustomer now accepts overridable components for the fallback and unauthenticated state. ([@mikekeehnen](https://github.com/mikekeehnen))
361
+ - [#1999](https://github.com/graphcommerce-org/graphcommerce/pull/1999) [`c11f3b8`](https://github.com/graphcommerce-org/graphcommerce/commit/c11f3b88f187bb8e0059a6940b9835a076e5faf8) - Created a `debug.sessions` config that allows debugging sessions. Enable with `GC_DEBUG_SESSIONS=1` in your env or modify your graphcommerce.config.js ([@paales](https://github.com/paales))
1286
362
 
1287
- ## 5.1.1
363
+ - [#2087](https://github.com/graphcommerce-org/graphcommerce/pull/2087) [`42c33c6`](https://github.com/graphcommerce-org/graphcommerce/commit/42c33c6e3adceee400bc9f10ec416731db9279c0) - The message when the email was updated was unstyled. ([@StefanAngenent](https://github.com/StefanAngenent))
1288
364
 
1289
- ## 5.1.1-canary.1
365
+ - [#2082](https://github.com/graphcommerce-org/graphcommerce/pull/2082) [`2e8d19c`](https://github.com/graphcommerce-org/graphcommerce/commit/2e8d19cccd305f0e8eb4c29d05161af6cfdb9d84) - Add 'Current email' translation ([@StefanAngenent](https://github.com/StefanAngenent))
1290
366
 
1291
- ## 5.1.1-canary.0
367
+ - [#2098](https://github.com/graphcommerce-org/graphcommerce/pull/2098) [`ca45472`](https://github.com/graphcommerce-org/graphcommerce/commit/ca45472246e084f4b88f91bc700351e29c63e0e2) - Fix `<EditAddressForm />` when addition field is null or undefined ([@JoshuaS98](https://github.com/JoshuaS98))
1292
368
 
1293
- ## 5.1.0
369
+ ## 7.0.1
1294
370
 
1295
371
  ### Patch Changes
1296
372
 
1297
- - [#1745](https://github.com/graphcommerce-org/graphcommerce/pull/1745) [`b1444b933`](https://github.com/graphcommerce-org/graphcommerce/commit/b1444b9336107d3ac111563f9b62a884f1b26a8d) - Bring password reset page more in line with standard forms, add missing translations. ([@github-actions](https://github.com/apps/github-actions))
1298
-
1299
- - [#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.
373
+ - [#2032](https://github.com/graphcommerce-org/graphcommerce/pull/2032) [`7e44afc94`](https://github.com/graphcommerce-org/graphcommerce/commit/7e44afc94629a938da1b819d99fe3d19857de497) - Add shipping adresses translation ([@StefanAngenent](https://github.com/StefanAngenent))
1300
374
 
1301
- - Updated the @mui/material package
1302
- - Removed dependencies on react-hook-form-mui and @playwright/test
1303
- - Upgraded dependencies including type-fest and graphql-mesh
1304
- - Solved peer dependency issues ([@paales](https://github.com/paales))
375
+ ## 7.0.0
1305
376
 
1306
- ## 5.1.0-canary.11
377
+ ### Minor Changes
1307
378
 
1308
- ## 5.1.0-canary.10
379
+ - [#1962](https://github.com/graphcommerce-org/graphcommerce/pull/1962) [`518b6ca24`](https://github.com/graphcommerce-org/graphcommerce/commit/518b6ca248fc94624dc06eb02de5b3eac0fc9483) - Created a new `<ValidatedPasswordElement/>` which validates according to Magento's validation groups and implement on all locations. Move remaining password fields to `<PasswordElement />` ([@carlocarels90](https://github.com/carlocarels90))
1309
380
 
1310
- ## 5.1.0-canary.9
381
+ - [#1926](https://github.com/graphcommerce-org/graphcommerce/pull/1926) [`ab8877fdb`](https://github.com/graphcommerce-org/graphcommerce/commit/ab8877fdb6147960ce656d28306d719e92f6de68) - Made the follow order link in the order card & order details a working `<Link />` if provided from magento backend. ([@JoshuaS98](https://github.com/JoshuaS98))
1311
382
 
1312
- ## 5.1.0-canary.8
383
+ ### Patch Changes
1313
384
 
1314
- ## 5.1.0-canary.7
385
+ - [#1916](https://github.com/graphcommerce-org/graphcommerce/pull/1916) [`97ebc19af`](https://github.com/graphcommerce-org/graphcommerce/commit/97ebc19aff093bf57d24d009e96661ad43926fd6) - The customer's token would be invalidated if any authorization error occured. Now only scoped to customer queries and mutations, potentially reducing the amount of random logouts. ([@paales](https://github.com/paales))
1315
386
 
1316
- ## 5.1.0-canary.6
387
+ - [#1952](https://github.com/graphcommerce-org/graphcommerce/pull/1952) [`f1fe4f598`](https://github.com/graphcommerce-org/graphcommerce/commit/f1fe4f5986cee1f7c8313152e43691ed939c8f21) - Enable password fields when there is an error and user input correction is required. ([@carlocarels90](https://github.com/carlocarels90))
1317
388
 
1318
- ## 5.1.0-canary.5
389
+ - [#1914](https://github.com/graphcommerce-org/graphcommerce/pull/1914) [`38d6c4888`](https://github.com/graphcommerce-org/graphcommerce/commit/38d6c488850013b36cae9f388996039219c1327e) - Errors in the cart didn't allow for recovery from the faulty state ([@paales](https://github.com/paales))
1319
390
 
1320
- ### Patch Changes
391
+ - [#1930](https://github.com/graphcommerce-org/graphcommerce/pull/1930) [`c8d023e9e`](https://github.com/graphcommerce-org/graphcommerce/commit/c8d023e9e874131cd9f8fe192b1fca5fe1a26ee3) - Fix the 'close menu' on search and add the option to secondary menu items ([@StefanAngenent](https://github.com/StefanAngenent))
1321
392
 
1322
- - [`b1444b933`](https://github.com/graphcommerce-org/graphcommerce/commit/b1444b9336107d3ac111563f9b62a884f1b26a8d) - Bring password reset page more in line with standard forms, add missing translations. ([@paales](https://github.com/paales))
393
+ - [#2006](https://github.com/graphcommerce-org/graphcommerce/pull/2006) [`80b60cb40`](https://github.com/graphcommerce-org/graphcommerce/commit/80b60cb404882260bd0e8184f3e54f4720925c96) - The Billing address was set to the shipping address when a default billing address was available and made prefix optional when creating an address ([@Jessevdpoel](https://github.com/Jessevdpoel))
1323
394
 
1324
- ## 5.1.0-canary.4
395
+ - [#1942](https://github.com/graphcommerce-org/graphcommerce/pull/1942) [`21b0d0c48`](https://github.com/graphcommerce-org/graphcommerce/commit/21b0d0c48603343c09f287978bf051140e9be912) - Customer's session is now revalidated when a previous session is detected on pageload, making sure the customer is still logged in. ([@paales](https://github.com/paales))
1325
396
 
1326
- ## 5.1.0-canary.3
397
+ - [#1972](https://github.com/graphcommerce-org/graphcommerce/pull/1972) [`cda89820d`](https://github.com/graphcommerce-org/graphcommerce/commit/cda89820dc50e2019a26239b7450863d8c862bfb) - Ensure correct width for CircularProgress and fix misalignment in rotate animation ([@carlocarels90](https://github.com/carlocarels90))
1327
398
 
1328
- ### Patch Changes
399
+ - [#2016](https://github.com/graphcommerce-org/graphcommerce/pull/2016) [`227ddcee8`](https://github.com/graphcommerce-org/graphcommerce/commit/227ddcee8808715928371c1f3a4c7925032df0ef) - Made cardProps on CustomerAddressActionCards overridable. ([@Jessevdpoel](https://github.com/Jessevdpoel))
1329
400
 
1330
- - [#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.
401
+ - [#1969](https://github.com/graphcommerce-org/graphcommerce/pull/1969) [`838322a97`](https://github.com/graphcommerce-org/graphcommerce/commit/838322a97c7ef1b8aa919196e756da381904bf04) - Fixing the Internal Server Error if the third address line is empty. ([@action-simon](https://github.com/action-simon))
1331
402
 
1332
- - Updated the @mui/material package
1333
- - Removed dependencies on react-hook-form-mui and @playwright/test
1334
- - Upgraded dependencies including type-fest and graphql-mesh
1335
- - Solved peer dependency issues ([@paales](https://github.com/paales))
403
+ ## 6.1.0
1336
404
 
1337
- ## 5.1.0-canary.2
405
+ ### Minor Changes
1338
406
 
1339
- ## 5.1.0-canary.1
407
+ - [#1869](https://github.com/graphcommerce-org/graphcommerce/pull/1869) [`82111fa35`](https://github.com/graphcommerce-org/graphcommerce/commit/82111fa351b68a76ff053ebb7e0261ee507a826d) - Faster page rendering on all pages that use Apollo Client: Revert to classical useEffect strategy for Apollo cache persist restore and remove custom hydration strategies from the cart/customer.
1340
408
 
1341
- ## 5.1.0-canary.0
409
+ This comes with a caviat: When using `<Suspense>` to defer rendering you might run into hydration errors. In the case where the Suspense boundaries are used to improve performance, you are required to remove those. We have a follow-up [PR](https://github.com/graphcommerce-org/graphcommerce/pull/1878) in the works that allows getting the hydration performance improvement, but not have the hydration errors. ([@paales](https://github.com/paales))
1342
410
 
1343
- ## 5.0.0
411
+ ### Patch Changes
1344
412
 
1345
- ### Major Changes
413
+ - [#1866](https://github.com/graphcommerce-org/graphcommerce/pull/1866) [`eafe3a17d`](https://github.com/graphcommerce-org/graphcommerce/commit/eafe3a17d6c6b4a9ca524361498ffa382d44c63f) - useOrderCardItemImages was triggered when there were no urlKeys present, causing unnessary requests to be made to the backend. ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
1346
414
 
1347
- - [#1734](https://github.com/graphcommerce-org/graphcommerce/pull/1734) [`e4c7fe17e`](https://github.com/graphcommerce-org/graphcommerce/commit/e4c7fe17e413e37362ceae92e67f1b3a5f62d398) - Bump major version of all packages ([@github-actions](https://github.com/apps/github-actions))
415
+ - [#1889](https://github.com/graphcommerce-org/graphcommerce/pull/1889) [`38bf4b6bc`](https://github.com/graphcommerce-org/graphcommerce/commit/38bf4b6bc6e705d9d124d50b775ba3f440599482) - put the country field first, so the address fields will not be changed afterwards when postcode service is active. ([@carlocarels90](https://github.com/carlocarels90))
1348
416
 
1349
- ### Minor Changes
417
+ - [#1899](https://github.com/graphcommerce-org/graphcommerce/pull/1899) [`3de184ee2`](https://github.com/graphcommerce-org/graphcommerce/commit/3de184ee28d48d8f1c1c092f264ac6b86fdf3ec6) - Make order states translatable ([@carlocarels90](https://github.com/carlocarels90))
1350
418
 
1351
- - [#1733](https://github.com/graphcommerce-org/graphcommerce/pull/1733) [`761bd2832`](https://github.com/graphcommerce-org/graphcommerce/commit/761bd2832f115afc8b95bedbf479266309dd5acc) - ApolloLinks, typePolicies and migration scripts are now handled with plugins on the new library component `<GraphQLProvider/>`. Hygraph's, Magento Cart, Customer, Store, Wishlist and Magento GraphQL are all migrated to be using plugins.
419
+ - [#1896](https://github.com/graphcommerce-org/graphcommerce/pull/1896) [`4f846293f`](https://github.com/graphcommerce-org/graphcommerce/commit/4f846293f3b020dc7bae885fe4ccd1cbd0cb10d7) - When a customer would log in the current guest information would be lost ([@paales](https://github.com/paales))
1352
420
 
1353
- If you are using custom `links` / `policies` / `migrations` you can pass them as props to the `<GraphQLProvider/>` or create your own local plugin. ([@paales](https://github.com/paales))
421
+ ## 6.0.1
1354
422
 
1355
423
  ### Patch Changes
1356
424
 
1357
- - [#1718](https://github.com/graphcommerce-org/graphcommerce/pull/1718) [`37e86cdc8`](https://github.com/graphcommerce-org/graphcommerce/commit/37e86cdc86ccca3db77d6c59b1e14c8112bb7893) - Remove usage of PropsWithChildren ([@paales](https://github.com/paales))
425
+ - [#1855](https://github.com/graphcommerce-org/graphcommerce/pull/1855) [`0f789d3be`](https://github.com/graphcommerce-org/graphcommerce/commit/0f789d3be1aa6d724bd98bceee092e1da6701915) - Added registration email validation to inline registration form. ([@mikekeehnen](https://github.com/mikekeehnen))
1358
426
 
1359
- - [#1738](https://github.com/graphcommerce-org/graphcommerce/pull/1738) [`52882a63e`](https://github.com/graphcommerce-org/graphcommerce/commit/52882a63e96c0d3ba9641c3714d288fa4f420c82) - Do not forward the Prev prop in plugins ([@paales](https://github.com/paales))
427
+ ## 6.0.0
1360
428
 
1361
- ## 5.0.0-canary.14
429
+ ### Minor Changes
1362
430
 
1363
- ## 5.0.0-canary.13
431
+ - [#1816](https://github.com/graphcommerce-org/graphcommerce/pull/1816) [`f61e2e572`](https://github.com/graphcommerce-org/graphcommerce/commit/f61e2e5721806c258b771a7ed5165da8dc7b815b) - Add feedback messages on 'add address form' ([@FrankHarland](https://github.com/FrankHarland))
1364
432
 
1365
- ### Major Changes
433
+ - [#1779](https://github.com/graphcommerce-org/graphcommerce/pull/1779) [`6c6d7e4d7`](https://github.com/graphcommerce-org/graphcommerce/commit/6c6d7e4d7cf5d68a39acc82b91e1f3acce366517) - Added postcode check for Dutch address fields. Ddds an autocomplete field for the street name and city based of the customers postcode + street number + addition. ([@Jessevdpoel](https://github.com/Jessevdpoel))
1366
434
 
1367
- - [`e4c7fe17e`](https://github.com/graphcommerce-org/graphcommerce/commit/e4c7fe17e413e37362ceae92e67f1b3a5f62d398) - Bump major version of all packages ([@paales](https://github.com/paales))
435
+ ### Patch Changes
1368
436
 
1369
- ## 4.14.0-canary.12
437
+ - [#1768](https://github.com/graphcommerce-org/graphcommerce/pull/1768) [`23e9a4728`](https://github.com/graphcommerce-org/graphcommerce/commit/23e9a472899dfc0b56b989f5d0e8ffb802c8cc5f) - Deprecated @graphcommerce/magento-customer-account & @graphcommerce/magento-customer-order packages and moved all functionality to @graphcomemrce/magento-customer ([@bramvanderholst](https://github.com/bramvanderholst))
1370
438
 
1371
- ## 4.14.0-canary.11
439
+ - [#1768](https://github.com/graphcommerce-org/graphcommerce/pull/1768) [`7e8dcf447`](https://github.com/graphcommerce-org/graphcommerce/commit/7e8dcf44777aca527c07aaee397d272dd2f6ae44) - Customer accoutn address list now updates after deleting an address. ([@bramvanderholst](https://github.com/bramvanderholst))
1372
440
 
1373
- ## 4.14.0-canary.10
441
+ - [#1768](https://github.com/graphcommerce-org/graphcommerce/pull/1768) [`9f0e9ab2d`](https://github.com/graphcommerce-org/graphcommerce/commit/9f0e9ab2dec3f9261ae00e9fd44d06a65ddb1d0d) - After editing an address in the my account section it, the user will now be redirected to the over page, instead of redirecting to the edit page. ([@bramvanderholst](https://github.com/bramvanderholst))
1374
442
 
1375
- ## 4.14.0-canary.9
443
+ - [#1801](https://github.com/graphcommerce-org/graphcommerce/pull/1801) [`12263d608`](https://github.com/graphcommerce-org/graphcommerce/commit/12263d6080c1e550985a42f140ffa9d95d0b0335) - Added translations for the sign-up form. ([@StefanAngenent](https://github.com/StefanAngenent))
1376
444
 
1377
- ## 4.14.0-canary.8
445
+ - [#1769](https://github.com/graphcommerce-org/graphcommerce/pull/1769) [`2693a616a`](https://github.com/graphcommerce-org/graphcommerce/commit/2693a616af2f9793012a5fb2eeacc084e695b83e) - WaitForCustomer now accepts overridable components for the fallback and unauthenticated state. ([@mikekeehnen](https://github.com/mikekeehnen))
1378
446
 
1379
- ## 4.14.0-canary.7
447
+ ## 5.1.0
1380
448
 
1381
449
  ### Patch Changes
1382
450
 
1383
- - [#1738](https://github.com/graphcommerce-org/graphcommerce/pull/1738) [`52882a63e`](https://github.com/graphcommerce-org/graphcommerce/commit/52882a63e96c0d3ba9641c3714d288fa4f420c82) - Do not forward the Prev prop in plugins ([@paales](https://github.com/paales))
451
+ - [#1745](https://github.com/graphcommerce-org/graphcommerce/pull/1745) [`b1444b933`](https://github.com/graphcommerce-org/graphcommerce/commit/b1444b9336107d3ac111563f9b62a884f1b26a8d) - Bring password reset page more in line with standard forms, add missing translations. ([@github-actions](https://github.com/apps/github-actions))
452
+
453
+ - [#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.
454
+
455
+ - Updated the @mui/material package
456
+ - Removed dependencies on react-hook-form-mui and @playwright/test
457
+ - Upgraded dependencies including type-fest and graphql-mesh
458
+ - Solved peer dependency issues ([@paales](https://github.com/paales))
1384
459
 
1385
- ## 4.14.0-canary.6
460
+ ## 5.0.0
1386
461
 
1387
- ## 4.14.0-canary.5
462
+ ### Major Changes
1388
463
 
1389
- ## 4.14.0-canary.4
464
+ - [#1734](https://github.com/graphcommerce-org/graphcommerce/pull/1734) [`e4c7fe17e`](https://github.com/graphcommerce-org/graphcommerce/commit/e4c7fe17e413e37362ceae92e67f1b3a5f62d398) - Bump major version of all packages ([@github-actions](https://github.com/apps/github-actions))
1390
465
 
1391
466
  ### Minor Changes
1392
467
 
@@ -1394,29 +469,11 @@
1394
469
 
1395
470
  If you are using custom `links` / `policies` / `migrations` you can pass them as props to the `<GraphQLProvider/>` or create your own local plugin. ([@paales](https://github.com/paales))
1396
471
 
1397
- ## 4.14.0-canary.3
1398
-
1399
- ## 4.14.0-canary.2
1400
-
1401
472
  ### Patch Changes
1402
473
 
1403
474
  - [#1718](https://github.com/graphcommerce-org/graphcommerce/pull/1718) [`37e86cdc8`](https://github.com/graphcommerce-org/graphcommerce/commit/37e86cdc86ccca3db77d6c59b1e14c8112bb7893) - Remove usage of PropsWithChildren ([@paales](https://github.com/paales))
1404
475
 
1405
- ## 4.13.2-canary.1
1406
-
1407
- ## 4.13.2-canary.0
1408
-
1409
- ## 4.13.3
1410
-
1411
- ## 4.13.2
1412
-
1413
- ## 4.13.1
1414
-
1415
- ## 4.13.1-canary.2
1416
-
1417
- ## 4.13.1-canary.1
1418
-
1419
- ## 4.13.1-canary.0
476
+ - [#1738](https://github.com/graphcommerce-org/graphcommerce/pull/1738) [`52882a63e`](https://github.com/graphcommerce-org/graphcommerce/commit/52882a63e96c0d3ba9641c3714d288fa4f420c82) - Do not forward the Prev prop in plugins ([@paales](https://github.com/paales))
1420
477
 
1421
478
  ## 4.13.0
1422
479
 
@@ -1424,14 +481,6 @@
1424
481
 
1425
482
  - [#1702](https://github.com/graphcommerce-org/graphcommerce/pull/1702) [`abb15ef4a`](https://github.com/graphcommerce-org/graphcommerce/commit/abb15ef4a79b12eddb32cc006e5d1d31dd06ac2d) Thanks [@paales](https://github.com/paales)! - Added canary releases to GraphCommerce
1426
483
 
1427
- ## 4.13.0-canary.1
1428
-
1429
- ### Patch Changes
1430
-
1431
- - [`abb15ef4a`](https://github.com/graphcommerce-org/graphcommerce/commit/abb15ef4a79b12eddb32cc006e5d1d31dd06ac2d) Thanks [@paales](https://github.com/paales)! - Added canary releases to GraphCommerce
1432
-
1433
- ## 4.13.0-canary.0
1434
-
1435
484
  ## 4.12.4
1436
485
 
1437
486
  ### Patch Changes
@@ -1991,7 +1040,7 @@
1991
1040
  All occurences of `<Trans>` and `t` need to be replaced:
1992
1041
 
1993
1042
  ```tsx
1994
- import { Trans, t } from '@lingui/macro'
1043
+ import { t, Trans } from '@lingui/macro'
1995
1044
 
1996
1045
  function MyComponent() {
1997
1046
  const foo = 'bar'
@@ -2006,8 +1055,8 @@
2006
1055
  Needs to be replaced with:
2007
1056
 
2008
1057
  ```tsx
2009
- import { Trans } from '@lingui/react'
2010
1058
  import { i18n } from '@lingui/core'
1059
+ import { Trans } from '@lingui/react'
2011
1060
 
2012
1061
  function MyComponent() {
2013
1062
  const foo = 'bar'
@@ -2585,8 +1634,6 @@ All notable changes to this project will be documented in this file. See [Conven
2585
1634
 
2586
1635
  ## [2.104.7](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/magento-customer@2.104.6...@graphcommerce/magento-customer@2.104.7) (2021-08-18)
2587
1636
 
2588
- ## [2.104.7](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/magento-customer@2.104.6...@graphcommerce/magento-customer@2.104.7) (2021-08-18)
2589
-
2590
1637
  ### Bug Fixes
2591
1638
 
2592
1639
  - make sure the session token gets deactivated when trying to merge carts when it cant ([2a9416b](https://github.com/ho-nl/m2-pwa/commit/2a9416b5c9efcd28a27f4183922ab419f62ea767))