@akinon/next 1.59.0 → 1.60.0-rc.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (64) hide show
  1. package/CHANGELOG.md +659 -0
  2. package/api/client.ts +23 -2
  3. package/assets/styles/index.css +49 -0
  4. package/assets/styles/index.css.map +1 -0
  5. package/assets/styles/index.scss +50 -26
  6. package/bin/pz-generate-translations.js +41 -0
  7. package/bin/pz-prebuild.js +1 -0
  8. package/bin/pz-predev.js +1 -0
  9. package/components/file-input.tsx +8 -0
  10. package/components/index.ts +1 -0
  11. package/components/input.tsx +21 -7
  12. package/components/link.tsx +17 -13
  13. package/components/plugin-module.tsx +8 -3
  14. package/components/price.tsx +11 -4
  15. package/components/pz-root.tsx +15 -3
  16. package/components/selected-payment-option-view.tsx +2 -1
  17. package/data/client/api.ts +1 -1
  18. package/data/client/b2b.ts +35 -2
  19. package/data/client/basket.ts +6 -5
  20. package/data/client/checkout.ts +55 -10
  21. package/data/client/user.ts +3 -2
  22. package/data/server/category.ts +43 -19
  23. package/data/server/flatpage.ts +29 -7
  24. package/data/server/form.ts +29 -11
  25. package/data/server/landingpage.ts +26 -7
  26. package/data/server/list.ts +16 -6
  27. package/data/server/menu.ts +15 -2
  28. package/data/server/product.ts +33 -13
  29. package/data/server/seo.ts +17 -24
  30. package/data/server/special-page.ts +15 -5
  31. package/data/server/widget.ts +14 -7
  32. package/data/urls.ts +8 -1
  33. package/hocs/server/with-segment-defaults.tsx +4 -1
  34. package/hooks/index.ts +2 -1
  35. package/hooks/use-message-listener.ts +24 -0
  36. package/hooks/use-pagination.ts +2 -2
  37. package/hooks/use-payment-options.ts +2 -1
  38. package/lib/cache-handler.mjs +33 -0
  39. package/lib/cache.ts +8 -6
  40. package/middlewares/currency.ts +2 -1
  41. package/middlewares/default.ts +226 -152
  42. package/middlewares/index.ts +3 -1
  43. package/middlewares/oauth-login.ts +3 -1
  44. package/middlewares/pretty-url.ts +11 -1
  45. package/middlewares/saved-card-redirection.ts +179 -0
  46. package/middlewares/url-redirection.ts +4 -0
  47. package/package.json +4 -3
  48. package/plugins.d.ts +6 -0
  49. package/plugins.js +2 -1
  50. package/redux/middlewares/checkout.ts +78 -14
  51. package/redux/reducers/checkout.ts +23 -3
  52. package/redux/reducers/index.ts +3 -1
  53. package/routes/pretty-url.tsx +192 -0
  54. package/types/commerce/address.ts +1 -1
  55. package/types/commerce/b2b.ts +12 -2
  56. package/types/commerce/checkout.ts +30 -0
  57. package/types/commerce/order.ts +1 -0
  58. package/types/index.ts +17 -2
  59. package/utils/app-fetch.ts +16 -8
  60. package/utils/generate-commerce-search-params.ts +3 -1
  61. package/utils/index.ts +27 -6
  62. package/utils/redirection-iframe.ts +85 -0
  63. package/utils/server-translation.ts +11 -1
  64. package/with-pz-config.js +13 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,58 @@
1
1
  # @akinon/next
2
2
 
3
+ ## 1.60.0-rc.7
4
+
5
+ ## 1.60.0-rc.6
6
+
7
+ ### Minor Changes
8
+
9
+ - c416d18: ZERO-2915: Add delivery option null check for setAddress
10
+ - 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
11
+ - 5dfeea0: ZERO-2801: Revert ZERO-2801
12
+ - 907813c: ZERO-2934: add payment-gateway/<gateway> redirect in middleware
13
+ - a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
14
+ - fda5b927: ZERO-2725: fix invalid import
15
+ - 2d9b2b2c: ZERO-2816: Add segment to headers
16
+ - c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
17
+ - 6c25f666: ZERO-2551: Check CACHE_HOST variable
18
+ - c873740: ZERO-2903: add types
19
+ - bc2b4117: ZERO-2825: Add attribute-based shipping options to checkout page
20
+ - 3bf2dd94: ZERO-2551: Fix search page
21
+ - e9541a13: ZERO-2816: Add headers to url
22
+ - 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.
23
+ - 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
24
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
25
+ - 0d3a913e: ZERO-2725: Update decimal scale in Price component
26
+ - d899cc7: ZERO-2925: Login by checking the session id
27
+ - 7b05522: ZERO-2905: Fix resend and close button in otp package
28
+ - d6edb1d0: ZERO-2551: Fix searchparams handling for list and other routes
29
+ - d3474c64: ZERO-2655: Add data source shipping option
30
+ - 17f87524: ZERO-2816: Make the incoming currency lowercase
31
+ - 29ead87: ZERO-2905: Fix resend and close button in otp package
32
+ - c45b62c: ZERO-2818: Add upload and download support for b2b package
33
+ - 91265bba: ZERO-2551: Improve pretty url and caching performance
34
+ - bbe18b9f: ZERO-2575: Fix build error
35
+ - d4099960: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
36
+ - 4920742c: Disable getCachedTranslations
37
+ - 12a873e: ZERO-2846:Edit the siteKey regex in the response from GetCaptcha
38
+ - 7e56d6b: ZERO-2841: Update api tagTypes
39
+ - 94b69285: ZERO-2551: Add cache handler check in url-redirection middleware
40
+ - 98bb8dcd: ZERO-2706: Cache getTranlations method
41
+ - dcc8a150: ZERO-2694: added build step to RC branch pipeline
42
+ - 3be7462: 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
+ - fdd0b41: ZERO-2706: Add optimized translation support
45
+ - f2c325c: ZERO-2838: Move file input component into @akinon/next
46
+ - 9e25a64b: ZERO-2835: Update category page layout with breadcrumb
47
+ - beb499e6: ZERO-2551: Add new tsconfig paths
48
+ - f2c92d5c: ZERO-2816: Update cookie name
49
+ - 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
50
+ - f046f8e0: ZERO-2575: update version for react-number-format
51
+ - 49eeebf: ZERO-2909: Add deleteCollectionItem query to wishlistApi
52
+ - 034b813: ZERO-2903: create saved card plugin
53
+ - 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
54
+ - 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
55
+
3
56
  ## 1.59.0
4
57
 
5
58
  ### Minor Changes
@@ -23,11 +76,183 @@
23
76
 
24
77
  ### Minor Changes
25
78
 
79
+ - c416d18: ZERO-2915: Add delivery option null check for setAddress
80
+ - 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
81
+ - 5dfeea0: ZERO-2801: Revert ZERO-2801
82
+ - a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
83
+ - fda5b927: ZERO-2725: fix invalid import
84
+ - 2d9b2b2c: ZERO-2816: Add segment to headers
85
+ - c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
86
+ - 6c25f66: ZERO-2551: Check CACHE_HOST variable
87
+ - bc2b4117: ZERO-2825: Add attribute-based shipping options to checkout page
88
+ - 3bf2dd9: ZERO-2551: Fix search page
89
+ - e9541a13: ZERO-2816: Add headers to url
90
+ - 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.
91
+ - 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
92
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
93
+ - 0d3a913e: ZERO-2725: Update decimal scale in Price component
94
+ - 7b05522: ZERO-2905: Fix resend and close button in otp package
95
+ - d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
96
+ - d3474c64: ZERO-2655: Add data source shipping option
97
+ - 17f87524: ZERO-2816: Make the incoming currency lowercase
98
+ - 29ead87: ZERO-2905: Fix resend and close button in otp package
99
+ - c45b62c: ZERO-2818: Add upload and download support for b2b package
100
+ - 91265bba: ZERO-2551: Improve pretty url and caching performance
101
+ - bbe18b9f: ZERO-2575: Fix build error
102
+ - d4099960: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
103
+ - 4920742: Disable getCachedTranslations
104
+ - 12a873e: ZERO-2846:Edit the siteKey regex in the response from GetCaptcha
105
+ - 7e56d6b: ZERO-2841: Update api tagTypes
106
+ - 94b69285: ZERO-2551: Add cache handler check in url-redirection middleware
107
+ - 98bb8dcd: ZERO-2706: Cache getTranlations method
108
+ - dcc8a150: ZERO-2694: added build step to RC branch pipeline
109
+ - 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
110
+ - fad27689: ZERO-2739: add gpay to payment plugin map
111
+ - dff0d595: ZERO-2659: add formData support to proxy api requests
112
+ - fdd0b41: ZERO-2706: Add optimized translation support
113
+ - f2c325c: ZERO-2838: Move file input component into @akinon/next
114
+ - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
115
+ - beb499e6: ZERO-2551: Add new tsconfig paths
116
+ - f2c92d5c: ZERO-2816: Update cookie name
117
+ - 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
118
+ - f3d076b: ZERO-2864: create tabby extension plugin
119
+ - f046f8e0: ZERO-2575: update version for react-number-format
120
+ - 49eeebf: ZERO-2909: Add deleteCollectionItem query to wishlistApi
121
+ - 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
122
+ - 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
123
+
124
+ ## 1.56.0-rc.7
125
+
126
+ ## 1.56.0-rc.6
127
+
128
+ ### Minor Changes
129
+
130
+ - f3d076b: ZERO-2864: create tabby extension plugin
131
+
132
+ ## 1.56.0-rc.5
133
+
134
+ ### Minor Changes
135
+
136
+ - c416d18: ZERO-2915: Add delivery option null check for setAddress
137
+
138
+ ## 1.56.0-rc.4
139
+
140
+ ### Minor Changes
141
+
142
+ - 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
143
+ - 5dfeea0: ZERO-2801: Revert ZERO-2801
144
+ - a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
145
+ - fda5b927: ZERO-2725: fix invalid import
146
+ - 2d9b2b2c: ZERO-2816: Add segment to headers
147
+ - c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
26
148
  - d93a507: ZERO-2900: Fix pretty url rewrite
149
+ - 6c25f66: ZERO-2551: Check CACHE_HOST variable
150
+ - bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
151
+ - 3bf2dd9: ZERO-2551: Fix search page
152
+ - e9541a13: ZERO-2816: Add headers to url
153
+ - 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.
154
+ - 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
155
+ - 64699d3: ZERO-2761: Fix invalid import for plugin module
156
+ - 0d3a913e: ZERO-2725: Update decimal scale in Price component
157
+ - 7b05522: ZERO-2905: Fix resend and close button in otp package
158
+ - d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
159
+ - d3474c64: ZERO-2655: Add data source shipping option
160
+ - 17f8752: ZERO-2816: Make the incoming currency lowercase
161
+ - 29ead87: ZERO-2905: Fix resend and close button in otp package
162
+ - c45b62c: ZERO-2818: Add upload and download support for b2b package
163
+ - 91265bba: ZERO-2551: Improve pretty url and caching performance
164
+ - bbe18b9f: ZERO-2575: Fix build error
165
+ - d4099960: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
166
+ - 4920742: Disable getCachedTranslations
167
+ - 12a873e: ZERO-2846:Edit the siteKey regex in the response from GetCaptcha
27
168
  - 674badc: ZERO-2912: Fix selected payment option view to handle null values
169
+ - 7e56d6b: ZERO-2841: Update api tagTypes
170
+ - 94b69285: ZERO-2551: Add cache handler check in url-redirection middleware
171
+ - 98bb8dcd: ZERO-2706: Cache getTranlations method
28
172
  - 207ac6e: ZERO-2917: Add OrderSelectionPage endpoint
173
+ - dcc8a150: ZERO-2694: added build step to RC branch pipeline
174
+ - 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
175
+ - fad27689: ZERO-2739: add gpay to payment plugin map
176
+ - dff0d595: ZERO-2659: add formData support to proxy api requests
177
+ - fdd0b41: ZERO-2706: Add optimized translation support
178
+ - f2c325c: ZERO-2838: Move file input component into @akinon/next
179
+ - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
180
+ - beb499e6: ZERO-2551: Add new tsconfig paths
181
+ - f2c92d5c: ZERO-2816: Update cookie name
182
+ - 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
183
+ - f046f8e0: ZERO-2575: update version for react-number-format
29
184
  - b9273fd: ZERO-2889: add host headers to requests
185
+ - 49eeebf: ZERO-2909: Add deleteCollectionItem query to wishlistApi
186
+ - 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
30
187
  - c670bd4: ZERO-2900: Add middleware rewrite functionality
188
+ - 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
189
+
190
+ ## 1.56.0-rc.3
191
+
192
+ ### Minor Changes
193
+
194
+ - 674badc: ZERO-2912: Fix selected payment option view to handle null values
195
+
196
+ ## 1.56.0-rc.2
197
+
198
+ ### Minor Changes
199
+
200
+ - 7b05522: ZERO-2905: Fix resend and close button in otp package
201
+ - 29ead87: ZERO-2905: Fix resend and close button in otp package
202
+
203
+ ## 1.56.0-rc.1
204
+
205
+ ### Minor Changes
206
+
207
+ - 207ac6e: ZERO-2917: Add OrderSelectionPage endpoint
208
+
209
+ ## 1.56.0-rc.0
210
+
211
+ ### Minor Changes
212
+
213
+ - 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
214
+ - 5dfeea0: ZERO-2801: Revert ZERO-2801
215
+ - a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
216
+ - fda5b927: ZERO-2725: fix invalid import
217
+ - 2d9b2b2c: ZERO-2816: Add segment to headers
218
+ - c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
219
+ - d93a507: ZERO-2900: Fix pretty url rewrite
220
+ - 6c25f666: ZERO-2551: Check CACHE_HOST variable
221
+ - bc2b4117: ZERO-2825: Add attribute-based shipping options to checkout page
222
+ - 3bf2dd94: ZERO-2551: Fix search page
223
+ - e9541a13: ZERO-2816: Add headers to url
224
+ - 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.
225
+ - 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
226
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
227
+ - 0d3a913e: ZERO-2725: Update decimal scale in Price component
228
+ - d6edb1d0: ZERO-2551: Fix searchparams handling for list and other routes
229
+ - d3474c64: ZERO-2655: Add data source shipping option
230
+ - 17f87524: ZERO-2816: Make the incoming currency lowercase
231
+ - c45b62c9: ZERO-2818: Add upload and download support for b2b package
232
+ - 91265bba: ZERO-2551: Improve pretty url and caching performance
233
+ - bbe18b9f: ZERO-2575: Fix build error
234
+ - d4099960: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
235
+ - 4920742c: Disable getCachedTranslations
236
+ - 12a873e: ZERO-2846:Edit the siteKey regex in the response from GetCaptcha
237
+ - 7e56d6b6: ZERO-2841: Update api tagTypes
238
+ - 94b69285: ZERO-2551: Add cache handler check in url-redirection middleware
239
+ - 98bb8dcd: ZERO-2706: Cache getTranlations method
240
+ - dcc8a150: ZERO-2694: added build step to RC branch pipeline
241
+ - 8f47ccae: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
242
+ - fad27689: ZERO-2739: add gpay to payment plugin map
243
+ - dff0d595: ZERO-2659: add formData support to proxy api requests
244
+ - fdd0b41: ZERO-2706: Add optimized translation support
245
+ - f2c325c1: ZERO-2838: Move file input component into @akinon/next
246
+ - 9e25a64b: ZERO-2835: Update category page layout with breadcrumb
247
+ - beb499e6: ZERO-2551: Add new tsconfig paths
248
+ - f2c92d5c: ZERO-2816: Update cookie name
249
+ - 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
250
+ - f046f8e0: ZERO-2575: update version for react-number-format
251
+ - b9273fd3: ZERO-2889: add host headers to requests
252
+ - 49eeebf: ZERO-2909: Add deleteCollectionItem query to wishlistApi
253
+ - 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
254
+ - c670bd48: ZERO-2900: Add middleware rewrite functionality
255
+ - 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
31
256
 
32
257
  ## 1.55.0
33
258
 
@@ -73,7 +298,128 @@
73
298
 
74
299
  ### Minor Changes
75
300
 
301
+ - 90282b53: ZERO-2729: Audit packages for yarn and npm and also update app-template
302
+ - 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
303
+ - 5dfeea0: ZERO-2801: Revert ZERO-2801
304
+ - a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
305
+ - fda5b927: ZERO-2725: fix invalid import
306
+ - 2d9b2b2: ZERO-2816: Add segment to headers
307
+ - c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
308
+ - d93a507: ZERO-2900: Fix pretty url rewrite
309
+ - 8d9ac9a: ZERO-2794: Add field to order type
310
+ - 70279e7: ZERO-2817: Add metrics endpoint in default middleware
311
+ - 6c25f66: ZERO-2551: Check CACHE_HOST variable
312
+ - bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
313
+ - 3bf2dd9: ZERO-2551: Fix search page
314
+ - e9541a1: ZERO-2816: Add headers to url
315
+ - 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.
316
+ - 9d94f7e: ZERO-2820: update parent pk usage for menu generator
317
+ - 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
318
+ - 64699d3: ZERO-2761: Fix invalid import for plugin module
319
+ - 0d3a913e: ZERO-2725: Update decimal scale in Price component
320
+ - 1448a96e: ZERO-2612: add errors type in CheckoutState
321
+ - 1ec2e9d: ZERO-2895: Update app-fetch to include cookies in headers
322
+ - d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
323
+ - d3474c64: ZERO-2655: Add data source shipping option
324
+ - 75080fd6: ZERO-2630: Add max limit to postcode area
325
+ - 17f8752: ZERO-2816: Make the incoming currency lowercase
326
+ - c45b62c: ZERO-2818: Add upload and download support for b2b package
327
+ - 91265bba: ZERO-2551: Improve pretty url and caching performance
328
+ - bbe18b9f: ZERO-2575: Fix build error
329
+ - d4099960: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
330
+ - 4920742: Disable getCachedTranslations
331
+ - 12a873e: ZERO-2846:Edit the siteKey regex in the response from GetCaptcha
332
+ - 7e56d6b: ZERO-2841: Update api tagTypes
333
+ - 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
334
+ - 98bb8dcd: ZERO-2706: Cache getTranlations method
335
+ - 46b7aad7: ZERO-2775: Add condition and logger for menuitemmodel data
336
+ - dcc8a150: ZERO-2694: added build step to RC branch pipeline
337
+ - 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
338
+ - fad27689: ZERO-2739: add gpay to payment plugin map
339
+ - dff0d595: ZERO-2659: add formData support to proxy api requests
340
+ - fdd0b41: ZERO-2706: Add optimized translation support
341
+ - eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
342
+ - f2c325c: ZERO-2838: Move file input component into @akinon/next
343
+ - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
344
+ - beb499e6: ZERO-2551: Add new tsconfig paths
345
+ - 146ea391: ZERO-2774: Update imports
346
+ - f2c92d5: ZERO-2816: Update cookie name
347
+ - 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
348
+ - c47be30d: ZERO-2744: Update Order and OrderItem types
349
+ - e9a46acb: ZERO-2738: add CVC input to registered cards in Masterpass
350
+ - f046f8e0: ZERO-2575: update version for react-number-format
351
+ - b9273fd: ZERO-2889: add host headers to requests
352
+ - 49eeebf: ZERO-2909: Add deleteCollectionItem query to wishlistApi
353
+ - 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
354
+ - c670bd4: ZERO-2900: Add middleware rewrite functionality
355
+ - 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
356
+ - 3d35f70: ZERO-2908: Add cookie to redirect url
357
+
358
+ ## 1.50.0-rc.1
359
+
360
+ ### Minor Changes
361
+
362
+ - 49eeebf: ZERO-2909: Add deleteCollectionItem query to wishlistApi
363
+
364
+ ## 1.50.0-rc.0
365
+
366
+ ### Minor Changes
367
+
368
+ - 90282b53: ZERO-2729: Audit packages for yarn and npm and also update app-template
369
+ - 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
370
+ - 5dfeea0: ZERO-2801: Revert ZERO-2801
371
+ - a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
372
+ - fda5b927: ZERO-2725: fix invalid import
373
+ - 2d9b2b2: ZERO-2816: Add segment to headers
374
+ - c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
375
+ - d93a507: ZERO-2900: Fix pretty url rewrite
376
+ - 8d9ac9a: ZERO-2794: Add field to order type
76
377
  - eaf97d6: ZERO-2909: Add deleteCollectionItem query to wishlistApi
378
+ - 70279e7: ZERO-2817: Add metrics endpoint in default middleware
379
+ - 6c25f66: ZERO-2551: Check CACHE_HOST variable
380
+ - bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
381
+ - 3bf2dd9: ZERO-2551: Fix search page
382
+ - e9541a1: ZERO-2816: Add headers to url
383
+ - 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.
384
+ - 9d94f7e: ZERO-2820: update parent pk usage for menu generator
385
+ - 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
386
+ - 64699d3: ZERO-2761: Fix invalid import for plugin module
387
+ - 0d3a913e: ZERO-2725: Update decimal scale in Price component
388
+ - 1448a96e: ZERO-2612: add errors type in CheckoutState
389
+ - 1ec2e9d: ZERO-2895: Update app-fetch to include cookies in headers
390
+ - d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
391
+ - d3474c64: ZERO-2655: Add data source shipping option
392
+ - 75080fd6: ZERO-2630: Add max limit to postcode area
393
+ - 17f8752: ZERO-2816: Make the incoming currency lowercase
394
+ - c45b62c: ZERO-2818: Add upload and download support for b2b package
395
+ - 91265bba: ZERO-2551: Improve pretty url and caching performance
396
+ - bbe18b9f: ZERO-2575: Fix build error
397
+ - d4099960: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
398
+ - 4920742: Disable getCachedTranslations
399
+ - 12a873e: ZERO-2846:Edit the siteKey regex in the response from GetCaptcha
400
+ - 7e56d6b: ZERO-2841: Update api tagTypes
401
+ - 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
402
+ - 98bb8dcd: ZERO-2706: Cache getTranlations method
403
+ - 46b7aad7: ZERO-2775: Add condition and logger for menuitemmodel data
404
+ - dcc8a150: ZERO-2694: added build step to RC branch pipeline
405
+ - 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
406
+ - fad27689: ZERO-2739: add gpay to payment plugin map
407
+ - dff0d595: ZERO-2659: add formData support to proxy api requests
408
+ - fdd0b41: ZERO-2706: Add optimized translation support
409
+ - eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
410
+ - f2c325c: ZERO-2838: Move file input component into @akinon/next
411
+ - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
412
+ - beb499e6: ZERO-2551: Add new tsconfig paths
413
+ - 146ea391: ZERO-2774: Update imports
414
+ - f2c92d5: ZERO-2816: Update cookie name
415
+ - 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
416
+ - c47be30d: ZERO-2744: Update Order and OrderItem types
417
+ - e9a46acb: ZERO-2738: add CVC input to registered cards in Masterpass
418
+ - f046f8e0: ZERO-2575: update version for react-number-format
419
+ - b9273fd: ZERO-2889: add host headers to requests
420
+ - 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
421
+ - c670bd4: ZERO-2900: Add middleware rewrite functionality
422
+ - 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
77
423
 
78
424
  ## 1.49.0
79
425
 
@@ -99,7 +445,126 @@
99
445
 
100
446
  ### Minor Changes
101
447
 
448
+ - 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
449
+ - 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
450
+ - a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
451
+ - fda5b92: ZERO-2725: fix invalid import
452
+ - 2d9b2b2: ZERO-2816: Add segment to headers
453
+ - c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
454
+ - 8d9ac9a: ZERO-2794: Add field to order type
455
+ - 70279e7: ZERO-2817: Add metrics endpoint in default middleware
456
+ - 6c25f66: ZERO-2551: Check CACHE_HOST variable
457
+ - bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
458
+ - 3bf2dd9: ZERO-2551: Fix search page
459
+ - e9541a1: ZERO-2816: Add headers to url
460
+ - 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.
461
+ - 9d94f7e: ZERO-2820: update parent pk usage for menu generator
462
+ - 64699d3: ZERO-2761: Fix invalid import for plugin module
463
+ - 0d3a913: ZERO-2725: Update decimal scale in Price component
464
+ - 1448a96e: ZERO-2612: add errors type in CheckoutState
465
+ - d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
466
+ - d3474c6: ZERO-2655: Add data source shipping option
467
+ - 75080fd6: ZERO-2630: Add max limit to postcode area
468
+ - 17f8752: ZERO-2816: Make the incoming currency lowercase
469
+ - c45b62c: ZERO-2818: Add upload and download support for b2b package
470
+ - 91265bba: ZERO-2551: Improve pretty url and caching performance
471
+ - bbe18b9f: ZERO-2575: Fix build error
472
+ - d409996: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
473
+ - 4920742: Disable getCachedTranslations
474
+ - 7e56d6b: ZERO-2841: Update api tagTypes
475
+ - 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
476
+ - 98bb8dc: ZERO-2706: Cache getTranlations method
477
+ - 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
478
+ - dcc8a15: ZERO-2694: added build step to RC branch pipeline
479
+ - 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
480
+ - fad2768: ZERO-2739: add gpay to payment plugin map
481
+ - dff0d595: ZERO-2659: add formData support to proxy api requests
482
+ - eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
483
+ - f2c325c: ZERO-2838: Move file input component into @akinon/next
484
+ - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
485
+ - beb499e6: ZERO-2551: Add new tsconfig paths
486
+ - 948eb42: ZERO-2852: Add out of stock endpoints
487
+ - 146ea39: ZERO-2774: Update imports
488
+ - f2c92d5: ZERO-2816: Update cookie name
489
+ - 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
490
+ - c47be30: ZERO-2744: Update Order and OrderItem types
491
+ - e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
492
+ - f046f8e0: ZERO-2575: update version for react-number-format
493
+ - 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
494
+ - 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
495
+
496
+ ## 1.45.0-rc.4
497
+
498
+ ### Minor Changes
499
+
500
+ - 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
501
+
502
+ ## 1.45.0-rc.3
503
+
504
+ ### Minor Changes
505
+
506
+ - 948eb42: ZERO-2852: Add out of stock endpoints
507
+
508
+ ## 1.45.0-rc.2
509
+
510
+ ### Minor Changes
511
+
512
+ - c45b62c: ZERO-2818: Add upload and download support for b2b package
513
+ - f2c325c: ZERO-2838: Move file input component into @akinon/next
514
+
515
+ ## 1.45.0-rc.1
516
+
517
+ ### Minor Changes
518
+
519
+ - 7e56d6b: ZERO-2841: Update api tagTypes
520
+
521
+ ## 1.45.0-rc.0
522
+
523
+ ### Minor Changes
524
+
525
+ - 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
526
+ - 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
527
+ - a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
528
+ - fda5b92: ZERO-2725: fix invalid import
529
+ - 2d9b2b2: ZERO-2816: Add segment to headers
530
+ - c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
531
+ - 8d9ac9a: ZERO-2794: Add field to order type
532
+ - 70279e7: ZERO-2817: Add metrics endpoint in default middleware
533
+ - 6c25f66: ZERO-2551: Check CACHE_HOST variable
534
+ - bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
535
+ - 3bf2dd9: ZERO-2551: Fix search page
536
+ - e9541a1: ZERO-2816: Add headers to url
537
+ - 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.
538
+ - 9d94f7e: ZERO-2820: update parent pk usage for menu generator
539
+ - 64699d3: ZERO-2761: Fix invalid import for plugin module
540
+ - 0d3a913: ZERO-2725: Update decimal scale in Price component
541
+ - 1448a96: ZERO-2612: add errors type in CheckoutState
102
542
  - 2ab6e08: ZERO-2841: Update getBasketDetail query
543
+ - d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
544
+ - d3474c6: ZERO-2655: Add data source shipping option
545
+ - 75080fd: ZERO-2630: Add max limit to postcode area
546
+ - 17f8752: ZERO-2816: Make the incoming currency lowercase
547
+ - 91265bb: ZERO-2551: Improve pretty url and caching performance
548
+ - bbe18b9: ZERO-2575: Fix build error
549
+ - d409996: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
550
+ - 4920742: Disable getCachedTranslations
551
+ - 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
552
+ - 98bb8dc: ZERO-2706: Cache getTranlations method
553
+ - 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
554
+ - dcc8a15: ZERO-2694: added build step to RC branch pipeline
555
+ - fad2768: ZERO-2739: add gpay to payment plugin map
556
+ - dff0d59: ZERO-2659: add formData support to proxy api requests
557
+ - eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
558
+ - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
559
+ - beb499e: ZERO-2551: Add new tsconfig paths
560
+ - 146ea39: ZERO-2774: Update imports
561
+ - f2c92d5: ZERO-2816: Update cookie name
562
+ - 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
563
+ - c47be30: ZERO-2744: Update Order and OrderItem types
564
+ - e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
565
+ - f046f8e0: ZERO-2575: update version for react-number-format
566
+ - 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
567
+ - 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
103
568
 
104
569
  ## 1.44.0
105
570
 
@@ -107,7 +572,201 @@
107
572
 
108
573
  ### Minor Changes
109
574
 
575
+ - 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
576
+ - 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
577
+ - a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
578
+ - fda5b92: ZERO-2725: fix invalid import
579
+ - 2d9b2b2: ZERO-2816: Add segment to headers
580
+ - c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
581
+ - 8d9ac9a: ZERO-2794: Add field to order type
582
+ - 70279e7: ZERO-2817: Add metrics endpoint in default middleware
583
+ - 6c25f66: ZERO-2551: Check CACHE_HOST variable
584
+ - bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
585
+ - 3bf2dd9: ZERO-2551: Fix search page
586
+ - e9541a1: ZERO-2816: Add headers to url
587
+ - 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.
588
+ - 9d94f7e: ZERO-2820: update parent pk usage for menu generator
589
+ - 64699d3: ZERO-2761: Fix invalid import for plugin module
590
+ - 0d3a913: ZERO-2725: Update decimal scale in Price component
591
+ - 1448a96: ZERO-2612: add errors type in CheckoutState
592
+ - d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
593
+ - d3474c6: ZERO-2655: Add data source shipping option
594
+ - 75080fd: ZERO-2630: Add max limit to postcode area
595
+ - 17f8752: ZERO-2816: Make the incoming currency lowercase
596
+ - 91265bb: ZERO-2551: Improve pretty url and caching performance
597
+ - bbe18b9: ZERO-2575: Fix build error
598
+ - d409996: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
599
+ - 4920742: Disable getCachedTranslations
600
+ - 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
601
+ - 98bb8dc: ZERO-2706: Cache getTranlations method
602
+ - 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
603
+ - dcc8a15: ZERO-2694: added build step to RC branch pipeline
604
+ - fad2768: ZERO-2739: add gpay to payment plugin map
605
+ - dff0d59: ZERO-2659: add formData support to proxy api requests
606
+ - eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
607
+ - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
608
+ - beb499e: ZERO-2551: Add new tsconfig paths
609
+ - 146ea39: ZERO-2774: Update imports
610
+ - f2c92d5: ZERO-2816: Update cookie name
611
+ - 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
612
+ - c47be30: ZERO-2744: Update Order and OrderItem types
613
+ - e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
614
+ - f046f8e0: ZERO-2575: update version for react-number-format
615
+ - 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
616
+ - 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
617
+
618
+ ## 1.43.0-rc.15
619
+
620
+ ## 1.43.0-rc.14
621
+
622
+ ### Minor Changes
623
+
624
+ - 3bf2dd9: ZERO-2551: Fix search page
625
+
626
+ ## 1.43.0-rc.13
627
+
628
+ ### Minor Changes
629
+
630
+ - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
631
+
632
+ ## 1.43.0-rc.12
633
+
634
+ ### Minor Changes
635
+
636
+ - 4920742: Disable getCachedTranslations
637
+
638
+ ## 1.43.0-rc.11
639
+
640
+ ### Minor Changes
641
+
642
+ - 6c25f66: ZERO-2551: Check CACHE_HOST variable
643
+
644
+ ## 1.43.0-rc.10
645
+
646
+ ### Minor Changes
647
+
648
+ - d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
649
+
650
+ ## 1.43.0-rc.9
651
+
652
+ ### Minor Changes
653
+
654
+ - bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
655
+
656
+ ## 1.43.0-rc.8
657
+
658
+ ### Minor Changes
659
+
660
+ - 70279e7: ZERO-2817: Add metrics endpoint in default middleware
661
+ - 9d94f7e: ZERO-2820: update parent pk usage for menu generator
662
+
663
+ ## 1.43.0-rc.7
664
+
665
+ ### Minor Changes
666
+
667
+ - 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
668
+
669
+ ## 1.43.0-rc.6
670
+
671
+ ### Minor Changes
672
+
673
+ - 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
674
+ - 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
675
+ - a4c8d6a: ZERO-2663: Fix the image url for gif and svgs and return them without options
676
+ - fda5b92: ZERO-2725: fix invalid import
677
+ - 2d9b2b2: ZERO-2816: Add segment to headers
678
+ - c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
679
+ - 8d9ac9a: ZERO-2794: Add field to order type
680
+ - e9541a1: ZERO-2816: Add headers to url
681
+ - 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.
682
+ - 64699d3: ZERO-2761: Fix invalid import for plugin module
683
+ - 0d3a913: ZERO-2725: Update decimal scale in Price component
684
+ - 1448a96: ZERO-2612: add errors type in CheckoutState
685
+ - d3474c6: ZERO-2655: Add data source shipping option
686
+ - 75080fd: ZERO-2630: Add max limit to postcode area
687
+ - 17f8752: ZERO-2816: Make the incoming currency lowercase
688
+ - 91265bb: ZERO-2551: Improve pretty url and caching performance
689
+ - bbe18b9: ZERO-2575: Fix build error
690
+ - d409996: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
691
+ - 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
692
+ - 98bb8dc: ZERO-2706: Cache getTranlations method
693
+ - 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
694
+ - dcc8a15: ZERO-2694: added build step to RC branch pipeline
695
+ - fad2768: ZERO-2739: add gpay to payment plugin map
696
+ - dff0d59: ZERO-2659: add formData support to proxy api requests
697
+ - eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
110
698
  - 4a163f2: ZERO-2761: Add condition for basket summary
699
+ - beb499e: ZERO-2551: Add new tsconfig paths
700
+ - 146ea39: ZERO-2774: Update imports
701
+ - f2c92d5: ZERO-2816: Update cookie name
702
+ - c47be30: ZERO-2744: Update Order and OrderItem types
703
+ - e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
704
+ - f046f8e: ZERO-2575: update version for react-number-format
705
+ - 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
706
+ - 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
707
+
708
+ ## 1.43.0-rc.5
709
+
710
+ ### Minor Changes
711
+
712
+ - 17f8752: ZERO-2816: Make the incoming currency lowercase
713
+
714
+ ## 1.43.0-rc.4
715
+
716
+ ### Minor Changes
717
+
718
+ - 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
719
+
720
+ ## 1.43.0-rc.3
721
+
722
+ ### Minor Changes
723
+
724
+ - 64699d3: ZERO-2761: Fix invalid import for plugin module
725
+
726
+ ## 1.43.0-rc.2
727
+
728
+ ### Minor Changes
729
+
730
+ - f2c92d5: ZERO-2816: Update cookie name
731
+
732
+ ## 1.43.0-rc.1
733
+
734
+ ### Minor Changes
735
+
736
+ - eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
737
+
738
+ ## 1.43.0-rc.0
739
+
740
+ ### Minor Changes
741
+
742
+ - 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
743
+ - 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
744
+ - a4c8d6a: ZERO-2663: Fix the image url for gif and svgs and return them without options
745
+ - fda5b92: ZERO-2725: fix invalid import
746
+ - 2d9b2b2: ZERO-2816: Add segment to headers
747
+ - c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
748
+ - 8d9ac9a: ZERO-2794: Add field to order type
749
+ - e9541a1: ZERO-2816: Add headers to url
750
+ - 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.
751
+ - 0d3a913: ZERO-2725: Update decimal scale in Price component
752
+ - 1448a96: ZERO-2612: add errors type in CheckoutState
753
+ - d3474c6: ZERO-2655: Add data source shipping option
754
+ - 75080fd: ZERO-2630: Add max limit to postcode area
755
+ - 91265bb: ZERO-2551: Improve pretty url and caching performance
756
+ - bbe18b9: ZERO-2575: Fix build error
757
+ - d409996: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
758
+ - 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
759
+ - 98bb8dc: ZERO-2706: Cache getTranlations method
760
+ - 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
761
+ - dcc8a15: ZERO-2694: added build step to RC branch pipeline
762
+ - fad2768: ZERO-2739: add gpay to payment plugin map
763
+ - dff0d59: ZERO-2659: add formData support to proxy api requests
764
+ - beb499e: ZERO-2551: Add new tsconfig paths
765
+ - 146ea39: ZERO-2774: Update imports
766
+ - c47be30: ZERO-2744: Update Order and OrderItem types
767
+ - e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
768
+ - f046f8e: ZERO-2575: update version for react-number-format
769
+ - 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
111
770
 
112
771
  ## 1.42.0
113
772