@akinon/next 1.58.0 → 1.59.0-rc.1

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