@akinon/next 1.62.0-rc.24 → 1.63.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 +15 -657
- package/api/client.ts +2 -23
- package/assets/styles/index.scss +26 -50
- package/bin/pz-install-plugins.js +0 -0
- package/bin/pz-install-theme.js +0 -0
- package/bin/pz-postbuild.js +0 -0
- package/bin/pz-postdev.js +0 -0
- package/bin/pz-postinstall.js +0 -0
- package/bin/pz-poststart.js +0 -0
- package/bin/pz-prebuild.js +0 -0
- package/bin/pz-predev.js +0 -0
- package/bin/pz-prestart.js +0 -0
- package/components/index.ts +1 -1
- package/components/input.tsx +7 -21
- package/components/link.tsx +13 -17
- package/components/plugin-module.tsx +1 -1
- package/components/price.tsx +0 -1
- package/components/select.tsx +70 -0
- package/data/client/account.ts +2 -3
- package/data/client/api.ts +1 -1
- package/data/client/basket.ts +5 -6
- package/data/client/checkout.ts +10 -55
- package/data/client/user.ts +2 -3
- package/data/server/category.ts +4 -0
- package/data/server/list.ts +4 -0
- package/data/server/product.ts +4 -1
- package/data/server/special-page.ts +4 -0
- package/data/urls.ts +3 -13
- package/hooks/index.ts +1 -2
- package/hooks/use-pagination.ts +2 -2
- package/hooks/use-payment-options.ts +2 -2
- package/middlewares/complete-gpay.ts +1 -1
- package/middlewares/complete-masterpass.ts +1 -1
- package/middlewares/currency.ts +0 -1
- package/middlewares/default.ts +167 -226
- package/middlewares/index.ts +1 -3
- package/middlewares/oauth-login.ts +1 -6
- package/middlewares/three-d-redirection.ts +1 -1
- package/package.json +2 -2
- package/plugins.d.ts +3 -4
- package/plugins.js +2 -2
- package/redux/middlewares/checkout.ts +11 -72
- package/redux/middlewares/index.ts +4 -1
- package/redux/reducers/checkout.ts +3 -23
- package/redux/reducers/index.ts +1 -1
- package/routes/pretty-url.tsx +1 -2
- package/types/commerce/address.ts +1 -1
- package/types/commerce/checkout.ts +0 -31
- package/types/commerce/order.ts +0 -1
- package/types/index.ts +1 -3
- package/assets/styles/index.css +0 -49
- package/assets/styles/index.css.map +0 -1
- package/components/file-input.tsx +0 -8
- package/hooks/use-message-listener.ts +0 -24
- package/middlewares/saved-card-redirection.ts +0 -179
- package/utils/redirection-iframe.ts +0 -85
package/CHANGELOG.md
CHANGED
|
@@ -1,59 +1,23 @@
|
|
|
1
1
|
# @akinon/next
|
|
2
2
|
|
|
3
|
-
## 1.
|
|
3
|
+
## 1.63.0
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
8
|
-
-
|
|
9
|
-
-
|
|
10
|
-
-
|
|
11
|
-
-
|
|
12
|
-
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
-
|
|
19
|
-
-
|
|
20
|
-
-
|
|
21
|
-
- c53ef7b9: ZERO-2668: The Link component has been updated to improve the logic for handling href values. Previously, if the href was not a string or started with 'http', it would return the href as is. Now, if the href is not provided, it will default to '#' to prevent any potential errors. Additionally, if the href is a string and does not start with 'http', it will be formatted with the locale and pathname, based on the localeUrlStrategy and defaultLocaleValue. This ensures that the correct href is generated based on the localization settings.
|
|
22
|
-
- 2e6104d0: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
|
|
23
|
-
- 64699d3f: ZERO-2761: Fix invalid import for plugin module
|
|
24
|
-
- 0d3a913e: ZERO-2725: Update decimal scale in Price component
|
|
25
|
-
- 5fa4831b: ZERO-2971: Fix initialSelectedOptions type
|
|
26
|
-
- d899cc78: ZERO-2925: Login by checking the session id
|
|
27
|
-
- 7b05522b: ZERO-2905: Fix resend and close button in otp package
|
|
28
|
-
- d3474c64: ZERO-2655: Add data source shipping option
|
|
29
|
-
- 17f87524: ZERO-2816: Make the incoming currency lowercase
|
|
30
|
-
- 29ead870: ZERO-2905: Fix resend and close button in otp package
|
|
31
|
-
- c45b62c9: ZERO-2818: Add upload and download support for b2b package
|
|
32
|
-
- bbe18b9f: ZERO-2575: Fix build error
|
|
33
|
-
- d4099960: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
|
|
34
|
-
- 20b495d1: Revert ZERO-2938
|
|
35
|
-
- 4920742c: Disable getCachedTranslations
|
|
36
|
-
- 57d16572: ZERO-2925: Update condation
|
|
37
|
-
- 12a873e7: ZERO-2846:Edit the siteKey regex in the response from GetCaptcha
|
|
38
|
-
- 7e56d6b6: ZERO-2841: Update api tagTypes
|
|
39
|
-
- 346e9bd4: refine cookie header in saved card middleware
|
|
40
|
-
- 033b084f: ZERO-2956: refactor redirect response handling for set-cookie headers
|
|
41
|
-
- dcc8a150: ZERO-2694: added build step to RC branch pipeline
|
|
42
|
-
- 3be74620: ZERO-2934: fix reset basket on redirection payment complete
|
|
43
|
-
- 8f47ccae: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
|
|
44
|
-
- f2c325c1: ZERO-2838: Move file input component into @akinon/next
|
|
45
|
-
- 9e25a64b: ZERO-2835: Update category page layout with breadcrumb
|
|
46
|
-
- 7b17923c: ZERO-2669: Fix isIframePaymentOptionExcluded value
|
|
47
|
-
- f2c92d5c: ZERO-2816: Update cookie name
|
|
48
|
-
- 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
49
|
-
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
50
|
-
- 49eeebfa: ZERO-2909: Add deleteCollectionItem query to wishlistApi
|
|
51
|
-
- 034b8135: ZERO-2903: create saved card plugin
|
|
52
|
-
- 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
53
|
-
- fcea4952: ZERO-2956: add set-cookies headers in url-redirection middleware
|
|
54
|
-
- 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
|
|
55
|
-
- 64f5302e: ZERO-2961: Add notes field to PreOrder interface
|
|
56
|
-
- 48d508fd: ZERO-2989: refine cookie header in payment middlewares
|
|
7
|
+
- a4c8d6a: ZERO-2663: Fix the image url for gif and svgs and return them without options
|
|
8
|
+
- fda5b92: ZERO-2725: fix invalid import
|
|
9
|
+
- 0d3a913: ZERO-2725: Update decimal scale in Price component
|
|
10
|
+
- c45b62c: ZERO-2818: Add upload and download support for b2b package
|
|
11
|
+
- d409996: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
|
|
12
|
+
- dcc8a15: ZERO-2694: added build step to RC branch pipeline
|
|
13
|
+
|
|
14
|
+
## 1.62.0
|
|
15
|
+
|
|
16
|
+
### Minor Changes
|
|
17
|
+
|
|
18
|
+
- c416d18: ZERO-2915: Add delivery option null check for setAddress
|
|
19
|
+
- 033b084: ZERO-2956: refactor redirect response handling for set-cookie headers
|
|
20
|
+
- fcea495: ZERO-2956: add set-cookies headers in url-redirection middleware
|
|
57
21
|
|
|
58
22
|
## 1.61.0
|
|
59
23
|
|
|
@@ -99,183 +63,11 @@
|
|
|
99
63
|
|
|
100
64
|
### Minor Changes
|
|
101
65
|
|
|
102
|
-
- c416d18: ZERO-2915: Add delivery option null check for setAddress
|
|
103
|
-
- 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
|
|
104
|
-
- 5dfeea0: ZERO-2801: Revert ZERO-2801
|
|
105
|
-
- a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
|
|
106
|
-
- fda5b927: ZERO-2725: fix invalid import
|
|
107
|
-
- 2d9b2b2c: ZERO-2816: Add segment to headers
|
|
108
|
-
- c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
109
|
-
- 6c25f66: ZERO-2551: Check CACHE_HOST variable
|
|
110
|
-
- bc2b4117: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
111
|
-
- 3bf2dd9: ZERO-2551: Fix search page
|
|
112
|
-
- e9541a13: ZERO-2816: Add headers to url
|
|
113
|
-
- c53ef7b9: ZERO-2668: The Link component has been updated to improve the logic for handling href values. Previously, if the href was not a string or started with 'http', it would return the href as is. Now, if the href is not provided, it will default to '#' to prevent any potential errors. Additionally, if the href is a string and does not start with 'http', it will be formatted with the locale and pathname, based on the localeUrlStrategy and defaultLocaleValue. This ensures that the correct href is generated based on the localization settings.
|
|
114
|
-
- 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
|
|
115
|
-
- 64699d3f: ZERO-2761: Fix invalid import for plugin module
|
|
116
|
-
- 0d3a913e: ZERO-2725: Update decimal scale in Price component
|
|
117
|
-
- 7b05522: ZERO-2905: Fix resend and close button in otp package
|
|
118
|
-
- d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
|
|
119
|
-
- d3474c64: ZERO-2655: Add data source shipping option
|
|
120
|
-
- 17f87524: ZERO-2816: Make the incoming currency lowercase
|
|
121
|
-
- 29ead87: ZERO-2905: Fix resend and close button in otp package
|
|
122
|
-
- c45b62c: ZERO-2818: Add upload and download support for b2b package
|
|
123
|
-
- 91265bba: ZERO-2551: Improve pretty url and caching performance
|
|
124
|
-
- bbe18b9f: ZERO-2575: Fix build error
|
|
125
|
-
- d4099960: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
|
|
126
|
-
- 4920742: Disable getCachedTranslations
|
|
127
|
-
- 12a873e: ZERO-2846:Edit the siteKey regex in the response from GetCaptcha
|
|
128
|
-
- 7e56d6b: ZERO-2841: Update api tagTypes
|
|
129
|
-
- 94b69285: ZERO-2551: Add cache handler check in url-redirection middleware
|
|
130
|
-
- 98bb8dcd: ZERO-2706: Cache getTranlations method
|
|
131
|
-
- dcc8a150: ZERO-2694: added build step to RC branch pipeline
|
|
132
|
-
- 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
|
|
133
|
-
- fad27689: ZERO-2739: add gpay to payment plugin map
|
|
134
|
-
- dff0d595: ZERO-2659: add formData support to proxy api requests
|
|
135
|
-
- fdd0b41: ZERO-2706: Add optimized translation support
|
|
136
|
-
- f2c325c: ZERO-2838: Move file input component into @akinon/next
|
|
137
|
-
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
138
|
-
- beb499e6: ZERO-2551: Add new tsconfig paths
|
|
139
|
-
- f2c92d5c: ZERO-2816: Update cookie name
|
|
140
|
-
- 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
141
|
-
- f3d076b: ZERO-2864: create tabby extension plugin
|
|
142
|
-
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
143
|
-
- 49eeebf: ZERO-2909: Add deleteCollectionItem query to wishlistApi
|
|
144
|
-
- 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
145
|
-
- 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
|
|
146
|
-
|
|
147
|
-
## 1.56.0-rc.7
|
|
148
|
-
|
|
149
|
-
## 1.56.0-rc.6
|
|
150
|
-
|
|
151
|
-
### Minor Changes
|
|
152
|
-
|
|
153
|
-
- f3d076b: ZERO-2864: create tabby extension plugin
|
|
154
|
-
|
|
155
|
-
## 1.56.0-rc.5
|
|
156
|
-
|
|
157
|
-
### Minor Changes
|
|
158
|
-
|
|
159
|
-
- c416d18: ZERO-2915: Add delivery option null check for setAddress
|
|
160
|
-
|
|
161
|
-
## 1.56.0-rc.4
|
|
162
|
-
|
|
163
|
-
### Minor Changes
|
|
164
|
-
|
|
165
|
-
- 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
|
|
166
|
-
- 5dfeea0: ZERO-2801: Revert ZERO-2801
|
|
167
|
-
- a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
|
|
168
|
-
- fda5b927: ZERO-2725: fix invalid import
|
|
169
|
-
- 2d9b2b2c: ZERO-2816: Add segment to headers
|
|
170
|
-
- c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
171
66
|
- d93a507: ZERO-2900: Fix pretty url rewrite
|
|
172
|
-
- 6c25f66: ZERO-2551: Check CACHE_HOST variable
|
|
173
|
-
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
174
|
-
- 3bf2dd9: ZERO-2551: Fix search page
|
|
175
|
-
- e9541a13: ZERO-2816: Add headers to url
|
|
176
|
-
- c53ef7b9: ZERO-2668: The Link component has been updated to improve the logic for handling href values. Previously, if the href was not a string or started with 'http', it would return the href as is. Now, if the href is not provided, it will default to '#' to prevent any potential errors. Additionally, if the href is a string and does not start with 'http', it will be formatted with the locale and pathname, based on the localeUrlStrategy and defaultLocaleValue. This ensures that the correct href is generated based on the localization settings.
|
|
177
|
-
- 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
|
|
178
|
-
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
179
|
-
- 0d3a913e: ZERO-2725: Update decimal scale in Price component
|
|
180
|
-
- 7b05522: ZERO-2905: Fix resend and close button in otp package
|
|
181
|
-
- d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
|
|
182
|
-
- d3474c64: ZERO-2655: Add data source shipping option
|
|
183
|
-
- 17f8752: ZERO-2816: Make the incoming currency lowercase
|
|
184
|
-
- 29ead87: ZERO-2905: Fix resend and close button in otp package
|
|
185
|
-
- c45b62c: ZERO-2818: Add upload and download support for b2b package
|
|
186
|
-
- 91265bba: ZERO-2551: Improve pretty url and caching performance
|
|
187
|
-
- bbe18b9f: ZERO-2575: Fix build error
|
|
188
|
-
- d4099960: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
|
|
189
|
-
- 4920742: Disable getCachedTranslations
|
|
190
|
-
- 12a873e: ZERO-2846:Edit the siteKey regex in the response from GetCaptcha
|
|
191
67
|
- 674badc: ZERO-2912: Fix selected payment option view to handle null values
|
|
192
|
-
- 7e56d6b: ZERO-2841: Update api tagTypes
|
|
193
|
-
- 94b69285: ZERO-2551: Add cache handler check in url-redirection middleware
|
|
194
|
-
- 98bb8dcd: ZERO-2706: Cache getTranlations method
|
|
195
68
|
- 207ac6e: ZERO-2917: Add OrderSelectionPage endpoint
|
|
196
|
-
- dcc8a150: ZERO-2694: added build step to RC branch pipeline
|
|
197
|
-
- 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
|
|
198
|
-
- fad27689: ZERO-2739: add gpay to payment plugin map
|
|
199
|
-
- dff0d595: ZERO-2659: add formData support to proxy api requests
|
|
200
|
-
- fdd0b41: ZERO-2706: Add optimized translation support
|
|
201
|
-
- f2c325c: ZERO-2838: Move file input component into @akinon/next
|
|
202
|
-
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
203
|
-
- beb499e6: ZERO-2551: Add new tsconfig paths
|
|
204
|
-
- f2c92d5c: ZERO-2816: Update cookie name
|
|
205
|
-
- 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
206
|
-
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
207
69
|
- b9273fd: ZERO-2889: add host headers to requests
|
|
208
|
-
- 49eeebf: ZERO-2909: Add deleteCollectionItem query to wishlistApi
|
|
209
|
-
- 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
210
70
|
- c670bd4: ZERO-2900: Add middleware rewrite functionality
|
|
211
|
-
- 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
|
|
212
|
-
|
|
213
|
-
## 1.56.0-rc.3
|
|
214
|
-
|
|
215
|
-
### Minor Changes
|
|
216
|
-
|
|
217
|
-
- 674badc: ZERO-2912: Fix selected payment option view to handle null values
|
|
218
|
-
|
|
219
|
-
## 1.56.0-rc.2
|
|
220
|
-
|
|
221
|
-
### Minor Changes
|
|
222
|
-
|
|
223
|
-
- 7b05522: ZERO-2905: Fix resend and close button in otp package
|
|
224
|
-
- 29ead87: ZERO-2905: Fix resend and close button in otp package
|
|
225
|
-
|
|
226
|
-
## 1.56.0-rc.1
|
|
227
|
-
|
|
228
|
-
### Minor Changes
|
|
229
|
-
|
|
230
|
-
- 207ac6e: ZERO-2917: Add OrderSelectionPage endpoint
|
|
231
|
-
|
|
232
|
-
## 1.56.0-rc.0
|
|
233
|
-
|
|
234
|
-
### Minor Changes
|
|
235
|
-
|
|
236
|
-
- 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
|
|
237
|
-
- 5dfeea0: ZERO-2801: Revert ZERO-2801
|
|
238
|
-
- a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
|
|
239
|
-
- fda5b927: ZERO-2725: fix invalid import
|
|
240
|
-
- 2d9b2b2c: ZERO-2816: Add segment to headers
|
|
241
|
-
- c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
242
|
-
- d93a507: ZERO-2900: Fix pretty url rewrite
|
|
243
|
-
- 6c25f666: ZERO-2551: Check CACHE_HOST variable
|
|
244
|
-
- bc2b4117: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
245
|
-
- 3bf2dd94: ZERO-2551: Fix search page
|
|
246
|
-
- e9541a13: ZERO-2816: Add headers to url
|
|
247
|
-
- c53ef7b9: ZERO-2668: The Link component has been updated to improve the logic for handling href values. Previously, if the href was not a string or started with 'http', it would return the href as is. Now, if the href is not provided, it will default to '#' to prevent any potential errors. Additionally, if the href is a string and does not start with 'http', it will be formatted with the locale and pathname, based on the localeUrlStrategy and defaultLocaleValue. This ensures that the correct href is generated based on the localization settings.
|
|
248
|
-
- 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
|
|
249
|
-
- 64699d3f: ZERO-2761: Fix invalid import for plugin module
|
|
250
|
-
- 0d3a913e: ZERO-2725: Update decimal scale in Price component
|
|
251
|
-
- d6edb1d0: ZERO-2551: Fix searchparams handling for list and other routes
|
|
252
|
-
- d3474c64: ZERO-2655: Add data source shipping option
|
|
253
|
-
- 17f87524: ZERO-2816: Make the incoming currency lowercase
|
|
254
|
-
- c45b62c9: ZERO-2818: Add upload and download support for b2b package
|
|
255
|
-
- 91265bba: ZERO-2551: Improve pretty url and caching performance
|
|
256
|
-
- bbe18b9f: ZERO-2575: Fix build error
|
|
257
|
-
- d4099960: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
|
|
258
|
-
- 4920742c: Disable getCachedTranslations
|
|
259
|
-
- 12a873e: ZERO-2846:Edit the siteKey regex in the response from GetCaptcha
|
|
260
|
-
- 7e56d6b6: ZERO-2841: Update api tagTypes
|
|
261
|
-
- 94b69285: ZERO-2551: Add cache handler check in url-redirection middleware
|
|
262
|
-
- 98bb8dcd: ZERO-2706: Cache getTranlations method
|
|
263
|
-
- dcc8a150: ZERO-2694: added build step to RC branch pipeline
|
|
264
|
-
- 8f47ccae: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
|
|
265
|
-
- fad27689: ZERO-2739: add gpay to payment plugin map
|
|
266
|
-
- dff0d595: ZERO-2659: add formData support to proxy api requests
|
|
267
|
-
- fdd0b41: ZERO-2706: Add optimized translation support
|
|
268
|
-
- f2c325c1: ZERO-2838: Move file input component into @akinon/next
|
|
269
|
-
- 9e25a64b: ZERO-2835: Update category page layout with breadcrumb
|
|
270
|
-
- beb499e6: ZERO-2551: Add new tsconfig paths
|
|
271
|
-
- f2c92d5c: ZERO-2816: Update cookie name
|
|
272
|
-
- 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
273
|
-
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
274
|
-
- b9273fd3: ZERO-2889: add host headers to requests
|
|
275
|
-
- 49eeebf: ZERO-2909: Add deleteCollectionItem query to wishlistApi
|
|
276
|
-
- 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
277
|
-
- c670bd48: ZERO-2900: Add middleware rewrite functionality
|
|
278
|
-
- 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
|
|
279
71
|
|
|
280
72
|
## 1.55.0
|
|
281
73
|
|
|
@@ -321,128 +113,7 @@
|
|
|
321
113
|
|
|
322
114
|
### Minor Changes
|
|
323
115
|
|
|
324
|
-
- 90282b53: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
325
|
-
- 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
|
|
326
|
-
- 5dfeea0: ZERO-2801: Revert ZERO-2801
|
|
327
|
-
- a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
|
|
328
|
-
- fda5b927: ZERO-2725: fix invalid import
|
|
329
|
-
- 2d9b2b2: ZERO-2816: Add segment to headers
|
|
330
|
-
- c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
331
|
-
- d93a507: ZERO-2900: Fix pretty url rewrite
|
|
332
|
-
- 8d9ac9a: ZERO-2794: Add field to order type
|
|
333
|
-
- 70279e7: ZERO-2817: Add metrics endpoint in default middleware
|
|
334
|
-
- 6c25f66: ZERO-2551: Check CACHE_HOST variable
|
|
335
|
-
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
336
|
-
- 3bf2dd9: ZERO-2551: Fix search page
|
|
337
|
-
- e9541a1: ZERO-2816: Add headers to url
|
|
338
|
-
- c53ef7b9: ZERO-2668: The Link component has been updated to improve the logic for handling href values. Previously, if the href was not a string or started with 'http', it would return the href as is. Now, if the href is not provided, it will default to '#' to prevent any potential errors. Additionally, if the href is a string and does not start with 'http', it will be formatted with the locale and pathname, based on the localeUrlStrategy and defaultLocaleValue. This ensures that the correct href is generated based on the localization settings.
|
|
339
|
-
- 9d94f7e: ZERO-2820: update parent pk usage for menu generator
|
|
340
|
-
- 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
|
|
341
|
-
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
342
|
-
- 0d3a913e: ZERO-2725: Update decimal scale in Price component
|
|
343
|
-
- 1448a96e: ZERO-2612: add errors type in CheckoutState
|
|
344
|
-
- 1ec2e9d: ZERO-2895: Update app-fetch to include cookies in headers
|
|
345
|
-
- d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
|
|
346
|
-
- d3474c64: ZERO-2655: Add data source shipping option
|
|
347
|
-
- 75080fd6: ZERO-2630: Add max limit to postcode area
|
|
348
|
-
- 17f8752: ZERO-2816: Make the incoming currency lowercase
|
|
349
|
-
- c45b62c: ZERO-2818: Add upload and download support for b2b package
|
|
350
|
-
- 91265bba: ZERO-2551: Improve pretty url and caching performance
|
|
351
|
-
- bbe18b9f: ZERO-2575: Fix build error
|
|
352
|
-
- d4099960: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
|
|
353
|
-
- 4920742: Disable getCachedTranslations
|
|
354
|
-
- 12a873e: ZERO-2846:Edit the siteKey regex in the response from GetCaptcha
|
|
355
|
-
- 7e56d6b: ZERO-2841: Update api tagTypes
|
|
356
|
-
- 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
|
|
357
|
-
- 98bb8dcd: ZERO-2706: Cache getTranlations method
|
|
358
|
-
- 46b7aad7: ZERO-2775: Add condition and logger for menuitemmodel data
|
|
359
|
-
- dcc8a150: ZERO-2694: added build step to RC branch pipeline
|
|
360
|
-
- 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
|
|
361
|
-
- fad27689: ZERO-2739: add gpay to payment plugin map
|
|
362
|
-
- dff0d595: ZERO-2659: add formData support to proxy api requests
|
|
363
|
-
- fdd0b41: ZERO-2706: Add optimized translation support
|
|
364
|
-
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
365
|
-
- f2c325c: ZERO-2838: Move file input component into @akinon/next
|
|
366
|
-
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
367
|
-
- beb499e6: ZERO-2551: Add new tsconfig paths
|
|
368
|
-
- 146ea391: ZERO-2774: Update imports
|
|
369
|
-
- f2c92d5: ZERO-2816: Update cookie name
|
|
370
|
-
- 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
371
|
-
- c47be30d: ZERO-2744: Update Order and OrderItem types
|
|
372
|
-
- e9a46acb: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
373
|
-
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
374
|
-
- b9273fd: ZERO-2889: add host headers to requests
|
|
375
|
-
- 49eeebf: ZERO-2909: Add deleteCollectionItem query to wishlistApi
|
|
376
|
-
- 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
377
|
-
- c670bd4: ZERO-2900: Add middleware rewrite functionality
|
|
378
|
-
- 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
|
|
379
|
-
- 3d35f70: ZERO-2908: Add cookie to redirect url
|
|
380
|
-
|
|
381
|
-
## 1.50.0-rc.1
|
|
382
|
-
|
|
383
|
-
### Minor Changes
|
|
384
|
-
|
|
385
|
-
- 49eeebf: ZERO-2909: Add deleteCollectionItem query to wishlistApi
|
|
386
|
-
|
|
387
|
-
## 1.50.0-rc.0
|
|
388
|
-
|
|
389
|
-
### Minor Changes
|
|
390
|
-
|
|
391
|
-
- 90282b53: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
392
|
-
- 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
|
|
393
|
-
- 5dfeea0: ZERO-2801: Revert ZERO-2801
|
|
394
|
-
- a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
|
|
395
|
-
- fda5b927: ZERO-2725: fix invalid import
|
|
396
|
-
- 2d9b2b2: ZERO-2816: Add segment to headers
|
|
397
|
-
- c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
398
|
-
- d93a507: ZERO-2900: Fix pretty url rewrite
|
|
399
|
-
- 8d9ac9a: ZERO-2794: Add field to order type
|
|
400
116
|
- eaf97d6: ZERO-2909: Add deleteCollectionItem query to wishlistApi
|
|
401
|
-
- 70279e7: ZERO-2817: Add metrics endpoint in default middleware
|
|
402
|
-
- 6c25f66: ZERO-2551: Check CACHE_HOST variable
|
|
403
|
-
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
404
|
-
- 3bf2dd9: ZERO-2551: Fix search page
|
|
405
|
-
- e9541a1: ZERO-2816: Add headers to url
|
|
406
|
-
- c53ef7b9: ZERO-2668: The Link component has been updated to improve the logic for handling href values. Previously, if the href was not a string or started with 'http', it would return the href as is. Now, if the href is not provided, it will default to '#' to prevent any potential errors. Additionally, if the href is a string and does not start with 'http', it will be formatted with the locale and pathname, based on the localeUrlStrategy and defaultLocaleValue. This ensures that the correct href is generated based on the localization settings.
|
|
407
|
-
- 9d94f7e: ZERO-2820: update parent pk usage for menu generator
|
|
408
|
-
- 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
|
|
409
|
-
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
410
|
-
- 0d3a913e: ZERO-2725: Update decimal scale in Price component
|
|
411
|
-
- 1448a96e: ZERO-2612: add errors type in CheckoutState
|
|
412
|
-
- 1ec2e9d: ZERO-2895: Update app-fetch to include cookies in headers
|
|
413
|
-
- d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
|
|
414
|
-
- d3474c64: ZERO-2655: Add data source shipping option
|
|
415
|
-
- 75080fd6: ZERO-2630: Add max limit to postcode area
|
|
416
|
-
- 17f8752: ZERO-2816: Make the incoming currency lowercase
|
|
417
|
-
- c45b62c: ZERO-2818: Add upload and download support for b2b package
|
|
418
|
-
- 91265bba: ZERO-2551: Improve pretty url and caching performance
|
|
419
|
-
- bbe18b9f: ZERO-2575: Fix build error
|
|
420
|
-
- d4099960: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
|
|
421
|
-
- 4920742: Disable getCachedTranslations
|
|
422
|
-
- 12a873e: ZERO-2846:Edit the siteKey regex in the response from GetCaptcha
|
|
423
|
-
- 7e56d6b: ZERO-2841: Update api tagTypes
|
|
424
|
-
- 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
|
|
425
|
-
- 98bb8dcd: ZERO-2706: Cache getTranlations method
|
|
426
|
-
- 46b7aad7: ZERO-2775: Add condition and logger for menuitemmodel data
|
|
427
|
-
- dcc8a150: ZERO-2694: added build step to RC branch pipeline
|
|
428
|
-
- 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
|
|
429
|
-
- fad27689: ZERO-2739: add gpay to payment plugin map
|
|
430
|
-
- dff0d595: ZERO-2659: add formData support to proxy api requests
|
|
431
|
-
- fdd0b41: ZERO-2706: Add optimized translation support
|
|
432
|
-
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
433
|
-
- f2c325c: ZERO-2838: Move file input component into @akinon/next
|
|
434
|
-
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
435
|
-
- beb499e6: ZERO-2551: Add new tsconfig paths
|
|
436
|
-
- 146ea391: ZERO-2774: Update imports
|
|
437
|
-
- f2c92d5: ZERO-2816: Update cookie name
|
|
438
|
-
- 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
439
|
-
- c47be30d: ZERO-2744: Update Order and OrderItem types
|
|
440
|
-
- e9a46acb: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
441
|
-
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
442
|
-
- b9273fd: ZERO-2889: add host headers to requests
|
|
443
|
-
- 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
444
|
-
- c670bd4: ZERO-2900: Add middleware rewrite functionality
|
|
445
|
-
- 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
|
|
446
117
|
|
|
447
118
|
## 1.49.0
|
|
448
119
|
|
|
@@ -468,126 +139,7 @@
|
|
|
468
139
|
|
|
469
140
|
### Minor Changes
|
|
470
141
|
|
|
471
|
-
- 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
472
|
-
- 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
|
|
473
|
-
- a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
|
|
474
|
-
- fda5b92: ZERO-2725: fix invalid import
|
|
475
|
-
- 2d9b2b2: ZERO-2816: Add segment to headers
|
|
476
|
-
- c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
477
|
-
- 8d9ac9a: ZERO-2794: Add field to order type
|
|
478
|
-
- 70279e7: ZERO-2817: Add metrics endpoint in default middleware
|
|
479
|
-
- 6c25f66: ZERO-2551: Check CACHE_HOST variable
|
|
480
|
-
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
481
|
-
- 3bf2dd9: ZERO-2551: Fix search page
|
|
482
|
-
- e9541a1: ZERO-2816: Add headers to url
|
|
483
|
-
- c53ef7b9: ZERO-2668: The Link component has been updated to improve the logic for handling href values. Previously, if the href was not a string or started with 'http', it would return the href as is. Now, if the href is not provided, it will default to '#' to prevent any potential errors. Additionally, if the href is a string and does not start with 'http', it will be formatted with the locale and pathname, based on the localeUrlStrategy and defaultLocaleValue. This ensures that the correct href is generated based on the localization settings.
|
|
484
|
-
- 9d94f7e: ZERO-2820: update parent pk usage for menu generator
|
|
485
|
-
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
486
|
-
- 0d3a913: ZERO-2725: Update decimal scale in Price component
|
|
487
|
-
- 1448a96e: ZERO-2612: add errors type in CheckoutState
|
|
488
|
-
- d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
|
|
489
|
-
- d3474c6: ZERO-2655: Add data source shipping option
|
|
490
|
-
- 75080fd6: ZERO-2630: Add max limit to postcode area
|
|
491
|
-
- 17f8752: ZERO-2816: Make the incoming currency lowercase
|
|
492
|
-
- c45b62c: ZERO-2818: Add upload and download support for b2b package
|
|
493
|
-
- 91265bba: ZERO-2551: Improve pretty url and caching performance
|
|
494
|
-
- bbe18b9f: ZERO-2575: Fix build error
|
|
495
|
-
- d409996: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
|
|
496
|
-
- 4920742: Disable getCachedTranslations
|
|
497
|
-
- 7e56d6b: ZERO-2841: Update api tagTypes
|
|
498
|
-
- 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
|
|
499
|
-
- 98bb8dc: ZERO-2706: Cache getTranlations method
|
|
500
|
-
- 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
|
|
501
|
-
- dcc8a15: ZERO-2694: added build step to RC branch pipeline
|
|
502
|
-
- 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
|
|
503
|
-
- fad2768: ZERO-2739: add gpay to payment plugin map
|
|
504
|
-
- dff0d595: ZERO-2659: add formData support to proxy api requests
|
|
505
|
-
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
506
|
-
- f2c325c: ZERO-2838: Move file input component into @akinon/next
|
|
507
|
-
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
508
|
-
- beb499e6: ZERO-2551: Add new tsconfig paths
|
|
509
|
-
- 948eb42: ZERO-2852: Add out of stock endpoints
|
|
510
|
-
- 146ea39: ZERO-2774: Update imports
|
|
511
|
-
- f2c92d5: ZERO-2816: Update cookie name
|
|
512
|
-
- 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
513
|
-
- c47be30: ZERO-2744: Update Order and OrderItem types
|
|
514
|
-
- e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
515
|
-
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
516
|
-
- 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
517
|
-
- 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
|
|
518
|
-
|
|
519
|
-
## 1.45.0-rc.4
|
|
520
|
-
|
|
521
|
-
### Minor Changes
|
|
522
|
-
|
|
523
|
-
- 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
|
|
524
|
-
|
|
525
|
-
## 1.45.0-rc.3
|
|
526
|
-
|
|
527
|
-
### Minor Changes
|
|
528
|
-
|
|
529
|
-
- 948eb42: ZERO-2852: Add out of stock endpoints
|
|
530
|
-
|
|
531
|
-
## 1.45.0-rc.2
|
|
532
|
-
|
|
533
|
-
### Minor Changes
|
|
534
|
-
|
|
535
|
-
- c45b62c: ZERO-2818: Add upload and download support for b2b package
|
|
536
|
-
- f2c325c: ZERO-2838: Move file input component into @akinon/next
|
|
537
|
-
|
|
538
|
-
## 1.45.0-rc.1
|
|
539
|
-
|
|
540
|
-
### Minor Changes
|
|
541
|
-
|
|
542
|
-
- 7e56d6b: ZERO-2841: Update api tagTypes
|
|
543
|
-
|
|
544
|
-
## 1.45.0-rc.0
|
|
545
|
-
|
|
546
|
-
### Minor Changes
|
|
547
|
-
|
|
548
|
-
- 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
549
|
-
- 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
|
|
550
|
-
- a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
|
|
551
|
-
- fda5b92: ZERO-2725: fix invalid import
|
|
552
|
-
- 2d9b2b2: ZERO-2816: Add segment to headers
|
|
553
|
-
- c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
554
|
-
- 8d9ac9a: ZERO-2794: Add field to order type
|
|
555
|
-
- 70279e7: ZERO-2817: Add metrics endpoint in default middleware
|
|
556
|
-
- 6c25f66: ZERO-2551: Check CACHE_HOST variable
|
|
557
|
-
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
558
|
-
- 3bf2dd9: ZERO-2551: Fix search page
|
|
559
|
-
- e9541a1: ZERO-2816: Add headers to url
|
|
560
|
-
- c53ef7b9: ZERO-2668: The Link component has been updated to improve the logic for handling href values. Previously, if the href was not a string or started with 'http', it would return the href as is. Now, if the href is not provided, it will default to '#' to prevent any potential errors. Additionally, if the href is a string and does not start with 'http', it will be formatted with the locale and pathname, based on the localeUrlStrategy and defaultLocaleValue. This ensures that the correct href is generated based on the localization settings.
|
|
561
|
-
- 9d94f7e: ZERO-2820: update parent pk usage for menu generator
|
|
562
|
-
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
563
|
-
- 0d3a913: ZERO-2725: Update decimal scale in Price component
|
|
564
|
-
- 1448a96: ZERO-2612: add errors type in CheckoutState
|
|
565
142
|
- 2ab6e08: ZERO-2841: Update getBasketDetail query
|
|
566
|
-
- d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
|
|
567
|
-
- d3474c6: ZERO-2655: Add data source shipping option
|
|
568
|
-
- 75080fd: ZERO-2630: Add max limit to postcode area
|
|
569
|
-
- 17f8752: ZERO-2816: Make the incoming currency lowercase
|
|
570
|
-
- 91265bb: ZERO-2551: Improve pretty url and caching performance
|
|
571
|
-
- bbe18b9: ZERO-2575: Fix build error
|
|
572
|
-
- d409996: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
|
|
573
|
-
- 4920742: Disable getCachedTranslations
|
|
574
|
-
- 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
|
|
575
|
-
- 98bb8dc: ZERO-2706: Cache getTranlations method
|
|
576
|
-
- 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
|
|
577
|
-
- dcc8a15: ZERO-2694: added build step to RC branch pipeline
|
|
578
|
-
- fad2768: ZERO-2739: add gpay to payment plugin map
|
|
579
|
-
- dff0d59: ZERO-2659: add formData support to proxy api requests
|
|
580
|
-
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
581
|
-
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
582
|
-
- beb499e: ZERO-2551: Add new tsconfig paths
|
|
583
|
-
- 146ea39: ZERO-2774: Update imports
|
|
584
|
-
- f2c92d5: ZERO-2816: Update cookie name
|
|
585
|
-
- 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
586
|
-
- c47be30: ZERO-2744: Update Order and OrderItem types
|
|
587
|
-
- e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
588
|
-
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
589
|
-
- 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
590
|
-
- 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
|
|
591
143
|
|
|
592
144
|
## 1.44.0
|
|
593
145
|
|
|
@@ -595,201 +147,7 @@
|
|
|
595
147
|
|
|
596
148
|
### Minor Changes
|
|
597
149
|
|
|
598
|
-
- 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
599
|
-
- 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
|
|
600
|
-
- a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
|
|
601
|
-
- fda5b92: ZERO-2725: fix invalid import
|
|
602
|
-
- 2d9b2b2: ZERO-2816: Add segment to headers
|
|
603
|
-
- c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
604
|
-
- 8d9ac9a: ZERO-2794: Add field to order type
|
|
605
|
-
- 70279e7: ZERO-2817: Add metrics endpoint in default middleware
|
|
606
|
-
- 6c25f66: ZERO-2551: Check CACHE_HOST variable
|
|
607
|
-
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
608
|
-
- 3bf2dd9: ZERO-2551: Fix search page
|
|
609
|
-
- e9541a1: ZERO-2816: Add headers to url
|
|
610
|
-
- c53ef7b9: ZERO-2668: The Link component has been updated to improve the logic for handling href values. Previously, if the href was not a string or started with 'http', it would return the href as is. Now, if the href is not provided, it will default to '#' to prevent any potential errors. Additionally, if the href is a string and does not start with 'http', it will be formatted with the locale and pathname, based on the localeUrlStrategy and defaultLocaleValue. This ensures that the correct href is generated based on the localization settings.
|
|
611
|
-
- 9d94f7e: ZERO-2820: update parent pk usage for menu generator
|
|
612
|
-
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
613
|
-
- 0d3a913: ZERO-2725: Update decimal scale in Price component
|
|
614
|
-
- 1448a96: ZERO-2612: add errors type in CheckoutState
|
|
615
|
-
- d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
|
|
616
|
-
- d3474c6: ZERO-2655: Add data source shipping option
|
|
617
|
-
- 75080fd: ZERO-2630: Add max limit to postcode area
|
|
618
|
-
- 17f8752: ZERO-2816: Make the incoming currency lowercase
|
|
619
|
-
- 91265bb: ZERO-2551: Improve pretty url and caching performance
|
|
620
|
-
- bbe18b9: ZERO-2575: Fix build error
|
|
621
|
-
- d409996: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
|
|
622
|
-
- 4920742: Disable getCachedTranslations
|
|
623
|
-
- 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
|
|
624
|
-
- 98bb8dc: ZERO-2706: Cache getTranlations method
|
|
625
|
-
- 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
|
|
626
|
-
- dcc8a15: ZERO-2694: added build step to RC branch pipeline
|
|
627
|
-
- fad2768: ZERO-2739: add gpay to payment plugin map
|
|
628
|
-
- dff0d59: ZERO-2659: add formData support to proxy api requests
|
|
629
|
-
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
630
|
-
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
631
|
-
- beb499e: ZERO-2551: Add new tsconfig paths
|
|
632
|
-
- 146ea39: ZERO-2774: Update imports
|
|
633
|
-
- f2c92d5: ZERO-2816: Update cookie name
|
|
634
|
-
- 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
635
|
-
- c47be30: ZERO-2744: Update Order and OrderItem types
|
|
636
|
-
- e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
637
|
-
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
638
|
-
- 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
639
|
-
- 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
|
|
640
|
-
|
|
641
|
-
## 1.43.0-rc.15
|
|
642
|
-
|
|
643
|
-
## 1.43.0-rc.14
|
|
644
|
-
|
|
645
|
-
### Minor Changes
|
|
646
|
-
|
|
647
|
-
- 3bf2dd9: ZERO-2551: Fix search page
|
|
648
|
-
|
|
649
|
-
## 1.43.0-rc.13
|
|
650
|
-
|
|
651
|
-
### Minor Changes
|
|
652
|
-
|
|
653
|
-
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
654
|
-
|
|
655
|
-
## 1.43.0-rc.12
|
|
656
|
-
|
|
657
|
-
### Minor Changes
|
|
658
|
-
|
|
659
|
-
- 4920742: Disable getCachedTranslations
|
|
660
|
-
|
|
661
|
-
## 1.43.0-rc.11
|
|
662
|
-
|
|
663
|
-
### Minor Changes
|
|
664
|
-
|
|
665
|
-
- 6c25f66: ZERO-2551: Check CACHE_HOST variable
|
|
666
|
-
|
|
667
|
-
## 1.43.0-rc.10
|
|
668
|
-
|
|
669
|
-
### Minor Changes
|
|
670
|
-
|
|
671
|
-
- d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
|
|
672
|
-
|
|
673
|
-
## 1.43.0-rc.9
|
|
674
|
-
|
|
675
|
-
### Minor Changes
|
|
676
|
-
|
|
677
|
-
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
678
|
-
|
|
679
|
-
## 1.43.0-rc.8
|
|
680
|
-
|
|
681
|
-
### Minor Changes
|
|
682
|
-
|
|
683
|
-
- 70279e7: ZERO-2817: Add metrics endpoint in default middleware
|
|
684
|
-
- 9d94f7e: ZERO-2820: update parent pk usage for menu generator
|
|
685
|
-
|
|
686
|
-
## 1.43.0-rc.7
|
|
687
|
-
|
|
688
|
-
### Minor Changes
|
|
689
|
-
|
|
690
|
-
- 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
691
|
-
|
|
692
|
-
## 1.43.0-rc.6
|
|
693
|
-
|
|
694
|
-
### Minor Changes
|
|
695
|
-
|
|
696
|
-
- 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
697
|
-
- 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
|
|
698
|
-
- a4c8d6a: ZERO-2663: Fix the image url for gif and svgs and return them without options
|
|
699
|
-
- fda5b92: ZERO-2725: fix invalid import
|
|
700
|
-
- 2d9b2b2: ZERO-2816: Add segment to headers
|
|
701
|
-
- c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
702
|
-
- 8d9ac9a: ZERO-2794: Add field to order type
|
|
703
|
-
- e9541a1: ZERO-2816: Add headers to url
|
|
704
|
-
- c53ef7b: ZERO-2668: The Link component has been updated to improve the logic for handling href values. Previously, if the href was not a string or started with 'http', it would return the href as is. Now, if the href is not provided, it will default to '#' to prevent any potential errors. Additionally, if the href is a string and does not start with 'http', it will be formatted with the locale and pathname, based on the localeUrlStrategy and defaultLocaleValue. This ensures that the correct href is generated based on the localization settings.
|
|
705
|
-
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
706
|
-
- 0d3a913: ZERO-2725: Update decimal scale in Price component
|
|
707
|
-
- 1448a96: ZERO-2612: add errors type in CheckoutState
|
|
708
|
-
- d3474c6: ZERO-2655: Add data source shipping option
|
|
709
|
-
- 75080fd: ZERO-2630: Add max limit to postcode area
|
|
710
|
-
- 17f8752: ZERO-2816: Make the incoming currency lowercase
|
|
711
|
-
- 91265bb: ZERO-2551: Improve pretty url and caching performance
|
|
712
|
-
- bbe18b9: ZERO-2575: Fix build error
|
|
713
|
-
- d409996: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
|
|
714
|
-
- 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
|
|
715
|
-
- 98bb8dc: ZERO-2706: Cache getTranlations method
|
|
716
|
-
- 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
|
|
717
|
-
- dcc8a15: ZERO-2694: added build step to RC branch pipeline
|
|
718
|
-
- fad2768: ZERO-2739: add gpay to payment plugin map
|
|
719
|
-
- dff0d59: ZERO-2659: add formData support to proxy api requests
|
|
720
|
-
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
721
150
|
- 4a163f2: ZERO-2761: Add condition for basket summary
|
|
722
|
-
- beb499e: ZERO-2551: Add new tsconfig paths
|
|
723
|
-
- 146ea39: ZERO-2774: Update imports
|
|
724
|
-
- f2c92d5: ZERO-2816: Update cookie name
|
|
725
|
-
- c47be30: ZERO-2744: Update Order and OrderItem types
|
|
726
|
-
- e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
727
|
-
- f046f8e: ZERO-2575: update version for react-number-format
|
|
728
|
-
- 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
729
|
-
- 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
|
|
730
|
-
|
|
731
|
-
## 1.43.0-rc.5
|
|
732
|
-
|
|
733
|
-
### Minor Changes
|
|
734
|
-
|
|
735
|
-
- 17f8752: ZERO-2816: Make the incoming currency lowercase
|
|
736
|
-
|
|
737
|
-
## 1.43.0-rc.4
|
|
738
|
-
|
|
739
|
-
### Minor Changes
|
|
740
|
-
|
|
741
|
-
- 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
|
|
742
|
-
|
|
743
|
-
## 1.43.0-rc.3
|
|
744
|
-
|
|
745
|
-
### Minor Changes
|
|
746
|
-
|
|
747
|
-
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
748
|
-
|
|
749
|
-
## 1.43.0-rc.2
|
|
750
|
-
|
|
751
|
-
### Minor Changes
|
|
752
|
-
|
|
753
|
-
- f2c92d5: ZERO-2816: Update cookie name
|
|
754
|
-
|
|
755
|
-
## 1.43.0-rc.1
|
|
756
|
-
|
|
757
|
-
### Minor Changes
|
|
758
|
-
|
|
759
|
-
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
760
|
-
|
|
761
|
-
## 1.43.0-rc.0
|
|
762
|
-
|
|
763
|
-
### Minor Changes
|
|
764
|
-
|
|
765
|
-
- 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
766
|
-
- 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
|
|
767
|
-
- a4c8d6a: ZERO-2663: Fix the image url for gif and svgs and return them without options
|
|
768
|
-
- fda5b92: ZERO-2725: fix invalid import
|
|
769
|
-
- 2d9b2b2: ZERO-2816: Add segment to headers
|
|
770
|
-
- c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
771
|
-
- 8d9ac9a: ZERO-2794: Add field to order type
|
|
772
|
-
- e9541a1: ZERO-2816: Add headers to url
|
|
773
|
-
- c53ef7b: ZERO-2668: The Link component has been updated to improve the logic for handling href values. Previously, if the href was not a string or started with 'http', it would return the href as is. Now, if the href is not provided, it will default to '#' to prevent any potential errors. Additionally, if the href is a string and does not start with 'http', it will be formatted with the locale and pathname, based on the localeUrlStrategy and defaultLocaleValue. This ensures that the correct href is generated based on the localization settings.
|
|
774
|
-
- 0d3a913: ZERO-2725: Update decimal scale in Price component
|
|
775
|
-
- 1448a96: ZERO-2612: add errors type in CheckoutState
|
|
776
|
-
- d3474c6: ZERO-2655: Add data source shipping option
|
|
777
|
-
- 75080fd: ZERO-2630: Add max limit to postcode area
|
|
778
|
-
- 91265bb: ZERO-2551: Improve pretty url and caching performance
|
|
779
|
-
- bbe18b9: ZERO-2575: Fix build error
|
|
780
|
-
- d409996: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
|
|
781
|
-
- 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
|
|
782
|
-
- 98bb8dc: ZERO-2706: Cache getTranlations method
|
|
783
|
-
- 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
|
|
784
|
-
- dcc8a15: ZERO-2694: added build step to RC branch pipeline
|
|
785
|
-
- fad2768: ZERO-2739: add gpay to payment plugin map
|
|
786
|
-
- dff0d59: ZERO-2659: add formData support to proxy api requests
|
|
787
|
-
- beb499e: ZERO-2551: Add new tsconfig paths
|
|
788
|
-
- 146ea39: ZERO-2774: Update imports
|
|
789
|
-
- c47be30: ZERO-2744: Update Order and OrderItem types
|
|
790
|
-
- e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
791
|
-
- f046f8e: ZERO-2575: update version for react-number-format
|
|
792
|
-
- 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
793
151
|
|
|
794
152
|
## 1.42.0
|
|
795
153
|
|