@akinon/next 1.59.0-rc.5 → 1.59.0

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