@akinon/next 1.59.0 → 1.60.0-rc.11

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