@graphcommerce/magento-customer 9.0.0-canary.98 → 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.
- package/CHANGELOG.md +221 -1172
- package/components/AccountAddress/AccountAddress.tsx +3 -2
- package/components/AccountAddresses/AccountAddresses.tsx +7 -8
- package/components/AccountDeleteForm/AccountDeleteForm.tsx +1 -1
- package/components/AccountLatestOrder/AccountLatestOrder.tsx +5 -1
- package/components/AccountMenu/AccountMenu.tsx +2 -1
- package/components/AccountMenuItem/AccountMenuItem.tsx +7 -6
- package/components/AccountOrders/AccountOrders.tsx +3 -2
- package/components/AccountSignInUpForm/AccountSignInUpForm.tsx +17 -7
- package/components/AddressFields/AddressAddition.tsx +4 -2
- package/components/AddressFields/AddressCity.tsx +4 -2
- package/components/AddressFields/AddressCountryRegion.tsx +6 -9
- package/components/AddressFields/AddressFields.tsx +2 -2
- package/components/AddressFields/AddressHouseNumber.tsx +4 -7
- package/components/AddressFields/AddressPostcode.tsx +4 -2
- package/components/AddressFields/AddressStreet.tsx +3 -2
- package/components/AddressFields/useAddressFieldsForm.tsx +2 -6
- package/components/AddressMultiLine/AddressMultiLine.tsx +4 -3
- package/components/AddressSingleLine/AddressSingleLine.tsx +1 -1
- package/components/ApolloCustomerError/ApolloCustomerErrorAlert.tsx +2 -1
- package/components/ApolloCustomerError/ApolloCustomerErrorFullPage.tsx +3 -2
- package/components/ApolloCustomerError/ApolloCustomerErrorSnackbar.tsx +2 -1
- package/components/ApolloCustomerError/useAuthorizationErrorMasked.ts +1 -1
- package/components/CancelOrder/CancelOrderForm.tsx +16 -23
- package/components/ChangeNameForm/ChangeNameForm.tsx +2 -2
- package/components/ChangePasswordForm/ChangePasswordForm.tsx +4 -7
- package/components/CompanyFields/CompanyFields.tsx +6 -3
- package/components/CompanyFields/CompanyName.tsx +4 -2
- package/components/CompanyFields/CompanyVAT.tsx +5 -3
- package/components/CompanyFields/useCompanyFieldsForm.tsx +2 -6
- package/components/ConfirmCustomer/ConfirmCustomerForm.tsx +3 -16
- package/components/ContactForm/ContactForm.tsx +2 -1
- package/components/CreateCustomerAddressForm/CreateCustomerAddressForm.tsx +2 -2
- package/components/CustomerFab/CustomerFab.tsx +9 -9
- package/components/CustomerMenuFabItem/CustomerMenuFabItem.tsx +8 -5
- package/components/EditAddressForm/EditAddressForm.tsx +3 -7
- package/components/ForgotPasswordForm/ForgotPasswordForm.tsx +11 -8
- package/components/GuestOrderOverview/GuestOrderOverviewForm.tsx +2 -1
- package/components/NameFields/NameFields.tsx +4 -2
- package/components/NoOrdersFound/NoOrdersFound.tsx +4 -3
- package/components/OrderCard/OrderCard.tsx +7 -6
- package/components/OrderCardItem/OrderCardItem.tsx +4 -0
- package/components/OrderCardItemImage/OrderCardItemImage.tsx +4 -3
- package/components/OrderDetails/OrderDetails.tsx +11 -10
- package/components/OrderDetails/OrderTotals.tsx +6 -4
- package/components/OrderItem/OrderItem.tsx +5 -5
- package/components/OrderItems/OrderItems.tsx +5 -4
- package/components/OrderStateLabel/OrderStateLabel.tsx +4 -2
- package/components/OrderStateLabel/OrderStateLabelInline.tsx +4 -3
- package/components/ReorderItems/ReorderItems.tsx +2 -2
- package/components/ResetPasswordForm/ResetPasswordForm.tsx +7 -8
- package/components/SignInForm/SignInForm.tsx +26 -5
- package/components/SignInForm/SignInFormInline.tsx +5 -3
- package/components/SignOutForm/SignOutForm.tsx +3 -2
- package/components/SignOutForm/signOut.ts +3 -2
- package/components/SignUpForm/SignUpForm.tsx +20 -4
- package/components/SignUpForm/SignUpFormInline.tsx +4 -3
- package/components/TrackingLink/TrackingLink.tsx +3 -2
- package/components/UpdateCustomerEmailForm/UpdateCustomerEmailForm.tsx +4 -4
- package/components/UpdateDefaultAddressForm/UpdateDefaultAddressForm.tsx +1 -1
- package/components/ValidatedPasswordElement/ValidatedPasswordElement.tsx +3 -2
- package/components/WaitForCustomer/WaitForCustomer.tsx +5 -3
- package/components/index.ts +1 -0
- package/hooks/index.ts +1 -0
- package/hooks/useAccountSignInUpForm.tsx +4 -7
- package/hooks/useCustomerQuery.ts +4 -4
- package/hooks/useCustomerSession.ts +4 -6
- package/hooks/useGuestQuery.ts +4 -4
- package/hooks/useOrderCardItemImages.ts +2 -2
- package/hooks/useSignInForm.ts +9 -9
- package/link/customerLink.ts +6 -11
- package/link/xMagentoCacheIdHeader.ts +2 -1
- package/package.json +15 -15
- package/plugins/MagentoCustomerGraphqlProvider.tsx +2 -2
- package/plugins/SessionDebuggerPlugin.tsx +2 -2
- package/plugins/XMagentoCacheIdGraphQLProvider.tsx +1 -1
- package/plugins/{magentoCustomerGetInContext.ts → magentoCustomerPrivateQueryContext.ts} +7 -4
- package/test/authentication.playwright.ts +5 -5
- package/typePolicies.ts +3 -1
- package/utils/orderState.ts +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,1390 +1,467 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
## 9.0.0
|
|
4
|
-
|
|
5
|
-
## 9.0.0-canary.97
|
|
6
|
-
|
|
7
|
-
## 9.0.0-canary.96
|
|
8
|
-
|
|
9
|
-
### Patch Changes
|
|
10
|
-
|
|
11
|
-
- [#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))
|
|
12
|
-
|
|
13
|
-
## 9.0.0-canary.95
|
|
14
|
-
|
|
15
|
-
## 9.0.0-canary.94
|
|
16
|
-
|
|
17
|
-
## 9.0.0-canary.93
|
|
18
|
-
|
|
19
|
-
## 9.0.0-canary.92
|
|
20
|
-
|
|
21
|
-
## 9.0.0-canary.91
|
|
22
|
-
|
|
23
|
-
## 9.0.0-canary.90
|
|
24
|
-
|
|
25
|
-
## 9.0.0-canary.89
|
|
26
|
-
|
|
27
|
-
## 9.0.0-canary.88
|
|
28
|
-
|
|
29
|
-
## 9.0.0-canary.87
|
|
30
|
-
|
|
31
|
-
## 9.0.0-canary.86
|
|
32
|
-
|
|
33
|
-
### Patch Changes
|
|
34
|
-
|
|
35
|
-
- [#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))
|
|
36
|
-
|
|
37
|
-
## 9.0.0-canary.85
|
|
38
|
-
|
|
39
|
-
## 9.0.0-canary.84
|
|
40
|
-
|
|
41
|
-
## 9.0.0-canary.83
|
|
42
|
-
|
|
43
|
-
## 9.0.0-canary.82
|
|
44
|
-
|
|
45
|
-
### Minor Changes
|
|
46
|
-
|
|
47
|
-
- [#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))
|
|
48
|
-
|
|
49
|
-
## 9.0.0-canary.81
|
|
50
|
-
|
|
51
|
-
## 9.0.0-canary.80
|
|
52
|
-
|
|
53
|
-
### Minor Changes
|
|
54
|
-
|
|
55
|
-
- [#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))
|
|
56
|
-
|
|
57
|
-
### Patch Changes
|
|
58
|
-
|
|
59
|
-
- [#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))
|
|
60
|
-
|
|
61
|
-
- [#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))
|
|
62
|
-
|
|
63
|
-
## 9.0.0-canary.79
|
|
64
|
-
|
|
65
|
-
## 9.0.0-canary.78
|
|
66
|
-
|
|
67
|
-
### Patch Changes
|
|
68
|
-
|
|
69
|
-
- [#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))
|
|
70
|
-
|
|
71
|
-
## 9.0.0-canary.77
|
|
72
|
-
|
|
73
|
-
## 9.0.0-canary.76
|
|
74
|
-
|
|
75
|
-
## 9.0.0-canary.75
|
|
76
|
-
|
|
77
|
-
### Patch Changes
|
|
78
|
-
|
|
79
|
-
- [#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))
|
|
80
|
-
|
|
81
|
-
## 9.0.0-canary.74
|
|
82
|
-
|
|
83
|
-
## 9.0.0-canary.73
|
|
84
|
-
|
|
85
|
-
## 9.0.0-canary.72
|
|
86
|
-
|
|
87
|
-
## 9.0.0-canary.71
|
|
88
|
-
|
|
89
|
-
## 9.0.0-canary.70
|
|
90
|
-
|
|
91
|
-
## 9.0.0-canary.69
|
|
92
|
-
|
|
93
|
-
## 9.0.0-canary.68
|
|
94
|
-
|
|
95
|
-
## 9.0.0-canary.67
|
|
96
|
-
|
|
97
|
-
## 9.0.0-canary.66
|
|
98
|
-
|
|
99
|
-
### Minor Changes
|
|
100
|
-
|
|
101
|
-
- [#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))
|
|
102
|
-
|
|
103
|
-
## 9.0.0-canary.65
|
|
104
|
-
|
|
105
|
-
### Patch Changes
|
|
106
|
-
|
|
107
|
-
- [#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))
|
|
108
|
-
|
|
109
|
-
## 9.0.0-canary.64
|
|
110
|
-
|
|
111
|
-
## 9.0.0-canary.63
|
|
112
|
-
|
|
113
|
-
## 9.0.0-canary.62
|
|
114
|
-
|
|
115
|
-
## 9.0.0-canary.61
|
|
116
|
-
|
|
117
|
-
### Minor Changes
|
|
118
|
-
|
|
119
|
-
- [#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))
|
|
120
|
-
|
|
121
|
-
- [#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))
|
|
122
|
-
|
|
123
|
-
## 9.0.0-canary.60
|
|
124
|
-
|
|
125
|
-
## 9.0.0-canary.59
|
|
126
|
-
|
|
127
|
-
## 9.0.0-canary.58
|
|
128
|
-
|
|
129
|
-
### Minor Changes
|
|
130
|
-
|
|
131
|
-
- [#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))
|
|
132
|
-
|
|
133
|
-
## 9.0.0-canary.57
|
|
134
|
-
|
|
135
|
-
## 9.0.0-canary.56
|
|
136
|
-
|
|
137
|
-
## 9.0.0-canary.55
|
|
138
|
-
|
|
139
|
-
### Minor Changes
|
|
140
|
-
|
|
141
|
-
- [#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))
|
|
142
|
-
|
|
143
|
-
## 9.0.0-canary.54
|
|
144
|
-
|
|
145
|
-
## 8.1.0-canary.53
|
|
146
|
-
|
|
147
|
-
## 8.1.0-canary.52
|
|
148
|
-
|
|
149
|
-
### Minor Changes
|
|
150
|
-
|
|
151
|
-
- [#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))
|
|
152
|
-
|
|
153
|
-
## 8.1.0-canary.51
|
|
154
|
-
|
|
155
|
-
## 8.1.0-canary.50
|
|
156
|
-
|
|
157
|
-
## 8.1.0-canary.49
|
|
158
|
-
|
|
159
|
-
### Patch Changes
|
|
160
|
-
|
|
161
|
-
- [#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))
|
|
162
|
-
|
|
163
|
-
## 8.1.0-canary.48
|
|
164
|
-
|
|
165
|
-
### Minor Changes
|
|
166
|
-
|
|
167
|
-
- [#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))
|
|
168
|
-
|
|
169
|
-
## 8.1.0-canary.47
|
|
170
|
-
|
|
171
|
-
### Minor Changes
|
|
172
|
-
|
|
173
|
-
- [#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))
|
|
174
|
-
|
|
175
|
-
## 8.1.0-canary.46
|
|
176
|
-
|
|
177
|
-
## 8.1.0-canary.45
|
|
178
|
-
|
|
179
|
-
## 8.1.0-canary.44
|
|
180
|
-
|
|
181
|
-
## 8.1.0-canary.43
|
|
182
|
-
|
|
183
|
-
## 8.1.0-canary.42
|
|
184
|
-
|
|
185
|
-
## 8.1.0-canary.41
|
|
186
|
-
|
|
187
|
-
## 8.1.0-canary.40
|
|
188
|
-
|
|
189
|
-
### Minor Changes
|
|
190
|
-
|
|
191
|
-
- [#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))
|
|
192
|
-
|
|
193
|
-
## 8.1.0-canary.39
|
|
194
|
-
|
|
195
|
-
## 8.1.0-canary.38
|
|
196
|
-
|
|
197
|
-
### Minor Changes
|
|
198
|
-
|
|
199
|
-
- [#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))
|
|
200
|
-
|
|
201
|
-
### Patch Changes
|
|
202
|
-
|
|
203
|
-
- [#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))
|
|
204
|
-
|
|
205
|
-
## 8.1.0-canary.37
|
|
206
|
-
|
|
207
|
-
## 8.1.0-canary.36
|
|
208
|
-
|
|
209
|
-
## 8.1.0-canary.35
|
|
210
|
-
|
|
211
|
-
### Minor Changes
|
|
212
|
-
|
|
213
|
-
- [#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))
|
|
214
|
-
|
|
215
|
-
### Patch Changes
|
|
216
|
-
|
|
217
|
-
- [#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))
|
|
218
|
-
|
|
219
|
-
## 8.1.0-canary.34
|
|
220
|
-
|
|
221
|
-
## 8.1.0-canary.33
|
|
222
|
-
|
|
223
|
-
## 8.1.0-canary.32
|
|
224
|
-
|
|
225
|
-
## 8.1.0-canary.31
|
|
226
|
-
|
|
227
|
-
## 8.1.0-canary.30
|
|
228
|
-
|
|
229
|
-
## 8.1.0-canary.29
|
|
230
|
-
|
|
231
|
-
## 8.1.0-canary.28
|
|
232
|
-
|
|
233
|
-
## 8.1.0-canary.27
|
|
234
|
-
|
|
235
|
-
## 8.1.0-canary.26
|
|
236
|
-
|
|
237
|
-
## 8.1.0-canary.25
|
|
238
|
-
|
|
239
|
-
## 8.1.0-canary.24
|
|
240
|
-
|
|
241
|
-
## 8.1.0-canary.23
|
|
242
|
-
|
|
243
|
-
## 8.1.0-canary.22
|
|
244
|
-
|
|
245
|
-
### Patch Changes
|
|
246
|
-
|
|
247
|
-
- [#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))
|
|
248
|
-
|
|
249
|
-
## 8.1.0-canary.21
|
|
250
|
-
|
|
251
|
-
## 8.1.0-canary.20
|
|
252
|
-
|
|
253
|
-
## 8.1.0-canary.19
|
|
254
|
-
|
|
255
|
-
## 8.1.0-canary.18
|
|
256
|
-
|
|
257
|
-
## 8.1.0-canary.17
|
|
258
|
-
|
|
259
|
-
## 8.1.0-canary.16
|
|
260
|
-
|
|
261
|
-
## 8.1.0-canary.15
|
|
262
|
-
|
|
263
|
-
## 8.1.0-canary.14
|
|
264
|
-
|
|
265
|
-
## 8.1.0-canary.13
|
|
266
|
-
|
|
267
|
-
## 8.1.0-canary.12
|
|
268
|
-
|
|
269
|
-
## 8.1.0-canary.11
|
|
270
|
-
|
|
271
|
-
## 8.1.0-canary.10
|
|
272
|
-
|
|
273
|
-
## 8.1.0-canary.9
|
|
274
|
-
|
|
275
|
-
## 8.1.0-canary.8
|
|
276
|
-
|
|
277
|
-
## 8.1.0-canary.7
|
|
278
|
-
|
|
279
|
-
## 8.1.0-canary.6
|
|
280
|
-
|
|
281
|
-
## 8.1.0-canary.5
|
|
282
|
-
|
|
283
|
-
## 8.0.6-canary.4
|
|
284
|
-
|
|
285
|
-
## 8.0.6-canary.3
|
|
286
|
-
|
|
287
|
-
## 8.0.6-canary.2
|
|
288
|
-
|
|
289
|
-
### Patch Changes
|
|
290
|
-
|
|
291
|
-
- [#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))
|
|
292
|
-
|
|
293
|
-
- [#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))
|
|
294
|
-
|
|
295
|
-
## 8.0.6-canary.1
|
|
296
|
-
|
|
297
|
-
## 8.0.6-canary.0
|
|
298
|
-
|
|
299
|
-
## 8.0.5
|
|
300
|
-
|
|
301
|
-
### Patch Changes
|
|
302
|
-
|
|
303
|
-
- [#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))
|
|
304
|
-
|
|
305
|
-
## 8.0.5-canary.10
|
|
306
|
-
|
|
307
|
-
## 8.0.5-canary.9
|
|
308
|
-
|
|
309
|
-
## 8.0.5-canary.8
|
|
310
|
-
|
|
311
|
-
## 8.0.5-canary.7
|
|
312
|
-
|
|
313
|
-
## 8.0.5-canary.6
|
|
314
|
-
|
|
315
|
-
### Patch Changes
|
|
316
|
-
|
|
317
|
-
- [#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))
|
|
318
|
-
|
|
319
|
-
## 8.0.5-canary.5
|
|
320
|
-
|
|
321
|
-
## 8.0.5-canary.4
|
|
322
|
-
|
|
323
|
-
## 8.0.5-canary.3
|
|
324
|
-
|
|
325
|
-
## 8.0.5-canary.2
|
|
326
|
-
|
|
327
|
-
## 8.0.5-canary.1
|
|
328
|
-
|
|
329
|
-
## 8.0.5-canary.0
|
|
330
|
-
|
|
331
|
-
## 8.0.4
|
|
332
|
-
|
|
333
|
-
## 8.0.4-canary.1
|
|
334
|
-
|
|
335
|
-
## 8.0.4-canary.0
|
|
336
|
-
|
|
337
|
-
## 8.0.3
|
|
338
|
-
|
|
339
|
-
### Patch Changes
|
|
340
|
-
|
|
341
|
-
- [#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))
|
|
342
|
-
|
|
343
|
-
- [#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))
|
|
344
|
-
|
|
345
|
-
- [#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))
|
|
346
|
-
|
|
347
|
-
- [#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))
|
|
348
|
-
|
|
349
|
-
## 8.0.3-canary.6
|
|
350
|
-
|
|
351
|
-
## 8.0.3-canary.5
|
|
352
|
-
|
|
353
|
-
### Patch Changes
|
|
354
|
-
|
|
355
|
-
- [#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))
|
|
356
|
-
|
|
357
|
-
- [#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))
|
|
358
|
-
|
|
359
|
-
## 8.0.3-canary.4
|
|
360
|
-
|
|
361
|
-
## 8.0.3-canary.3
|
|
362
|
-
|
|
363
|
-
## 8.0.3-canary.2
|
|
364
|
-
|
|
365
|
-
### Patch Changes
|
|
366
|
-
|
|
367
|
-
- [#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))
|
|
368
|
-
|
|
369
|
-
## 8.0.3-canary.1
|
|
370
|
-
|
|
371
|
-
### Patch Changes
|
|
372
|
-
|
|
373
|
-
- [#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))
|
|
374
|
-
|
|
375
|
-
## 8.0.3-canary.0
|
|
376
|
-
|
|
377
|
-
## 8.0.2
|
|
378
|
-
|
|
379
|
-
### Patch Changes
|
|
380
|
-
|
|
381
|
-
- [#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))
|
|
382
|
-
|
|
383
|
-
## 8.0.2-canary.3
|
|
384
|
-
|
|
385
|
-
## 8.0.2-canary.2
|
|
386
|
-
|
|
387
|
-
### Patch Changes
|
|
388
|
-
|
|
389
|
-
- [#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))
|
|
390
|
-
|
|
391
|
-
## 8.0.2-canary.1
|
|
392
|
-
|
|
393
|
-
## 8.0.2-canary.0
|
|
394
|
-
|
|
395
|
-
## 8.0.1
|
|
396
|
-
|
|
397
|
-
### Patch Changes
|
|
398
|
-
|
|
399
|
-
- [#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))
|
|
400
|
-
|
|
401
|
-
- [#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))
|
|
402
|
-
|
|
403
|
-
- [#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))
|
|
404
|
-
|
|
405
|
-
- [#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))
|
|
406
|
-
|
|
407
|
-
## 8.0.1-canary.4
|
|
408
|
-
|
|
409
|
-
### Patch Changes
|
|
410
|
-
|
|
411
|
-
- [#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))
|
|
412
|
-
|
|
413
|
-
## 8.0.1-canary.3
|
|
414
|
-
|
|
415
|
-
## 8.0.1-canary.2
|
|
416
|
-
|
|
417
|
-
### Patch Changes
|
|
418
|
-
|
|
419
|
-
- [#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))
|
|
420
|
-
|
|
421
|
-
## 8.0.1-canary.1
|
|
422
|
-
|
|
423
|
-
## 8.0.1-canary.0
|
|
424
|
-
|
|
425
|
-
### Patch Changes
|
|
426
|
-
|
|
427
|
-
- [#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))
|
|
428
|
-
|
|
429
|
-
- [#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))
|
|
430
|
-
|
|
431
|
-
## 8.0.0
|
|
432
|
-
|
|
433
|
-
### Minor Changes
|
|
434
|
-
|
|
435
|
-
- [#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))
|
|
436
|
-
|
|
437
|
-
- [#2110](https://github.com/graphcommerce-org/graphcommerce/pull/2110) [`d2e716d`](https://github.com/graphcommerce-org/graphcommerce/commit/d2e716d437fcfed13388ef536a8e73513744027b) - ---
|
|
438
|
-
|
|
439
|
-
'@graphcommerce/magento-cart-email': minor '@graphcommerce/magento-customer': minor
|
|
440
|
-
|
|
441
|
-
***
|
|
442
|
-
|
|
443
|
-
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.
|
|
444
|
-
|
|
445
|
-
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))
|
|
446
|
-
|
|
447
|
-
### Patch Changes
|
|
448
|
-
|
|
449
|
-
- [#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))
|
|
450
|
-
|
|
451
|
-
- [#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))
|
|
452
|
-
|
|
453
|
-
- [#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))
|
|
454
|
-
|
|
455
|
-
- [#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))
|
|
456
|
-
|
|
457
|
-
- [#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))
|
|
458
|
-
|
|
459
|
-
- [#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))
|
|
460
|
-
|
|
461
|
-
- [#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))
|
|
462
|
-
|
|
463
|
-
- [#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))
|
|
464
|
-
|
|
465
|
-
- [#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))
|
|
466
|
-
|
|
467
|
-
- [#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))
|
|
468
|
-
|
|
469
|
-
- [#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))
|
|
470
|
-
|
|
471
|
-
## 8.0.0-canary.100
|
|
472
|
-
|
|
473
|
-
## 8.0.0-canary.99
|
|
474
|
-
|
|
475
|
-
## 8.0.0-canary.98
|
|
476
|
-
|
|
477
|
-
## 8.0.0-canary.97
|
|
478
|
-
|
|
479
|
-
### Minor Changes
|
|
480
|
-
|
|
481
|
-
- [#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))
|
|
482
|
-
|
|
483
|
-
## 8.0.0-canary.96
|
|
484
|
-
|
|
485
|
-
## 8.0.0-canary.95
|
|
486
|
-
|
|
487
|
-
## 8.0.0-canary.94
|
|
488
|
-
|
|
489
|
-
## 8.0.0-canary.93
|
|
490
|
-
|
|
491
|
-
## 8.0.0-canary.92
|
|
492
|
-
|
|
493
|
-
## 8.0.0-canary.91
|
|
494
|
-
|
|
495
|
-
## 8.0.0-canary.90
|
|
496
|
-
|
|
497
|
-
### Patch Changes
|
|
498
|
-
|
|
499
|
-
- [#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))
|
|
500
|
-
|
|
501
|
-
## 8.0.0-canary.89
|
|
502
|
-
|
|
503
|
-
## 8.0.0-canary.88
|
|
504
|
-
|
|
505
|
-
### Patch Changes
|
|
506
|
-
|
|
507
|
-
- [#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))
|
|
508
|
-
|
|
509
|
-
## 8.0.0-canary.87
|
|
510
|
-
|
|
511
|
-
## 8.0.0-canary.86
|
|
512
|
-
|
|
513
|
-
## 8.0.0-canary.85
|
|
514
|
-
|
|
515
|
-
## 8.0.0-canary.84
|
|
516
|
-
|
|
517
|
-
## 8.0.0-canary.83
|
|
518
|
-
|
|
519
|
-
## 8.0.0-canary.82
|
|
520
|
-
|
|
521
|
-
## 8.0.0-canary.81
|
|
522
|
-
|
|
523
|
-
## 8.0.0-canary.80
|
|
524
|
-
|
|
525
|
-
## 8.0.0-canary.79
|
|
526
|
-
|
|
527
|
-
## 8.0.0-canary.78
|
|
528
|
-
|
|
529
|
-
## 8.0.0-canary.77
|
|
530
|
-
|
|
531
|
-
## 8.0.0-canary.76
|
|
532
|
-
|
|
533
|
-
## 8.0.0-canary.75
|
|
534
|
-
|
|
535
|
-
## 8.0.0-canary.74
|
|
536
|
-
|
|
537
|
-
## 8.0.0-canary.73
|
|
538
|
-
|
|
539
|
-
## 8.0.0-canary.72
|
|
540
|
-
|
|
541
|
-
## 8.0.0-canary.71
|
|
542
|
-
|
|
543
|
-
## 8.0.0-canary.70
|
|
544
|
-
|
|
545
|
-
### Patch Changes
|
|
546
|
-
|
|
547
|
-
- [#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))
|
|
548
|
-
|
|
549
|
-
## 8.0.0-canary.69
|
|
550
|
-
|
|
551
|
-
## 7.1.0-canary.68
|
|
552
|
-
|
|
553
|
-
### Patch Changes
|
|
554
|
-
|
|
555
|
-
- [#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))
|
|
556
|
-
|
|
557
|
-
- [#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))
|
|
558
|
-
|
|
559
|
-
## 7.1.0-canary.67
|
|
560
|
-
|
|
561
|
-
## 7.1.0-canary.66
|
|
562
|
-
|
|
563
|
-
## 7.1.0-canary.65
|
|
564
|
-
|
|
565
|
-
## 7.1.0-canary.64
|
|
566
|
-
|
|
567
|
-
## 7.1.0-canary.63
|
|
568
|
-
|
|
569
|
-
## 7.1.0-canary.62
|
|
570
|
-
|
|
571
|
-
## 7.1.0-canary.61
|
|
572
|
-
|
|
573
|
-
## 7.1.0-canary.60
|
|
574
|
-
|
|
575
|
-
## 7.1.0-canary.59
|
|
576
|
-
|
|
577
|
-
## 7.1.0-canary.58
|
|
578
|
-
|
|
579
|
-
## 7.1.0-canary.57
|
|
580
|
-
|
|
581
|
-
## 7.1.0-canary.56
|
|
582
|
-
|
|
583
|
-
## 7.1.0-canary.55
|
|
584
|
-
|
|
585
|
-
## 7.1.0-canary.54
|
|
586
|
-
|
|
587
|
-
## 7.1.0-canary.53
|
|
588
|
-
|
|
589
|
-
## 7.1.0-canary.52
|
|
590
|
-
|
|
591
|
-
### Minor Changes
|
|
592
|
-
|
|
593
|
-
- [#2110](https://github.com/graphcommerce-org/graphcommerce/pull/2110) [`d2e716d43`](https://github.com/graphcommerce-org/graphcommerce/commit/d2e716d437fcfed13388ef536a8e73513744027b) - ---
|
|
594
|
-
|
|
595
|
-
'@graphcommerce/magento-cart-email': minor '@graphcommerce/magento-customer': minor
|
|
596
|
-
|
|
597
|
-
***
|
|
598
|
-
|
|
599
|
-
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.
|
|
600
|
-
|
|
601
|
-
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))
|
|
602
|
-
|
|
603
|
-
## 7.1.0-canary.51
|
|
604
|
-
|
|
605
|
-
## 7.1.0-canary.50
|
|
606
|
-
|
|
607
|
-
## 7.1.0-canary.49
|
|
608
|
-
|
|
609
|
-
## 7.1.0-canary.48
|
|
610
|
-
|
|
611
|
-
## 7.1.0-canary.47
|
|
612
|
-
|
|
613
|
-
## 7.1.0-canary.46
|
|
614
|
-
|
|
615
|
-
## 7.1.0-canary.45
|
|
616
|
-
|
|
617
|
-
## 7.1.0-canary.38
|
|
618
|
-
|
|
619
|
-
### Patch Changes
|
|
620
|
-
|
|
621
|
-
- [#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))
|
|
622
|
-
|
|
623
|
-
## 7.1.0-canary.37
|
|
624
|
-
|
|
625
|
-
## 7.1.0-canary.36
|
|
626
|
-
|
|
627
|
-
### Patch Changes
|
|
628
|
-
|
|
629
|
-
- [#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))
|
|
630
|
-
|
|
631
|
-
## 7.1.0-canary.35
|
|
632
|
-
|
|
633
|
-
## 7.1.0-canary.34
|
|
634
|
-
|
|
635
|
-
## 7.1.0-canary.33
|
|
636
|
-
|
|
637
|
-
## 7.1.0-canary.32
|
|
638
|
-
|
|
639
|
-
### Patch Changes
|
|
640
|
-
|
|
641
|
-
- [#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))
|
|
642
|
-
|
|
643
|
-
## 7.1.0-canary.31
|
|
644
|
-
|
|
645
|
-
## 7.1.0-canary.30
|
|
646
|
-
|
|
647
|
-
## 7.1.0-canary.29
|
|
648
|
-
|
|
649
|
-
## 7.1.0-canary.28
|
|
650
|
-
|
|
651
|
-
## 7.1.0-canary.27
|
|
652
|
-
|
|
653
|
-
## 7.1.0-canary.26
|
|
654
|
-
|
|
655
|
-
## 7.1.0-canary.25
|
|
656
|
-
|
|
657
|
-
## 7.1.0-canary.24
|
|
658
|
-
|
|
659
|
-
## 7.1.0-canary.23
|
|
660
|
-
|
|
661
|
-
### Patch Changes
|
|
662
|
-
|
|
663
|
-
- [#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))
|
|
664
|
-
|
|
665
|
-
## 7.1.0-canary.22
|
|
666
|
-
|
|
667
|
-
## 7.1.0-canary.21
|
|
668
|
-
|
|
669
|
-
## 7.1.0-canary.20
|
|
670
|
-
|
|
671
|
-
## 7.1.0-canary.19
|
|
672
|
-
|
|
673
|
-
## 7.1.0-canary.18
|
|
674
|
-
|
|
675
|
-
## 7.1.0-canary.17
|
|
676
|
-
|
|
677
|
-
## 7.1.0-canary.16
|
|
678
|
-
|
|
679
|
-
### Patch Changes
|
|
680
|
-
|
|
681
|
-
- [#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))
|
|
682
|
-
|
|
683
|
-
## 7.1.0-canary.15
|
|
684
|
-
|
|
685
|
-
### Patch Changes
|
|
686
|
-
|
|
687
|
-
- [#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))
|
|
688
|
-
|
|
689
|
-
## 7.1.0-canary.14
|
|
690
|
-
|
|
691
|
-
## 7.1.0-canary.13
|
|
692
|
-
|
|
693
|
-
## 7.1.0-canary.12
|
|
694
|
-
|
|
695
|
-
## 7.1.0-canary.11
|
|
696
|
-
|
|
697
|
-
## 7.1.0-canary.10
|
|
698
|
-
|
|
699
|
-
## 7.1.0-canary.9
|
|
700
|
-
|
|
701
|
-
## 7.1.0-canary.8
|
|
702
|
-
|
|
703
|
-
## 7.0.2-canary.7
|
|
704
|
-
|
|
705
|
-
## 7.0.2-canary.6
|
|
706
|
-
|
|
707
|
-
## 7.0.2-canary.5
|
|
708
|
-
|
|
709
|
-
## 7.0.1
|
|
710
|
-
|
|
711
|
-
### Patch Changes
|
|
712
|
-
|
|
713
|
-
- [#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))
|
|
714
|
-
|
|
715
|
-
## 7.0.1-canary.15
|
|
716
|
-
|
|
717
|
-
## 7.0.1-canary.14
|
|
718
|
-
|
|
719
|
-
## 7.0.1-canary.13
|
|
720
|
-
|
|
721
|
-
## 7.0.1-canary.12
|
|
722
|
-
|
|
723
|
-
## 7.0.1-canary.11
|
|
724
|
-
|
|
725
|
-
## 7.0.1-canary.10
|
|
726
|
-
|
|
727
|
-
## 7.0.1-canary.9
|
|
728
|
-
|
|
729
|
-
## 7.0.1-canary.8
|
|
730
|
-
|
|
731
|
-
## 7.0.1-canary.7
|
|
732
|
-
|
|
733
|
-
## 7.0.1-canary.6
|
|
734
|
-
|
|
735
|
-
## 7.0.1-canary.5
|
|
736
|
-
|
|
737
|
-
## 7.0.1-canary.4
|
|
738
|
-
|
|
739
|
-
## 7.0.1-canary.3
|
|
740
|
-
|
|
741
|
-
### Patch Changes
|
|
742
|
-
|
|
743
|
-
- [#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))
|
|
744
|
-
|
|
745
|
-
## 7.0.1-canary.2
|
|
746
|
-
|
|
747
|
-
## 7.0.1-canary.1
|
|
748
|
-
|
|
749
|
-
## 7.0.1-canary.0
|
|
750
|
-
|
|
751
|
-
## 7.0.0
|
|
752
|
-
|
|
753
|
-
### Minor Changes
|
|
754
|
-
|
|
755
|
-
- [#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))
|
|
756
|
-
|
|
757
|
-
- [#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))
|
|
758
|
-
|
|
759
|
-
### Patch Changes
|
|
760
|
-
|
|
761
|
-
- [#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))
|
|
762
|
-
|
|
763
|
-
- [#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))
|
|
764
|
-
|
|
765
|
-
- [#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))
|
|
766
|
-
|
|
767
|
-
- [#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))
|
|
768
|
-
|
|
769
|
-
- [#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))
|
|
770
|
-
|
|
771
|
-
- [#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))
|
|
772
|
-
|
|
773
|
-
- [#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))
|
|
774
|
-
|
|
775
|
-
- [#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))
|
|
776
|
-
|
|
777
|
-
- [#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))
|
|
778
|
-
|
|
779
|
-
## 6.2.0-canary.98
|
|
780
|
-
|
|
781
|
-
## 6.2.0-canary.97
|
|
782
|
-
|
|
783
|
-
## 6.2.0-canary.96
|
|
784
|
-
|
|
785
|
-
## 6.2.0-canary.95
|
|
786
|
-
|
|
787
|
-
## 6.2.0-canary.94
|
|
788
|
-
|
|
789
|
-
## 6.2.0-canary.93
|
|
790
|
-
|
|
791
|
-
## 6.2.0-canary.92
|
|
792
|
-
|
|
793
|
-
## 6.2.0-canary.91
|
|
794
|
-
|
|
795
|
-
## 6.2.0-canary.90
|
|
796
|
-
|
|
797
|
-
## 6.2.0-canary.89
|
|
798
|
-
|
|
799
|
-
## 6.2.0-canary.88
|
|
800
|
-
|
|
801
|
-
## 6.2.0-canary.87
|
|
802
|
-
|
|
803
|
-
## 6.2.0-canary.86
|
|
804
|
-
|
|
805
|
-
## 6.2.0-canary.85
|
|
806
|
-
|
|
807
|
-
## 6.2.0-canary.84
|
|
808
|
-
|
|
809
|
-
## 6.2.0-canary.83
|
|
810
|
-
|
|
811
|
-
## 6.2.0-canary.82
|
|
812
|
-
|
|
813
|
-
## 6.2.0-canary.81
|
|
814
|
-
|
|
815
|
-
## 6.2.0-canary.80
|
|
816
|
-
|
|
817
|
-
## 6.2.0-canary.79
|
|
818
|
-
|
|
819
|
-
## 6.2.0-canary.78
|
|
820
|
-
|
|
821
|
-
## 6.2.0-canary.77
|
|
822
|
-
|
|
823
|
-
## 6.2.0-canary.76
|
|
824
|
-
|
|
825
|
-
## 6.2.0-canary.75
|
|
826
|
-
|
|
827
|
-
### Patch Changes
|
|
828
|
-
|
|
829
|
-
- [#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))
|
|
830
|
-
|
|
831
|
-
## 6.2.0-canary.74
|
|
832
|
-
|
|
833
|
-
### Patch Changes
|
|
834
|
-
|
|
835
|
-
- [#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))
|
|
836
|
-
|
|
837
|
-
## 6.2.0-canary.73
|
|
838
|
-
|
|
839
|
-
## 6.2.0-canary.72
|
|
840
|
-
|
|
841
|
-
## 6.2.0-canary.71
|
|
842
|
-
|
|
843
|
-
## 6.2.0-canary.70
|
|
844
|
-
|
|
845
|
-
## 6.2.0-canary.69
|
|
846
|
-
|
|
847
|
-
## 6.2.0-canary.68
|
|
848
|
-
|
|
849
|
-
## 6.2.0-canary.67
|
|
850
|
-
|
|
851
|
-
## 6.2.0-canary.66
|
|
852
|
-
|
|
853
|
-
## 6.2.0-canary.65
|
|
854
|
-
|
|
855
|
-
## 6.2.0-canary.64
|
|
856
|
-
|
|
857
|
-
## 6.2.0-canary.63
|
|
858
|
-
|
|
859
|
-
## 6.2.0-canary.62
|
|
860
|
-
|
|
861
|
-
## 6.2.0-canary.61
|
|
862
|
-
|
|
863
|
-
## 6.2.0-canary.60
|
|
864
|
-
|
|
865
|
-
## 6.2.0-canary.59
|
|
866
|
-
|
|
867
|
-
## 6.2.0-canary.58
|
|
868
|
-
|
|
869
|
-
## 6.2.0-canary.57
|
|
870
|
-
|
|
871
|
-
## 6.2.0-canary.56
|
|
872
|
-
|
|
873
|
-
## 6.2.0-canary.55
|
|
874
|
-
|
|
875
|
-
## 6.2.0-canary.54
|
|
876
|
-
|
|
877
|
-
## 6.2.0-canary.53
|
|
878
|
-
|
|
879
|
-
## 6.2.0-canary.52
|
|
880
|
-
|
|
881
|
-
### Patch Changes
|
|
882
|
-
|
|
883
|
-
- [#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))
|
|
884
|
-
|
|
885
|
-
## 6.2.0-canary.51
|
|
886
|
-
|
|
887
|
-
## 6.2.0-canary.50
|
|
888
|
-
|
|
889
|
-
## 6.2.0-canary.49
|
|
890
|
-
|
|
891
|
-
## 6.2.0-canary.48
|
|
892
|
-
|
|
893
|
-
## 6.2.0-canary.47
|
|
894
|
-
|
|
895
|
-
### Patch Changes
|
|
896
|
-
|
|
897
|
-
- [#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))
|
|
898
|
-
|
|
899
|
-
## 6.2.0-canary.46
|
|
900
|
-
|
|
901
|
-
## 6.2.0-canary.45
|
|
3
|
+
## 9.0.0
|
|
902
4
|
|
|
903
5
|
### Minor Changes
|
|
904
6
|
|
|
905
|
-
- [#
|
|
906
|
-
|
|
907
|
-
## 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))
|
|
908
8
|
|
|
909
|
-
|
|
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))
|
|
910
10
|
|
|
911
|
-
|
|
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))
|
|
912
12
|
|
|
913
|
-
|
|
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))
|
|
914
14
|
|
|
915
|
-
|
|
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))
|
|
916
16
|
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
## 6.2.0-canary.38
|
|
920
|
-
|
|
921
|
-
## 6.2.0-canary.37
|
|
922
|
-
|
|
923
|
-
### 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))
|
|
924
18
|
|
|
925
|
-
- [#
|
|
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))
|
|
926
20
|
|
|
927
|
-
|
|
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))
|
|
928
22
|
|
|
929
|
-
|
|
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))
|
|
930
24
|
|
|
931
|
-
|
|
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))
|
|
932
26
|
|
|
933
|
-
|
|
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))
|
|
934
28
|
|
|
935
|
-
|
|
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))
|
|
936
30
|
|
|
937
|
-
|
|
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))
|
|
938
32
|
|
|
939
|
-
|
|
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))
|
|
940
34
|
|
|
941
35
|
### Patch Changes
|
|
942
36
|
|
|
943
|
-
- [#
|
|
944
|
-
|
|
945
|
-
## 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))
|
|
946
38
|
|
|
947
|
-
|
|
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))
|
|
948
40
|
|
|
949
|
-
|
|
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))
|
|
950
42
|
|
|
951
|
-
|
|
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))
|
|
952
44
|
|
|
953
|
-
|
|
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))
|
|
954
46
|
|
|
955
|
-
|
|
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))
|
|
956
48
|
|
|
957
|
-
|
|
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))
|
|
958
50
|
|
|
959
|
-
|
|
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))
|
|
960
52
|
|
|
961
|
-
|
|
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))
|
|
962
54
|
|
|
963
|
-
|
|
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))
|
|
964
56
|
|
|
965
|
-
|
|
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))
|
|
966
58
|
|
|
967
|
-
|
|
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))
|
|
968
60
|
|
|
969
|
-
|
|
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))
|
|
970
62
|
|
|
971
|
-
|
|
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))
|
|
972
64
|
|
|
973
|
-
|
|
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))
|
|
974
66
|
|
|
975
|
-
- [#
|
|
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))
|
|
976
68
|
|
|
977
|
-
|
|
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))
|
|
978
70
|
|
|
979
|
-
|
|
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))
|
|
980
72
|
|
|
981
|
-
- [#
|
|
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))
|
|
982
74
|
|
|
983
|
-
|
|
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))
|
|
984
76
|
|
|
985
|
-
|
|
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))
|
|
986
78
|
|
|
987
|
-
|
|
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))
|
|
988
80
|
|
|
989
|
-
|
|
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))
|
|
990
82
|
|
|
991
|
-
|
|
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))
|
|
992
84
|
|
|
993
|
-
##
|
|
85
|
+
## 9.0.0-canary.118
|
|
994
86
|
|
|
995
|
-
##
|
|
87
|
+
## 9.0.0-canary.117
|
|
996
88
|
|
|
997
|
-
##
|
|
89
|
+
## 9.0.0-canary.116
|
|
998
90
|
|
|
999
91
|
### Patch Changes
|
|
1000
92
|
|
|
1001
|
-
- [#
|
|
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))
|
|
1002
94
|
|
|
1003
|
-
##
|
|
95
|
+
## 9.0.0-canary.115
|
|
1004
96
|
|
|
1005
|
-
##
|
|
97
|
+
## 9.0.0-canary.114
|
|
1006
98
|
|
|
1007
|
-
##
|
|
99
|
+
## 9.0.0-canary.113
|
|
1008
100
|
|
|
1009
101
|
### Patch Changes
|
|
1010
102
|
|
|
1011
|
-
- [#
|
|
1012
|
-
|
|
1013
|
-
## 6.1.1-canary.3
|
|
1014
|
-
|
|
1015
|
-
## 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))
|
|
1016
104
|
|
|
1017
|
-
##
|
|
105
|
+
## 9.0.0-canary.112
|
|
1018
106
|
|
|
1019
|
-
##
|
|
107
|
+
## 9.0.0-canary.111
|
|
1020
108
|
|
|
1021
|
-
|
|
109
|
+
### Patch Changes
|
|
1022
110
|
|
|
1023
|
-
|
|
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))
|
|
1024
112
|
|
|
1025
|
-
|
|
113
|
+
## 9.0.0-canary.110
|
|
1026
114
|
|
|
1027
|
-
|
|
115
|
+
## 9.0.0-canary.109
|
|
1028
116
|
|
|
1029
117
|
### Patch Changes
|
|
1030
118
|
|
|
1031
|
-
- [#
|
|
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))
|
|
1032
120
|
|
|
1033
|
-
|
|
121
|
+
## 9.0.0-canary.108
|
|
1034
122
|
|
|
1035
|
-
|
|
123
|
+
### Patch Changes
|
|
1036
124
|
|
|
1037
|
-
- [#
|
|
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))
|
|
1038
126
|
|
|
1039
|
-
|
|
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))
|
|
1040
128
|
|
|
1041
|
-
|
|
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))
|
|
1042
130
|
|
|
1043
|
-
|
|
131
|
+
## 9.0.0-canary.107
|
|
1044
132
|
|
|
1045
|
-
|
|
133
|
+
## 9.0.0-canary.106
|
|
1046
134
|
|
|
1047
|
-
##
|
|
135
|
+
## 9.0.0-canary.105
|
|
1048
136
|
|
|
1049
|
-
##
|
|
137
|
+
## 9.0.0-canary.104
|
|
1050
138
|
|
|
1051
|
-
##
|
|
139
|
+
## 9.0.0-canary.103
|
|
1052
140
|
|
|
1053
141
|
### Patch Changes
|
|
1054
142
|
|
|
1055
|
-
- [#
|
|
1056
|
-
|
|
1057
|
-
## 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))
|
|
1058
144
|
|
|
1059
|
-
##
|
|
145
|
+
## 9.0.0-canary.101
|
|
1060
146
|
|
|
1061
147
|
### Patch Changes
|
|
1062
148
|
|
|
1063
|
-
- [#
|
|
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))
|
|
1064
150
|
|
|
1065
|
-
|
|
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))
|
|
1066
152
|
|
|
1067
|
-
|
|
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))
|
|
1068
154
|
|
|
1069
|
-
##
|
|
155
|
+
## 9.0.0-canary.96
|
|
1070
156
|
|
|
1071
157
|
### Patch Changes
|
|
1072
158
|
|
|
1073
|
-
- [#
|
|
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))
|
|
1074
160
|
|
|
1075
|
-
##
|
|
161
|
+
## 9.0.0-canary.86
|
|
1076
162
|
|
|
1077
|
-
|
|
163
|
+
### Patch Changes
|
|
1078
164
|
|
|
1079
|
-
|
|
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))
|
|
1080
166
|
|
|
1081
|
-
##
|
|
167
|
+
## 9.0.0-canary.82
|
|
1082
168
|
|
|
1083
|
-
|
|
169
|
+
### Minor Changes
|
|
1084
170
|
|
|
1085
|
-
|
|
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))
|
|
1086
172
|
|
|
1087
|
-
##
|
|
173
|
+
## 9.0.0-canary.80
|
|
1088
174
|
|
|
1089
|
-
|
|
175
|
+
### Minor Changes
|
|
1090
176
|
|
|
1091
|
-
|
|
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))
|
|
1092
178
|
|
|
1093
|
-
|
|
179
|
+
### Patch Changes
|
|
1094
180
|
|
|
1095
|
-
|
|
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))
|
|
1096
182
|
|
|
1097
|
-
|
|
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))
|
|
1098
184
|
|
|
1099
|
-
##
|
|
185
|
+
## 9.0.0-canary.78
|
|
1100
186
|
|
|
1101
187
|
### Patch Changes
|
|
1102
188
|
|
|
1103
|
-
- [#
|
|
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))
|
|
1104
190
|
|
|
1105
|
-
##
|
|
191
|
+
## 9.0.0-canary.75
|
|
1106
192
|
|
|
1107
193
|
### Patch Changes
|
|
1108
194
|
|
|
1109
|
-
- [#
|
|
1110
|
-
|
|
1111
|
-
## 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))
|
|
1112
196
|
|
|
1113
|
-
##
|
|
197
|
+
## 9.0.0-canary.66
|
|
1114
198
|
|
|
1115
|
-
|
|
199
|
+
### Minor Changes
|
|
1116
200
|
|
|
1117
|
-
|
|
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))
|
|
1118
202
|
|
|
1119
|
-
##
|
|
203
|
+
## 9.0.0-canary.65
|
|
1120
204
|
|
|
1121
205
|
### Patch Changes
|
|
1122
206
|
|
|
1123
|
-
- [#
|
|
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
|
|
1124
210
|
|
|
1125
|
-
|
|
211
|
+
### Minor Changes
|
|
1126
212
|
|
|
1127
|
-
|
|
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))
|
|
1128
214
|
|
|
1129
|
-
|
|
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))
|
|
1130
216
|
|
|
1131
|
-
##
|
|
217
|
+
## 9.0.0-canary.58
|
|
1132
218
|
|
|
1133
219
|
### Minor Changes
|
|
1134
220
|
|
|
1135
|
-
- [#
|
|
1136
|
-
|
|
1137
|
-
- [#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))
|
|
1138
222
|
|
|
1139
|
-
|
|
223
|
+
## 9.0.0-canary.55
|
|
1140
224
|
|
|
1141
|
-
|
|
225
|
+
### Minor Changes
|
|
1142
226
|
|
|
1143
|
-
- [#
|
|
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))
|
|
1144
228
|
|
|
1145
|
-
|
|
229
|
+
## 8.1.0-canary.52
|
|
1146
230
|
|
|
1147
|
-
|
|
231
|
+
### Minor Changes
|
|
1148
232
|
|
|
1149
|
-
- [#
|
|
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))
|
|
1150
234
|
|
|
1151
|
-
##
|
|
235
|
+
## 8.1.0-canary.49
|
|
1152
236
|
|
|
1153
|
-
|
|
237
|
+
### Patch Changes
|
|
1154
238
|
|
|
1155
|
-
|
|
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))
|
|
1156
240
|
|
|
1157
|
-
##
|
|
241
|
+
## 8.1.0-canary.48
|
|
1158
242
|
|
|
1159
|
-
|
|
243
|
+
### Minor Changes
|
|
1160
244
|
|
|
1161
|
-
|
|
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))
|
|
1162
246
|
|
|
1163
|
-
##
|
|
247
|
+
## 8.1.0-canary.47
|
|
1164
248
|
|
|
1165
|
-
|
|
249
|
+
### Minor Changes
|
|
1166
250
|
|
|
1167
|
-
|
|
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))
|
|
1168
252
|
|
|
1169
|
-
##
|
|
253
|
+
## 8.1.0-canary.40
|
|
1170
254
|
|
|
1171
|
-
|
|
255
|
+
### Minor Changes
|
|
1172
256
|
|
|
1173
|
-
|
|
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))
|
|
1174
258
|
|
|
1175
|
-
##
|
|
259
|
+
## 8.1.0-canary.38
|
|
1176
260
|
|
|
1177
|
-
|
|
261
|
+
### Minor Changes
|
|
1178
262
|
|
|
1179
|
-
|
|
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))
|
|
1180
264
|
|
|
1181
|
-
|
|
265
|
+
### Patch Changes
|
|
1182
266
|
|
|
1183
|
-
|
|
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))
|
|
1184
268
|
|
|
1185
|
-
##
|
|
269
|
+
## 8.1.0-canary.35
|
|
1186
270
|
|
|
1187
|
-
|
|
271
|
+
### Minor Changes
|
|
1188
272
|
|
|
1189
|
-
|
|
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))
|
|
1190
274
|
|
|
1191
|
-
|
|
275
|
+
### Patch Changes
|
|
1192
276
|
|
|
1193
|
-
|
|
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))
|
|
1194
278
|
|
|
1195
|
-
##
|
|
279
|
+
## 8.1.0-canary.22
|
|
1196
280
|
|
|
1197
|
-
|
|
281
|
+
### Patch Changes
|
|
1198
282
|
|
|
1199
|
-
|
|
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))
|
|
1200
284
|
|
|
1201
|
-
##
|
|
285
|
+
## 8.0.6-canary.2
|
|
1202
286
|
|
|
1203
|
-
|
|
287
|
+
### Patch Changes
|
|
1204
288
|
|
|
1205
|
-
|
|
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))
|
|
1206
290
|
|
|
1207
|
-
|
|
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))
|
|
1208
292
|
|
|
1209
|
-
##
|
|
293
|
+
## 8.0.5
|
|
1210
294
|
|
|
1211
295
|
### Patch Changes
|
|
1212
296
|
|
|
1213
|
-
- [#
|
|
1214
|
-
|
|
1215
|
-
## 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))
|
|
1216
298
|
|
|
1217
|
-
##
|
|
299
|
+
## 8.0.3
|
|
1218
300
|
|
|
1219
|
-
|
|
301
|
+
### Patch Changes
|
|
1220
302
|
|
|
1221
|
-
|
|
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))
|
|
1222
304
|
|
|
1223
|
-
|
|
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))
|
|
1224
306
|
|
|
1225
|
-
|
|
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))
|
|
1226
308
|
|
|
1227
|
-
|
|
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))
|
|
1228
310
|
|
|
1229
|
-
##
|
|
311
|
+
## 8.0.2
|
|
1230
312
|
|
|
1231
313
|
### Patch Changes
|
|
1232
314
|
|
|
1233
|
-
- [#
|
|
1234
|
-
|
|
1235
|
-
## 5.2.0-canary.16
|
|
1236
|
-
|
|
1237
|
-
## 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))
|
|
1238
316
|
|
|
1239
|
-
##
|
|
317
|
+
## 8.0.1
|
|
1240
318
|
|
|
1241
|
-
|
|
319
|
+
### Patch Changes
|
|
1242
320
|
|
|
1243
|
-
|
|
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))
|
|
1244
322
|
|
|
1245
|
-
|
|
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))
|
|
1246
324
|
|
|
1247
|
-
|
|
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))
|
|
1248
326
|
|
|
1249
|
-
|
|
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))
|
|
1250
328
|
|
|
1251
|
-
##
|
|
329
|
+
## 8.0.0
|
|
1252
330
|
|
|
1253
331
|
### Minor Changes
|
|
1254
332
|
|
|
1255
|
-
- [#
|
|
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))
|
|
1256
334
|
|
|
1257
|
-
|
|
335
|
+
- [#2110](https://github.com/graphcommerce-org/graphcommerce/pull/2110) [`d2e716d`](https://github.com/graphcommerce-org/graphcommerce/commit/d2e716d437fcfed13388ef536a8e73513744027b) - ---
|
|
1258
336
|
|
|
1259
|
-
|
|
337
|
+
'@graphcommerce/magento-cart-email': minor '@graphcommerce/magento-customer': minor
|
|
1260
338
|
|
|
1261
|
-
|
|
339
|
+
***
|
|
1262
340
|
|
|
1263
|
-
|
|
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.
|
|
1264
342
|
|
|
1265
|
-
|
|
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))
|
|
1266
344
|
|
|
1267
|
-
|
|
345
|
+
### Patch Changes
|
|
1268
346
|
|
|
1269
|
-
|
|
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))
|
|
1270
348
|
|
|
1271
|
-
|
|
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))
|
|
1272
350
|
|
|
1273
|
-
- [#
|
|
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))
|
|
1274
352
|
|
|
1275
|
-
- [#
|
|
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))
|
|
1276
354
|
|
|
1277
|
-
- [#
|
|
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))
|
|
1278
356
|
|
|
1279
|
-
|
|
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))
|
|
1280
358
|
|
|
1281
|
-
|
|
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))
|
|
1282
360
|
|
|
1283
|
-
- [#
|
|
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))
|
|
1284
362
|
|
|
1285
|
-
|
|
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))
|
|
1286
364
|
|
|
1287
|
-
|
|
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))
|
|
1288
366
|
|
|
1289
|
-
|
|
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))
|
|
1290
368
|
|
|
1291
|
-
##
|
|
369
|
+
## 7.0.1
|
|
1292
370
|
|
|
1293
371
|
### Patch Changes
|
|
1294
372
|
|
|
1295
|
-
- [#
|
|
1296
|
-
|
|
1297
|
-
- [#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))
|
|
1298
374
|
|
|
1299
|
-
|
|
1300
|
-
- Removed dependencies on react-hook-form-mui and @playwright/test
|
|
1301
|
-
- Upgraded dependencies including type-fest and graphql-mesh
|
|
1302
|
-
- Solved peer dependency issues ([@paales](https://github.com/paales))
|
|
375
|
+
## 7.0.0
|
|
1303
376
|
|
|
1304
|
-
|
|
377
|
+
### Minor Changes
|
|
1305
378
|
|
|
1306
|
-
|
|
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))
|
|
1307
380
|
|
|
1308
|
-
|
|
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))
|
|
1309
382
|
|
|
1310
|
-
|
|
383
|
+
### Patch Changes
|
|
1311
384
|
|
|
1312
|
-
|
|
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))
|
|
1313
386
|
|
|
1314
|
-
|
|
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))
|
|
1315
388
|
|
|
1316
|
-
|
|
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))
|
|
1317
390
|
|
|
1318
|
-
|
|
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))
|
|
1319
392
|
|
|
1320
|
-
- [`
|
|
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))
|
|
1321
394
|
|
|
1322
|
-
|
|
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))
|
|
1323
396
|
|
|
1324
|
-
|
|
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))
|
|
1325
398
|
|
|
1326
|
-
|
|
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))
|
|
1327
400
|
|
|
1328
|
-
- [#
|
|
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))
|
|
1329
402
|
|
|
1330
|
-
|
|
1331
|
-
- Removed dependencies on react-hook-form-mui and @playwright/test
|
|
1332
|
-
- Upgraded dependencies including type-fest and graphql-mesh
|
|
1333
|
-
- Solved peer dependency issues ([@paales](https://github.com/paales))
|
|
403
|
+
## 6.1.0
|
|
1334
404
|
|
|
1335
|
-
|
|
405
|
+
### Minor Changes
|
|
1336
406
|
|
|
1337
|
-
|
|
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.
|
|
1338
408
|
|
|
1339
|
-
|
|
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))
|
|
1340
410
|
|
|
1341
|
-
|
|
411
|
+
### Patch Changes
|
|
1342
412
|
|
|
1343
|
-
|
|
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))
|
|
1344
414
|
|
|
1345
|
-
- [#
|
|
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))
|
|
1346
416
|
|
|
1347
|
-
|
|
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))
|
|
1348
418
|
|
|
1349
|
-
- [#
|
|
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))
|
|
1350
420
|
|
|
1351
|
-
|
|
421
|
+
## 6.0.1
|
|
1352
422
|
|
|
1353
423
|
### Patch Changes
|
|
1354
424
|
|
|
1355
|
-
- [#
|
|
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))
|
|
1356
426
|
|
|
1357
|
-
|
|
427
|
+
## 6.0.0
|
|
1358
428
|
|
|
1359
|
-
|
|
429
|
+
### Minor Changes
|
|
1360
430
|
|
|
1361
|
-
|
|
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))
|
|
1362
432
|
|
|
1363
|
-
|
|
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))
|
|
1364
434
|
|
|
1365
|
-
|
|
435
|
+
### Patch Changes
|
|
1366
436
|
|
|
1367
|
-
|
|
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))
|
|
1368
438
|
|
|
1369
|
-
|
|
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))
|
|
1370
440
|
|
|
1371
|
-
|
|
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))
|
|
1372
442
|
|
|
1373
|
-
|
|
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))
|
|
1374
444
|
|
|
1375
|
-
|
|
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))
|
|
1376
446
|
|
|
1377
|
-
##
|
|
447
|
+
## 5.1.0
|
|
1378
448
|
|
|
1379
449
|
### Patch Changes
|
|
1380
450
|
|
|
1381
|
-
- [#
|
|
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))
|
|
1382
459
|
|
|
1383
|
-
##
|
|
460
|
+
## 5.0.0
|
|
1384
461
|
|
|
1385
|
-
|
|
462
|
+
### Major Changes
|
|
1386
463
|
|
|
1387
|
-
|
|
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))
|
|
1388
465
|
|
|
1389
466
|
### Minor Changes
|
|
1390
467
|
|
|
@@ -1392,29 +469,11 @@
|
|
|
1392
469
|
|
|
1393
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))
|
|
1394
471
|
|
|
1395
|
-
## 4.14.0-canary.3
|
|
1396
|
-
|
|
1397
|
-
## 4.14.0-canary.2
|
|
1398
|
-
|
|
1399
472
|
### Patch Changes
|
|
1400
473
|
|
|
1401
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))
|
|
1402
475
|
|
|
1403
|
-
|
|
1404
|
-
|
|
1405
|
-
## 4.13.2-canary.0
|
|
1406
|
-
|
|
1407
|
-
## 4.13.3
|
|
1408
|
-
|
|
1409
|
-
## 4.13.2
|
|
1410
|
-
|
|
1411
|
-
## 4.13.1
|
|
1412
|
-
|
|
1413
|
-
## 4.13.1-canary.2
|
|
1414
|
-
|
|
1415
|
-
## 4.13.1-canary.1
|
|
1416
|
-
|
|
1417
|
-
## 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))
|
|
1418
477
|
|
|
1419
478
|
## 4.13.0
|
|
1420
479
|
|
|
@@ -1422,14 +481,6 @@
|
|
|
1422
481
|
|
|
1423
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
|
|
1424
483
|
|
|
1425
|
-
## 4.13.0-canary.1
|
|
1426
|
-
|
|
1427
|
-
### Patch Changes
|
|
1428
|
-
|
|
1429
|
-
- [`abb15ef4a`](https://github.com/graphcommerce-org/graphcommerce/commit/abb15ef4a79b12eddb32cc006e5d1d31dd06ac2d) Thanks [@paales](https://github.com/paales)! - Added canary releases to GraphCommerce
|
|
1430
|
-
|
|
1431
|
-
## 4.13.0-canary.0
|
|
1432
|
-
|
|
1433
484
|
## 4.12.4
|
|
1434
485
|
|
|
1435
486
|
### Patch Changes
|
|
@@ -1989,7 +1040,7 @@
|
|
|
1989
1040
|
All occurences of `<Trans>` and `t` need to be replaced:
|
|
1990
1041
|
|
|
1991
1042
|
```tsx
|
|
1992
|
-
import {
|
|
1043
|
+
import { t, Trans } from '@lingui/macro'
|
|
1993
1044
|
|
|
1994
1045
|
function MyComponent() {
|
|
1995
1046
|
const foo = 'bar'
|
|
@@ -2004,8 +1055,8 @@
|
|
|
2004
1055
|
Needs to be replaced with:
|
|
2005
1056
|
|
|
2006
1057
|
```tsx
|
|
2007
|
-
import { Trans } from '@lingui/react'
|
|
2008
1058
|
import { i18n } from '@lingui/core'
|
|
1059
|
+
import { Trans } from '@lingui/react'
|
|
2009
1060
|
|
|
2010
1061
|
function MyComponent() {
|
|
2011
1062
|
const foo = 'bar'
|
|
@@ -2583,8 +1634,6 @@ All notable changes to this project will be documented in this file. See [Conven
|
|
|
2583
1634
|
|
|
2584
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)
|
|
2585
1636
|
|
|
2586
|
-
## [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
|
-
|
|
2588
1637
|
### Bug Fixes
|
|
2589
1638
|
|
|
2590
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))
|