@akinon/next 1.56.0 → 1.58.0-rc.9

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