@akinon/next 1.58.0 → 1.59.0-rc.0

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