@akinon/next 1.59.0 → 1.60.0-rc.6

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