@akinon/next 1.80.0-rc.7 → 1.80.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.
- package/CHANGELOG.md +9 -824
- package/api/auth.ts +0 -2
- package/components/button.tsx +36 -51
- package/components/input.tsx +0 -2
- package/components/link.tsx +12 -16
- package/data/client/checkout.ts +1 -7
- package/data/client/user.ts +8 -16
- package/hocs/server/with-segment-defaults.tsx +2 -5
- package/instrumentation/index.ts +0 -7
- package/lib/cache.ts +0 -2
- package/middlewares/complete-gpay.ts +1 -2
- package/middlewares/complete-masterpass.ts +1 -2
- package/middlewares/default.ts +1 -3
- package/middlewares/redirection-payment.ts +1 -2
- package/middlewares/saved-card-redirection.ts +1 -2
- package/middlewares/three-d-redirection.ts +1 -2
- package/package.json +3 -3
- package/types/commerce/account.ts +1 -5
- package/types/commerce/order.ts +0 -1
- package/types/index.ts +1 -5
- package/utils/app-fetch.ts +2 -2
- package/with-pz-config.js +3 -3
- package/data/server/basket.ts +0 -72
package/CHANGELOG.md
CHANGED
|
@@ -1,120 +1,17 @@
|
|
|
1
1
|
# @akinon/next
|
|
2
2
|
|
|
3
|
-
## 1.80.0
|
|
3
|
+
## 1.80.0
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
-
|
|
14
|
-
|
|
15
|
-
- 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.
|
|
16
|
-
- 64699d3f: ZERO-2761: Fix invalid import for plugin module
|
|
17
|
-
- 0200d568: ZERO-3163: Add frontendIds property to Settings interface
|
|
18
|
-
- 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
|
|
19
|
-
- 17f87524: ZERO-2816: Make the incoming currency lowercase
|
|
20
|
-
- 65d3b862: ZERO-3054: Update headers in appFetch
|
|
21
|
-
- bbe18b9f: ZERO-2575: Fix build error
|
|
22
|
-
- 4920742c: Disable getCachedTranslations
|
|
23
|
-
- 7e56d6b6: ZERO-2841: Update api tagTypes
|
|
24
|
-
- 43c182ee: ZERO-3054: Update Redis variable checks to conditionally include CACHE_SECRET
|
|
25
|
-
- 2d305aaf: ZERO-2935: Update Sentry configuration: remove hideSourceMaps option and add it to withPzConfig
|
|
26
|
-
- 4cc22c7c: ZERO-3125: replace X-Frame-Options with CSP frame-ancestors
|
|
27
|
-
- eeb20bea: Revert "ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing"
|
|
28
|
-
- 6a0a0807: ZERO-3112: Update button
|
|
29
|
-
- f2c92d5c: ZERO-2816: Update cookie name
|
|
30
|
-
- 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
31
|
-
- fdd255ee: ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing
|
|
32
|
-
- 49eeebfa: ZERO-2909: Add deleteCollectionItem query to wishlistApi
|
|
33
|
-
- 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
|
|
34
|
-
- 7ab9e2fd: ZERO-3166: add tamara payment package
|
|
35
|
-
|
|
36
|
-
## 1.79.0-rc.6
|
|
37
|
-
|
|
38
|
-
### Minor Changes
|
|
39
|
-
|
|
40
|
-
- 0200d568: ZERO-3163: Add frontendIds property to Settings interface
|
|
41
|
-
|
|
42
|
-
## 1.79.0-rc.5
|
|
43
|
-
|
|
44
|
-
### Minor Changes
|
|
45
|
-
|
|
46
|
-
- 778aabf8: ZERO-3163: Add frontend ID header to authentication requests and forgot password mutation
|
|
47
|
-
|
|
48
|
-
## 1.79.0-rc.4
|
|
49
|
-
|
|
50
|
-
## 1.79.0-rc.3
|
|
51
|
-
|
|
52
|
-
### Minor Changes
|
|
53
|
-
|
|
54
|
-
- 5dfeea04: ZERO-2801: Revert ZERO-2801
|
|
55
|
-
- 2d9b2b2c: ZERO-2816: Add segment to headers
|
|
56
|
-
- fd4b74e9: ZERO-3126: add reset checkout state query
|
|
57
|
-
- f49bb74f: ZERO-3097: Add setCookie to logging in payment redirection middlewares
|
|
58
|
-
- e9541a13: ZERO-2816: Add headers to url
|
|
59
|
-
- 4d3deb4f: ZERO-2935: sentry 8 upgrade
|
|
60
|
-
- 72fd4d67: ZERO-3084: Fix URL search parameters encoding in default middleware
|
|
61
|
-
- 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.
|
|
62
|
-
- 64699d3f: ZERO-2761: Fix invalid import for plugin module
|
|
63
|
-
- 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
|
|
64
|
-
- 17f87524: ZERO-2816: Make the incoming currency lowercase
|
|
65
|
-
- 65d3b862: ZERO-3054: Update headers in appFetch
|
|
66
|
-
- bbe18b9f: ZERO-2575: Fix build error
|
|
67
|
-
- 4920742c: Disable getCachedTranslations
|
|
68
|
-
- 7e56d6b6: ZERO-2841: Update api tagTypes
|
|
69
|
-
- 43c182ee: ZERO-3054: Update Redis variable checks to conditionally include CACHE_SECRET
|
|
70
|
-
- 2d305aaf: ZERO-2935: Update Sentry configuration: remove hideSourceMaps option and add it to withPzConfig
|
|
71
|
-
- 4cc22c7c: ZERO-3125: replace X-Frame-Options with CSP frame-ancestors
|
|
72
|
-
- eeb20bea: Revert "ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing"
|
|
73
|
-
- 6a0a0807: ZERO-3112: Update button
|
|
74
|
-
- f2c92d5c: ZERO-2816: Update cookie name
|
|
75
|
-
- 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
76
|
-
- fdd255ee: ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing
|
|
77
|
-
- 59fa21ce: ZERO-3149: Add name-based mechanism for Redux middleware override
|
|
78
|
-
- 49eeebfa: ZERO-2909: Add deleteCollectionItem query to wishlistApi
|
|
79
|
-
- 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
|
|
80
|
-
|
|
81
|
-
## 1.79.0-rc.2
|
|
82
|
-
|
|
83
|
-
## 1.79.0-rc.1
|
|
84
|
-
|
|
85
|
-
### Minor Changes
|
|
86
|
-
|
|
87
|
-
- 4cc22c7c: ZERO-3125: replace X-Frame-Options with CSP frame-ancestors
|
|
88
|
-
|
|
89
|
-
## 1.79.0-rc.0
|
|
90
|
-
|
|
91
|
-
### Minor Changes
|
|
92
|
-
|
|
93
|
-
- 5dfeea04: ZERO-2801: Revert ZERO-2801
|
|
94
|
-
- 2d9b2b2c: ZERO-2816: Add segment to headers
|
|
95
|
-
- fd4b74e9: ZERO-3126: add reset checkout state query
|
|
96
|
-
- f49bb74f: ZERO-3097: Add setCookie to logging in payment redirection middlewares
|
|
97
|
-
- e9541a13: ZERO-2816: Add headers to url
|
|
98
|
-
- 4d3deb4f: ZERO-2935: sentry 8 upgrade
|
|
99
|
-
- 72fd4d67: ZERO-3084: Fix URL search parameters encoding in default middleware
|
|
100
|
-
- 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.
|
|
101
|
-
- 64699d3f: ZERO-2761: Fix invalid import for plugin module
|
|
102
|
-
- 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
|
|
103
|
-
- 17f87524: ZERO-2816: Make the incoming currency lowercase
|
|
104
|
-
- 65d3b862: ZERO-3054: Update headers in appFetch
|
|
105
|
-
- bbe18b9f: ZERO-2575: Fix build error
|
|
106
|
-
- 4920742c: Disable getCachedTranslations
|
|
107
|
-
- 7e56d6b6: ZERO-2841: Update api tagTypes
|
|
108
|
-
- 43c182ee: ZERO-3054: Update Redis variable checks to conditionally include CACHE_SECRET
|
|
109
|
-
- 2d305aaf: ZERO-2935: Update Sentry configuration: remove hideSourceMaps option and add it to withPzConfig
|
|
110
|
-
- eeb20bea: Revert "ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing"
|
|
111
|
-
- 6a0a0807: ZERO-3112: Update button
|
|
112
|
-
- f2c92d5c: ZERO-2816: Update cookie name
|
|
113
|
-
- 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
114
|
-
- fdd255ee: ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing
|
|
115
|
-
- 49eeebfa: ZERO-2909: Add deleteCollectionItem query to wishlistApi
|
|
116
|
-
- 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
|
|
117
|
-
|
|
7
|
+
- 7ab9e2f: ZERO-3166: add tamara payment package
|
|
8
|
+
|
|
9
|
+
## 1.79.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- 59fa21c: ZERO-3149: Add name-based mechanism for Redux middleware override
|
|
14
|
+
|
|
118
15
|
## 1.78.0
|
|
119
16
|
|
|
120
17
|
### Minor Changes
|
|
@@ -185,52 +82,6 @@
|
|
|
185
82
|
### Minor Changes
|
|
186
83
|
|
|
187
84
|
- f34454a: ZERO-2953: Add hepsipay payment method
|
|
188
|
-
- 3bfa12a: ZERO-3003:Add fetchLoyaltyData and setLoyaltyData requests to RTK
|
|
189
|
-
- 4d3deb4: ZERO-2935: sentry 8 upgrade
|
|
190
|
-
- 3010514: ZERO-3011:add shipping_option_operator and custom filter to getOrders
|
|
191
|
-
- 9a50730: ZERO-3015: Add currency parameter to getOrders query
|
|
192
|
-
- ca774b3: ZERO-3002:add register with loyalty url
|
|
193
|
-
- 56cdddc: ZERO-0000: SHOP-78125: Change unpaid_amount with total_amount_with_interest
|
|
194
|
-
- 3344bca: ZERO-3013: Enable web vitals tracking in settings.js
|
|
195
|
-
|
|
196
|
-
## 1.71.0-rc.7
|
|
197
|
-
|
|
198
|
-
## 1.71.0-rc.6
|
|
199
|
-
|
|
200
|
-
### Minor Changes
|
|
201
|
-
|
|
202
|
-
- f34454a: ZERO-2953: Add hepsipay payment method
|
|
203
|
-
|
|
204
|
-
## 1.71.0-rc.5
|
|
205
|
-
|
|
206
|
-
## 1.71.0-rc.4
|
|
207
|
-
|
|
208
|
-
## 1.71.0-rc.3
|
|
209
|
-
|
|
210
|
-
### Minor Changes
|
|
211
|
-
|
|
212
|
-
- 3344bca: ZERO-3013: Enable web vitals tracking in settings.js
|
|
213
|
-
|
|
214
|
-
## 1.71.0-rc.2
|
|
215
|
-
|
|
216
|
-
### Minor Changes
|
|
217
|
-
|
|
218
|
-
- 56cdddc: ZERO-0000: SHOP-78125: Change unpaid_amount with total_amount_with_interest
|
|
219
|
-
|
|
220
|
-
## 1.71.0-rc.1
|
|
221
|
-
|
|
222
|
-
### Minor Changes
|
|
223
|
-
|
|
224
|
-
- 9a50730: ZERO-3015: Add currency parameter to getOrders query
|
|
225
|
-
|
|
226
|
-
## 1.71.0-rc.0
|
|
227
|
-
|
|
228
|
-
### Minor Changes
|
|
229
|
-
|
|
230
|
-
- 3bfa12a: ZERO-3003:Add fetchLoyaltyData and setLoyaltyData requests to RTK
|
|
231
|
-
- 4d3deb4: ZERO-2935: sentry 8 upgrade
|
|
232
|
-
- 3010514: ZERO-3011:add shipping_option_operator and custom filter to getOrders
|
|
233
|
-
- ca774b3: ZERO-3002:add register with loyalty url
|
|
234
85
|
|
|
235
86
|
## 1.70.0
|
|
236
87
|
|
|
@@ -242,72 +93,12 @@
|
|
|
242
93
|
|
|
243
94
|
### Minor Changes
|
|
244
95
|
|
|
245
|
-
- 3bfa12a: ZERO-3003:Add fetchLoyaltyData and setLoyaltyData requests to RTK
|
|
246
|
-
- 4d3deb4: ZERO-2935: sentry 8 upgrade
|
|
247
|
-
- 3010514: ZERO-3011:add shipping_option_operator and custom filter to getOrders
|
|
248
|
-
- ca774b3: ZERO-3002:add register with loyalty url
|
|
249
|
-
- f046f8e: ZERO-2575: update version for react-number-format
|
|
250
|
-
|
|
251
|
-
## 1.69.0-rc.8
|
|
252
|
-
|
|
253
|
-
### Minor Changes
|
|
254
|
-
|
|
255
|
-
- 3010514: ZERO-3011:add shipping_option_operator and custom filter to getOrders
|
|
256
|
-
- ca774b3: ZERO-3002:add register with loyalty url
|
|
257
|
-
|
|
258
|
-
## 1.69.0-rc.7
|
|
259
|
-
|
|
260
|
-
### Minor Changes
|
|
261
|
-
|
|
262
|
-
- 3bfa12a: ZERO-3003:Add fetchLoyaltyData and setLoyaltyData requests to RTK
|
|
263
|
-
|
|
264
|
-
## 1.69.0-rc.6
|
|
265
|
-
|
|
266
|
-
### Minor Changes
|
|
267
|
-
|
|
268
|
-
- 4d3deb4: ZERO-2935: sentry 8 upgrade
|
|
269
96
|
- 063da74: ZERO-3010: Remove pz-iyzico-saved-card package
|
|
270
97
|
- 72da021: ZERO-3010: Remove unused code in pretty-url.tsx
|
|
271
98
|
- 5632a99: ZERO-3010: Remove iyzicoSavedCardReducer from reducers
|
|
272
99
|
- cbdb0c8: ZERO-3010: Move pretty url page into project
|
|
273
100
|
- 80c869b: ZERO-3010: Remove savedCardMiddleware from redux middlewares
|
|
274
101
|
|
|
275
|
-
## 1.69.0-rc.5
|
|
276
|
-
|
|
277
|
-
### Minor Changes
|
|
278
|
-
|
|
279
|
-
- 80c869b: ZERO-3010: Remove savedCardMiddleware from redux middlewares
|
|
280
|
-
|
|
281
|
-
## 1.69.0-rc.4
|
|
282
|
-
|
|
283
|
-
### Minor Changes
|
|
284
|
-
|
|
285
|
-
- 063da74: ZERO-3010: Remove pz-iyzico-saved-card package
|
|
286
|
-
|
|
287
|
-
## 1.69.0-rc.3
|
|
288
|
-
|
|
289
|
-
### Minor Changes
|
|
290
|
-
|
|
291
|
-
- cbdb0c8: ZERO-3010: Move pretty url page into project
|
|
292
|
-
|
|
293
|
-
## 1.69.0-rc.2
|
|
294
|
-
|
|
295
|
-
### Minor Changes
|
|
296
|
-
|
|
297
|
-
- 5632a99: ZERO-3010: Remove iyzicoSavedCardReducer from reducers
|
|
298
|
-
|
|
299
|
-
## 1.69.0-rc.1
|
|
300
|
-
|
|
301
|
-
### Minor Changes
|
|
302
|
-
|
|
303
|
-
- 72da021: ZERO-3010: Remove unused code in pretty-url.tsx
|
|
304
|
-
|
|
305
|
-
## 1.69.0-rc.0
|
|
306
|
-
|
|
307
|
-
### Minor Changes
|
|
308
|
-
|
|
309
|
-
- 4d3deb4: ZERO-2935: sentry 8 upgrade
|
|
310
|
-
|
|
311
102
|
## 1.68.0
|
|
312
103
|
|
|
313
104
|
### Minor Changes
|
|
@@ -417,183 +208,11 @@
|
|
|
417
208
|
|
|
418
209
|
### Minor Changes
|
|
419
210
|
|
|
420
|
-
- c416d18: ZERO-2915: Add delivery option null check for setAddress
|
|
421
|
-
- 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
|
|
422
|
-
- 5dfeea0: ZERO-2801: Revert ZERO-2801
|
|
423
|
-
- a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
|
|
424
|
-
- fda5b927: ZERO-2725: fix invalid import
|
|
425
|
-
- 2d9b2b2c: ZERO-2816: Add segment to headers
|
|
426
|
-
- c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
427
|
-
- 6c25f66: ZERO-2551: Check CACHE_HOST variable
|
|
428
|
-
- bc2b4117: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
429
|
-
- 3bf2dd9: ZERO-2551: Fix search page
|
|
430
|
-
- e9541a13: ZERO-2816: Add headers to url
|
|
431
|
-
- 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.
|
|
432
|
-
- 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
|
|
433
|
-
- 64699d3f: ZERO-2761: Fix invalid import for plugin module
|
|
434
|
-
- 0d3a913e: ZERO-2725: Update decimal scale in Price component
|
|
435
|
-
- 7b05522: ZERO-2905: Fix resend and close button in otp package
|
|
436
|
-
- d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
|
|
437
|
-
- d3474c64: ZERO-2655: Add data source shipping option
|
|
438
|
-
- 17f87524: ZERO-2816: Make the incoming currency lowercase
|
|
439
|
-
- 29ead87: ZERO-2905: Fix resend and close button in otp package
|
|
440
|
-
- c45b62c: ZERO-2818: Add upload and download support for b2b package
|
|
441
|
-
- 91265bba: ZERO-2551: Improve pretty url and caching performance
|
|
442
|
-
- bbe18b9f: ZERO-2575: Fix build error
|
|
443
|
-
- d4099960: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
|
|
444
|
-
- 4920742: Disable getCachedTranslations
|
|
445
|
-
- 12a873e: ZERO-2846:Edit the siteKey regex in the response from GetCaptcha
|
|
446
|
-
- 7e56d6b: ZERO-2841: Update api tagTypes
|
|
447
|
-
- 94b69285: ZERO-2551: Add cache handler check in url-redirection middleware
|
|
448
|
-
- 98bb8dcd: ZERO-2706: Cache getTranlations method
|
|
449
|
-
- dcc8a150: ZERO-2694: added build step to RC branch pipeline
|
|
450
|
-
- 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
|
|
451
|
-
- fad27689: ZERO-2739: add gpay to payment plugin map
|
|
452
|
-
- dff0d595: ZERO-2659: add formData support to proxy api requests
|
|
453
|
-
- fdd0b41: ZERO-2706: Add optimized translation support
|
|
454
|
-
- f2c325c: ZERO-2838: Move file input component into @akinon/next
|
|
455
|
-
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
456
|
-
- beb499e6: ZERO-2551: Add new tsconfig paths
|
|
457
|
-
- f2c92d5c: ZERO-2816: Update cookie name
|
|
458
|
-
- 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
459
|
-
- f3d076b: ZERO-2864: create tabby extension plugin
|
|
460
|
-
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
461
|
-
- 49eeebf: ZERO-2909: Add deleteCollectionItem query to wishlistApi
|
|
462
|
-
- 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
463
|
-
- 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
|
|
464
|
-
|
|
465
|
-
## 1.56.0-rc.7
|
|
466
|
-
|
|
467
|
-
## 1.56.0-rc.6
|
|
468
|
-
|
|
469
|
-
### Minor Changes
|
|
470
|
-
|
|
471
|
-
- f3d076b: ZERO-2864: create tabby extension plugin
|
|
472
|
-
|
|
473
|
-
## 1.56.0-rc.5
|
|
474
|
-
|
|
475
|
-
### Minor Changes
|
|
476
|
-
|
|
477
|
-
- c416d18: ZERO-2915: Add delivery option null check for setAddress
|
|
478
|
-
|
|
479
|
-
## 1.56.0-rc.4
|
|
480
|
-
|
|
481
|
-
### Minor Changes
|
|
482
|
-
|
|
483
|
-
- 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
|
|
484
|
-
- 5dfeea0: ZERO-2801: Revert ZERO-2801
|
|
485
|
-
- a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
|
|
486
|
-
- fda5b927: ZERO-2725: fix invalid import
|
|
487
|
-
- 2d9b2b2c: ZERO-2816: Add segment to headers
|
|
488
|
-
- c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
489
211
|
- d93a507: ZERO-2900: Fix pretty url rewrite
|
|
490
|
-
- 6c25f66: ZERO-2551: Check CACHE_HOST variable
|
|
491
|
-
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
492
|
-
- 3bf2dd9: ZERO-2551: Fix search page
|
|
493
|
-
- e9541a13: ZERO-2816: Add headers to url
|
|
494
|
-
- 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.
|
|
495
|
-
- 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
|
|
496
|
-
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
497
|
-
- 0d3a913e: ZERO-2725: Update decimal scale in Price component
|
|
498
|
-
- 7b05522: ZERO-2905: Fix resend and close button in otp package
|
|
499
|
-
- d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
|
|
500
|
-
- d3474c64: ZERO-2655: Add data source shipping option
|
|
501
|
-
- 17f8752: ZERO-2816: Make the incoming currency lowercase
|
|
502
|
-
- 29ead87: ZERO-2905: Fix resend and close button in otp package
|
|
503
|
-
- c45b62c: ZERO-2818: Add upload and download support for b2b package
|
|
504
|
-
- 91265bba: ZERO-2551: Improve pretty url and caching performance
|
|
505
|
-
- bbe18b9f: ZERO-2575: Fix build error
|
|
506
|
-
- d4099960: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
|
|
507
|
-
- 4920742: Disable getCachedTranslations
|
|
508
|
-
- 12a873e: ZERO-2846:Edit the siteKey regex in the response from GetCaptcha
|
|
509
212
|
- 674badc: ZERO-2912: Fix selected payment option view to handle null values
|
|
510
|
-
- 7e56d6b: ZERO-2841: Update api tagTypes
|
|
511
|
-
- 94b69285: ZERO-2551: Add cache handler check in url-redirection middleware
|
|
512
|
-
- 98bb8dcd: ZERO-2706: Cache getTranlations method
|
|
513
213
|
- 207ac6e: ZERO-2917: Add OrderSelectionPage endpoint
|
|
514
|
-
- dcc8a150: ZERO-2694: added build step to RC branch pipeline
|
|
515
|
-
- 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
|
|
516
|
-
- fad27689: ZERO-2739: add gpay to payment plugin map
|
|
517
|
-
- dff0d595: ZERO-2659: add formData support to proxy api requests
|
|
518
|
-
- fdd0b41: ZERO-2706: Add optimized translation support
|
|
519
|
-
- f2c325c: ZERO-2838: Move file input component into @akinon/next
|
|
520
|
-
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
521
|
-
- beb499e6: ZERO-2551: Add new tsconfig paths
|
|
522
|
-
- f2c92d5c: ZERO-2816: Update cookie name
|
|
523
|
-
- 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
524
|
-
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
525
214
|
- b9273fd: ZERO-2889: add host headers to requests
|
|
526
|
-
- 49eeebf: ZERO-2909: Add deleteCollectionItem query to wishlistApi
|
|
527
|
-
- 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
528
215
|
- c670bd4: ZERO-2900: Add middleware rewrite functionality
|
|
529
|
-
- 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
|
|
530
|
-
|
|
531
|
-
## 1.56.0-rc.3
|
|
532
|
-
|
|
533
|
-
### Minor Changes
|
|
534
|
-
|
|
535
|
-
- 674badc: ZERO-2912: Fix selected payment option view to handle null values
|
|
536
|
-
|
|
537
|
-
## 1.56.0-rc.2
|
|
538
|
-
|
|
539
|
-
### Minor Changes
|
|
540
|
-
|
|
541
|
-
- 7b05522: ZERO-2905: Fix resend and close button in otp package
|
|
542
|
-
- 29ead87: ZERO-2905: Fix resend and close button in otp package
|
|
543
|
-
|
|
544
|
-
## 1.56.0-rc.1
|
|
545
|
-
|
|
546
|
-
### Minor Changes
|
|
547
|
-
|
|
548
|
-
- 207ac6e: ZERO-2917: Add OrderSelectionPage endpoint
|
|
549
|
-
|
|
550
|
-
## 1.56.0-rc.0
|
|
551
|
-
|
|
552
|
-
### Minor Changes
|
|
553
|
-
|
|
554
|
-
- 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
|
|
555
|
-
- 5dfeea0: ZERO-2801: Revert ZERO-2801
|
|
556
|
-
- a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
|
|
557
|
-
- fda5b927: ZERO-2725: fix invalid import
|
|
558
|
-
- 2d9b2b2c: ZERO-2816: Add segment to headers
|
|
559
|
-
- c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
560
|
-
- d93a507: ZERO-2900: Fix pretty url rewrite
|
|
561
|
-
- 6c25f666: ZERO-2551: Check CACHE_HOST variable
|
|
562
|
-
- bc2b4117: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
563
|
-
- 3bf2dd94: ZERO-2551: Fix search page
|
|
564
|
-
- e9541a13: ZERO-2816: Add headers to url
|
|
565
|
-
- 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.
|
|
566
|
-
- 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
|
|
567
|
-
- 64699d3f: ZERO-2761: Fix invalid import for plugin module
|
|
568
|
-
- 0d3a913e: ZERO-2725: Update decimal scale in Price component
|
|
569
|
-
- d6edb1d0: ZERO-2551: Fix searchparams handling for list and other routes
|
|
570
|
-
- d3474c64: ZERO-2655: Add data source shipping option
|
|
571
|
-
- 17f87524: ZERO-2816: Make the incoming currency lowercase
|
|
572
|
-
- c45b62c9: ZERO-2818: Add upload and download support for b2b package
|
|
573
|
-
- 91265bba: ZERO-2551: Improve pretty url and caching performance
|
|
574
|
-
- bbe18b9f: ZERO-2575: Fix build error
|
|
575
|
-
- d4099960: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
|
|
576
|
-
- 4920742c: Disable getCachedTranslations
|
|
577
|
-
- 12a873e: ZERO-2846:Edit the siteKey regex in the response from GetCaptcha
|
|
578
|
-
- 7e56d6b6: ZERO-2841: Update api tagTypes
|
|
579
|
-
- 94b69285: ZERO-2551: Add cache handler check in url-redirection middleware
|
|
580
|
-
- 98bb8dcd: ZERO-2706: Cache getTranlations method
|
|
581
|
-
- dcc8a150: ZERO-2694: added build step to RC branch pipeline
|
|
582
|
-
- 8f47ccae: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
|
|
583
|
-
- fad27689: ZERO-2739: add gpay to payment plugin map
|
|
584
|
-
- dff0d595: ZERO-2659: add formData support to proxy api requests
|
|
585
|
-
- fdd0b41: ZERO-2706: Add optimized translation support
|
|
586
|
-
- f2c325c1: ZERO-2838: Move file input component into @akinon/next
|
|
587
|
-
- 9e25a64b: ZERO-2835: Update category page layout with breadcrumb
|
|
588
|
-
- beb499e6: ZERO-2551: Add new tsconfig paths
|
|
589
|
-
- f2c92d5c: ZERO-2816: Update cookie name
|
|
590
|
-
- 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
591
|
-
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
592
|
-
- b9273fd3: ZERO-2889: add host headers to requests
|
|
593
|
-
- 49eeebf: ZERO-2909: Add deleteCollectionItem query to wishlistApi
|
|
594
|
-
- 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
595
|
-
- c670bd48: ZERO-2900: Add middleware rewrite functionality
|
|
596
|
-
- 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
|
|
597
216
|
|
|
598
217
|
## 1.55.0
|
|
599
218
|
|
|
@@ -639,128 +258,7 @@
|
|
|
639
258
|
|
|
640
259
|
### Minor Changes
|
|
641
260
|
|
|
642
|
-
- 90282b53: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
643
|
-
- 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
|
|
644
|
-
- 5dfeea0: ZERO-2801: Revert ZERO-2801
|
|
645
|
-
- a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
|
|
646
|
-
- fda5b927: ZERO-2725: fix invalid import
|
|
647
|
-
- 2d9b2b2: ZERO-2816: Add segment to headers
|
|
648
|
-
- c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
649
|
-
- d93a507: ZERO-2900: Fix pretty url rewrite
|
|
650
|
-
- 8d9ac9a: ZERO-2794: Add field to order type
|
|
651
|
-
- 70279e7: ZERO-2817: Add metrics endpoint in default middleware
|
|
652
|
-
- 6c25f66: ZERO-2551: Check CACHE_HOST variable
|
|
653
|
-
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
654
|
-
- 3bf2dd9: ZERO-2551: Fix search page
|
|
655
|
-
- e9541a1: ZERO-2816: Add headers to url
|
|
656
|
-
- 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.
|
|
657
|
-
- 9d94f7e: ZERO-2820: update parent pk usage for menu generator
|
|
658
|
-
- 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
|
|
659
|
-
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
660
|
-
- 0d3a913e: ZERO-2725: Update decimal scale in Price component
|
|
661
|
-
- 1448a96e: ZERO-2612: add errors type in CheckoutState
|
|
662
|
-
- 1ec2e9d: ZERO-2895: Update app-fetch to include cookies in headers
|
|
663
|
-
- d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
|
|
664
|
-
- d3474c64: ZERO-2655: Add data source shipping option
|
|
665
|
-
- 75080fd6: ZERO-2630: Add max limit to postcode area
|
|
666
|
-
- 17f8752: ZERO-2816: Make the incoming currency lowercase
|
|
667
|
-
- c45b62c: ZERO-2818: Add upload and download support for b2b package
|
|
668
|
-
- 91265bba: ZERO-2551: Improve pretty url and caching performance
|
|
669
|
-
- bbe18b9f: ZERO-2575: Fix build error
|
|
670
|
-
- d4099960: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
|
|
671
|
-
- 4920742: Disable getCachedTranslations
|
|
672
|
-
- 12a873e: ZERO-2846:Edit the siteKey regex in the response from GetCaptcha
|
|
673
|
-
- 7e56d6b: ZERO-2841: Update api tagTypes
|
|
674
|
-
- 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
|
|
675
|
-
- 98bb8dcd: ZERO-2706: Cache getTranlations method
|
|
676
|
-
- 46b7aad7: ZERO-2775: Add condition and logger for menuitemmodel data
|
|
677
|
-
- dcc8a150: ZERO-2694: added build step to RC branch pipeline
|
|
678
|
-
- 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
|
|
679
|
-
- fad27689: ZERO-2739: add gpay to payment plugin map
|
|
680
|
-
- dff0d595: ZERO-2659: add formData support to proxy api requests
|
|
681
|
-
- fdd0b41: ZERO-2706: Add optimized translation support
|
|
682
|
-
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
683
|
-
- f2c325c: ZERO-2838: Move file input component into @akinon/next
|
|
684
|
-
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
685
|
-
- beb499e6: ZERO-2551: Add new tsconfig paths
|
|
686
|
-
- 146ea391: ZERO-2774: Update imports
|
|
687
|
-
- f2c92d5: ZERO-2816: Update cookie name
|
|
688
|
-
- 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
689
|
-
- c47be30d: ZERO-2744: Update Order and OrderItem types
|
|
690
|
-
- e9a46acb: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
691
|
-
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
692
|
-
- b9273fd: ZERO-2889: add host headers to requests
|
|
693
|
-
- 49eeebf: ZERO-2909: Add deleteCollectionItem query to wishlistApi
|
|
694
|
-
- 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
695
|
-
- c670bd4: ZERO-2900: Add middleware rewrite functionality
|
|
696
|
-
- 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
|
|
697
|
-
- 3d35f70: ZERO-2908: Add cookie to redirect url
|
|
698
|
-
|
|
699
|
-
## 1.50.0-rc.1
|
|
700
|
-
|
|
701
|
-
### Minor Changes
|
|
702
|
-
|
|
703
|
-
- 49eeebf: ZERO-2909: Add deleteCollectionItem query to wishlistApi
|
|
704
|
-
|
|
705
|
-
## 1.50.0-rc.0
|
|
706
|
-
|
|
707
|
-
### Minor Changes
|
|
708
|
-
|
|
709
|
-
- 90282b53: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
710
|
-
- 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
|
|
711
|
-
- 5dfeea0: ZERO-2801: Revert ZERO-2801
|
|
712
|
-
- a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
|
|
713
|
-
- fda5b927: ZERO-2725: fix invalid import
|
|
714
|
-
- 2d9b2b2: ZERO-2816: Add segment to headers
|
|
715
|
-
- c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
716
|
-
- d93a507: ZERO-2900: Fix pretty url rewrite
|
|
717
|
-
- 8d9ac9a: ZERO-2794: Add field to order type
|
|
718
261
|
- eaf97d6: ZERO-2909: Add deleteCollectionItem query to wishlistApi
|
|
719
|
-
- 70279e7: ZERO-2817: Add metrics endpoint in default middleware
|
|
720
|
-
- 6c25f66: ZERO-2551: Check CACHE_HOST variable
|
|
721
|
-
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
722
|
-
- 3bf2dd9: ZERO-2551: Fix search page
|
|
723
|
-
- e9541a1: ZERO-2816: Add headers to url
|
|
724
|
-
- 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.
|
|
725
|
-
- 9d94f7e: ZERO-2820: update parent pk usage for menu generator
|
|
726
|
-
- 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
|
|
727
|
-
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
728
|
-
- 0d3a913e: ZERO-2725: Update decimal scale in Price component
|
|
729
|
-
- 1448a96e: ZERO-2612: add errors type in CheckoutState
|
|
730
|
-
- 1ec2e9d: ZERO-2895: Update app-fetch to include cookies in headers
|
|
731
|
-
- d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
|
|
732
|
-
- d3474c64: ZERO-2655: Add data source shipping option
|
|
733
|
-
- 75080fd6: ZERO-2630: Add max limit to postcode area
|
|
734
|
-
- 17f8752: ZERO-2816: Make the incoming currency lowercase
|
|
735
|
-
- c45b62c: ZERO-2818: Add upload and download support for b2b package
|
|
736
|
-
- 91265bba: ZERO-2551: Improve pretty url and caching performance
|
|
737
|
-
- bbe18b9f: ZERO-2575: Fix build error
|
|
738
|
-
- d4099960: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
|
|
739
|
-
- 4920742: Disable getCachedTranslations
|
|
740
|
-
- 12a873e: ZERO-2846:Edit the siteKey regex in the response from GetCaptcha
|
|
741
|
-
- 7e56d6b: ZERO-2841: Update api tagTypes
|
|
742
|
-
- 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
|
|
743
|
-
- 98bb8dcd: ZERO-2706: Cache getTranlations method
|
|
744
|
-
- 46b7aad7: ZERO-2775: Add condition and logger for menuitemmodel data
|
|
745
|
-
- dcc8a150: ZERO-2694: added build step to RC branch pipeline
|
|
746
|
-
- 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
|
|
747
|
-
- fad27689: ZERO-2739: add gpay to payment plugin map
|
|
748
|
-
- dff0d595: ZERO-2659: add formData support to proxy api requests
|
|
749
|
-
- fdd0b41: ZERO-2706: Add optimized translation support
|
|
750
|
-
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
751
|
-
- f2c325c: ZERO-2838: Move file input component into @akinon/next
|
|
752
|
-
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
753
|
-
- beb499e6: ZERO-2551: Add new tsconfig paths
|
|
754
|
-
- 146ea391: ZERO-2774: Update imports
|
|
755
|
-
- f2c92d5: ZERO-2816: Update cookie name
|
|
756
|
-
- 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
757
|
-
- c47be30d: ZERO-2744: Update Order and OrderItem types
|
|
758
|
-
- e9a46acb: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
759
|
-
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
760
|
-
- b9273fd: ZERO-2889: add host headers to requests
|
|
761
|
-
- 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
762
|
-
- c670bd4: ZERO-2900: Add middleware rewrite functionality
|
|
763
|
-
- 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
|
|
764
262
|
|
|
765
263
|
## 1.49.0
|
|
766
264
|
|
|
@@ -786,126 +284,7 @@
|
|
|
786
284
|
|
|
787
285
|
### Minor Changes
|
|
788
286
|
|
|
789
|
-
- 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
790
|
-
- 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
|
|
791
|
-
- a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
|
|
792
|
-
- fda5b92: ZERO-2725: fix invalid import
|
|
793
|
-
- 2d9b2b2: ZERO-2816: Add segment to headers
|
|
794
|
-
- c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
795
|
-
- 8d9ac9a: ZERO-2794: Add field to order type
|
|
796
|
-
- 70279e7: ZERO-2817: Add metrics endpoint in default middleware
|
|
797
|
-
- 6c25f66: ZERO-2551: Check CACHE_HOST variable
|
|
798
|
-
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
799
|
-
- 3bf2dd9: ZERO-2551: Fix search page
|
|
800
|
-
- e9541a1: ZERO-2816: Add headers to url
|
|
801
|
-
- 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.
|
|
802
|
-
- 9d94f7e: ZERO-2820: update parent pk usage for menu generator
|
|
803
|
-
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
804
|
-
- 0d3a913: ZERO-2725: Update decimal scale in Price component
|
|
805
|
-
- 1448a96e: ZERO-2612: add errors type in CheckoutState
|
|
806
|
-
- d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
|
|
807
|
-
- d3474c6: ZERO-2655: Add data source shipping option
|
|
808
|
-
- 75080fd6: ZERO-2630: Add max limit to postcode area
|
|
809
|
-
- 17f8752: ZERO-2816: Make the incoming currency lowercase
|
|
810
|
-
- c45b62c: ZERO-2818: Add upload and download support for b2b package
|
|
811
|
-
- 91265bba: ZERO-2551: Improve pretty url and caching performance
|
|
812
|
-
- bbe18b9f: ZERO-2575: Fix build error
|
|
813
|
-
- d409996: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
|
|
814
|
-
- 4920742: Disable getCachedTranslations
|
|
815
|
-
- 7e56d6b: ZERO-2841: Update api tagTypes
|
|
816
|
-
- 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
|
|
817
|
-
- 98bb8dc: ZERO-2706: Cache getTranlations method
|
|
818
|
-
- 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
|
|
819
|
-
- dcc8a15: ZERO-2694: added build step to RC branch pipeline
|
|
820
|
-
- 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
|
|
821
|
-
- fad2768: ZERO-2739: add gpay to payment plugin map
|
|
822
|
-
- dff0d595: ZERO-2659: add formData support to proxy api requests
|
|
823
|
-
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
824
|
-
- f2c325c: ZERO-2838: Move file input component into @akinon/next
|
|
825
|
-
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
826
|
-
- beb499e6: ZERO-2551: Add new tsconfig paths
|
|
827
|
-
- 948eb42: ZERO-2852: Add out of stock endpoints
|
|
828
|
-
- 146ea39: ZERO-2774: Update imports
|
|
829
|
-
- f2c92d5: ZERO-2816: Update cookie name
|
|
830
|
-
- 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
831
|
-
- c47be30: ZERO-2744: Update Order and OrderItem types
|
|
832
|
-
- e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
833
|
-
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
834
|
-
- 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
835
|
-
- 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
|
|
836
|
-
|
|
837
|
-
## 1.45.0-rc.4
|
|
838
|
-
|
|
839
|
-
### Minor Changes
|
|
840
|
-
|
|
841
|
-
- 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
|
|
842
|
-
|
|
843
|
-
## 1.45.0-rc.3
|
|
844
|
-
|
|
845
|
-
### Minor Changes
|
|
846
|
-
|
|
847
|
-
- 948eb42: ZERO-2852: Add out of stock endpoints
|
|
848
|
-
|
|
849
|
-
## 1.45.0-rc.2
|
|
850
|
-
|
|
851
|
-
### Minor Changes
|
|
852
|
-
|
|
853
|
-
- c45b62c: ZERO-2818: Add upload and download support for b2b package
|
|
854
|
-
- f2c325c: ZERO-2838: Move file input component into @akinon/next
|
|
855
|
-
|
|
856
|
-
## 1.45.0-rc.1
|
|
857
|
-
|
|
858
|
-
### Minor Changes
|
|
859
|
-
|
|
860
|
-
- 7e56d6b: ZERO-2841: Update api tagTypes
|
|
861
|
-
|
|
862
|
-
## 1.45.0-rc.0
|
|
863
|
-
|
|
864
|
-
### Minor Changes
|
|
865
|
-
|
|
866
|
-
- 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
867
|
-
- 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
|
|
868
|
-
- a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
|
|
869
|
-
- fda5b92: ZERO-2725: fix invalid import
|
|
870
|
-
- 2d9b2b2: ZERO-2816: Add segment to headers
|
|
871
|
-
- c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
872
|
-
- 8d9ac9a: ZERO-2794: Add field to order type
|
|
873
|
-
- 70279e7: ZERO-2817: Add metrics endpoint in default middleware
|
|
874
|
-
- 6c25f66: ZERO-2551: Check CACHE_HOST variable
|
|
875
|
-
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
876
|
-
- 3bf2dd9: ZERO-2551: Fix search page
|
|
877
|
-
- e9541a1: ZERO-2816: Add headers to url
|
|
878
|
-
- 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.
|
|
879
|
-
- 9d94f7e: ZERO-2820: update parent pk usage for menu generator
|
|
880
|
-
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
881
|
-
- 0d3a913: ZERO-2725: Update decimal scale in Price component
|
|
882
|
-
- 1448a96: ZERO-2612: add errors type in CheckoutState
|
|
883
287
|
- 2ab6e08: ZERO-2841: Update getBasketDetail query
|
|
884
|
-
- d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
|
|
885
|
-
- d3474c6: ZERO-2655: Add data source shipping option
|
|
886
|
-
- 75080fd: ZERO-2630: Add max limit to postcode area
|
|
887
|
-
- 17f8752: ZERO-2816: Make the incoming currency lowercase
|
|
888
|
-
- 91265bb: ZERO-2551: Improve pretty url and caching performance
|
|
889
|
-
- bbe18b9: ZERO-2575: Fix build error
|
|
890
|
-
- d409996: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
|
|
891
|
-
- 4920742: Disable getCachedTranslations
|
|
892
|
-
- 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
|
|
893
|
-
- 98bb8dc: ZERO-2706: Cache getTranlations method
|
|
894
|
-
- 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
|
|
895
|
-
- dcc8a15: ZERO-2694: added build step to RC branch pipeline
|
|
896
|
-
- fad2768: ZERO-2739: add gpay to payment plugin map
|
|
897
|
-
- dff0d59: ZERO-2659: add formData support to proxy api requests
|
|
898
|
-
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
899
|
-
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
900
|
-
- beb499e: ZERO-2551: Add new tsconfig paths
|
|
901
|
-
- 146ea39: ZERO-2774: Update imports
|
|
902
|
-
- f2c92d5: ZERO-2816: Update cookie name
|
|
903
|
-
- 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
904
|
-
- c47be30: ZERO-2744: Update Order and OrderItem types
|
|
905
|
-
- e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
906
|
-
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
907
|
-
- 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
908
|
-
- 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
|
|
909
288
|
|
|
910
289
|
## 1.44.0
|
|
911
290
|
|
|
@@ -913,201 +292,7 @@
|
|
|
913
292
|
|
|
914
293
|
### Minor Changes
|
|
915
294
|
|
|
916
|
-
- 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
917
|
-
- 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
|
|
918
|
-
- a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
|
|
919
|
-
- fda5b92: ZERO-2725: fix invalid import
|
|
920
|
-
- 2d9b2b2: ZERO-2816: Add segment to headers
|
|
921
|
-
- c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
922
|
-
- 8d9ac9a: ZERO-2794: Add field to order type
|
|
923
|
-
- 70279e7: ZERO-2817: Add metrics endpoint in default middleware
|
|
924
|
-
- 6c25f66: ZERO-2551: Check CACHE_HOST variable
|
|
925
|
-
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
926
|
-
- 3bf2dd9: ZERO-2551: Fix search page
|
|
927
|
-
- e9541a1: ZERO-2816: Add headers to url
|
|
928
|
-
- 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.
|
|
929
|
-
- 9d94f7e: ZERO-2820: update parent pk usage for menu generator
|
|
930
|
-
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
931
|
-
- 0d3a913: ZERO-2725: Update decimal scale in Price component
|
|
932
|
-
- 1448a96: ZERO-2612: add errors type in CheckoutState
|
|
933
|
-
- d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
|
|
934
|
-
- d3474c6: ZERO-2655: Add data source shipping option
|
|
935
|
-
- 75080fd: ZERO-2630: Add max limit to postcode area
|
|
936
|
-
- 17f8752: ZERO-2816: Make the incoming currency lowercase
|
|
937
|
-
- 91265bb: ZERO-2551: Improve pretty url and caching performance
|
|
938
|
-
- bbe18b9: ZERO-2575: Fix build error
|
|
939
|
-
- d409996: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
|
|
940
|
-
- 4920742: Disable getCachedTranslations
|
|
941
|
-
- 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
|
|
942
|
-
- 98bb8dc: ZERO-2706: Cache getTranlations method
|
|
943
|
-
- 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
|
|
944
|
-
- dcc8a15: ZERO-2694: added build step to RC branch pipeline
|
|
945
|
-
- fad2768: ZERO-2739: add gpay to payment plugin map
|
|
946
|
-
- dff0d59: ZERO-2659: add formData support to proxy api requests
|
|
947
|
-
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
948
|
-
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
949
|
-
- beb499e: ZERO-2551: Add new tsconfig paths
|
|
950
|
-
- 146ea39: ZERO-2774: Update imports
|
|
951
|
-
- f2c92d5: ZERO-2816: Update cookie name
|
|
952
|
-
- 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
953
|
-
- c47be30: ZERO-2744: Update Order and OrderItem types
|
|
954
|
-
- e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
955
|
-
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
956
|
-
- 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
957
|
-
- 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
|
|
958
|
-
|
|
959
|
-
## 1.43.0-rc.15
|
|
960
|
-
|
|
961
|
-
## 1.43.0-rc.14
|
|
962
|
-
|
|
963
|
-
### Minor Changes
|
|
964
|
-
|
|
965
|
-
- 3bf2dd9: ZERO-2551: Fix search page
|
|
966
|
-
|
|
967
|
-
## 1.43.0-rc.13
|
|
968
|
-
|
|
969
|
-
### Minor Changes
|
|
970
|
-
|
|
971
|
-
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
972
|
-
|
|
973
|
-
## 1.43.0-rc.12
|
|
974
|
-
|
|
975
|
-
### Minor Changes
|
|
976
|
-
|
|
977
|
-
- 4920742: Disable getCachedTranslations
|
|
978
|
-
|
|
979
|
-
## 1.43.0-rc.11
|
|
980
|
-
|
|
981
|
-
### Minor Changes
|
|
982
|
-
|
|
983
|
-
- 6c25f66: ZERO-2551: Check CACHE_HOST variable
|
|
984
|
-
|
|
985
|
-
## 1.43.0-rc.10
|
|
986
|
-
|
|
987
|
-
### Minor Changes
|
|
988
|
-
|
|
989
|
-
- d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
|
|
990
|
-
|
|
991
|
-
## 1.43.0-rc.9
|
|
992
|
-
|
|
993
|
-
### Minor Changes
|
|
994
|
-
|
|
995
|
-
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
996
|
-
|
|
997
|
-
## 1.43.0-rc.8
|
|
998
|
-
|
|
999
|
-
### Minor Changes
|
|
1000
|
-
|
|
1001
|
-
- 70279e7: ZERO-2817: Add metrics endpoint in default middleware
|
|
1002
|
-
- 9d94f7e: ZERO-2820: update parent pk usage for menu generator
|
|
1003
|
-
|
|
1004
|
-
## 1.43.0-rc.7
|
|
1005
|
-
|
|
1006
|
-
### Minor Changes
|
|
1007
|
-
|
|
1008
|
-
- 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
1009
|
-
|
|
1010
|
-
## 1.43.0-rc.6
|
|
1011
|
-
|
|
1012
|
-
### Minor Changes
|
|
1013
|
-
|
|
1014
|
-
- 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
1015
|
-
- 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
|
|
1016
|
-
- a4c8d6a: ZERO-2663: Fix the image url for gif and svgs and return them without options
|
|
1017
|
-
- fda5b92: ZERO-2725: fix invalid import
|
|
1018
|
-
- 2d9b2b2: ZERO-2816: Add segment to headers
|
|
1019
|
-
- c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
1020
|
-
- 8d9ac9a: ZERO-2794: Add field to order type
|
|
1021
|
-
- e9541a1: ZERO-2816: Add headers to url
|
|
1022
|
-
- 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.
|
|
1023
|
-
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
1024
|
-
- 0d3a913: ZERO-2725: Update decimal scale in Price component
|
|
1025
|
-
- 1448a96: ZERO-2612: add errors type in CheckoutState
|
|
1026
|
-
- d3474c6: ZERO-2655: Add data source shipping option
|
|
1027
|
-
- 75080fd: ZERO-2630: Add max limit to postcode area
|
|
1028
|
-
- 17f8752: ZERO-2816: Make the incoming currency lowercase
|
|
1029
|
-
- 91265bb: ZERO-2551: Improve pretty url and caching performance
|
|
1030
|
-
- bbe18b9: ZERO-2575: Fix build error
|
|
1031
|
-
- d409996: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
|
|
1032
|
-
- 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
|
|
1033
|
-
- 98bb8dc: ZERO-2706: Cache getTranlations method
|
|
1034
|
-
- 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
|
|
1035
|
-
- dcc8a15: ZERO-2694: added build step to RC branch pipeline
|
|
1036
|
-
- fad2768: ZERO-2739: add gpay to payment plugin map
|
|
1037
|
-
- dff0d59: ZERO-2659: add formData support to proxy api requests
|
|
1038
|
-
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
1039
295
|
- 4a163f2: ZERO-2761: Add condition for basket summary
|
|
1040
|
-
- beb499e: ZERO-2551: Add new tsconfig paths
|
|
1041
|
-
- 146ea39: ZERO-2774: Update imports
|
|
1042
|
-
- f2c92d5: ZERO-2816: Update cookie name
|
|
1043
|
-
- c47be30: ZERO-2744: Update Order and OrderItem types
|
|
1044
|
-
- e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
1045
|
-
- f046f8e: ZERO-2575: update version for react-number-format
|
|
1046
|
-
- 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
1047
|
-
- 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
|
|
1048
|
-
|
|
1049
|
-
## 1.43.0-rc.5
|
|
1050
|
-
|
|
1051
|
-
### Minor Changes
|
|
1052
|
-
|
|
1053
|
-
- 17f8752: ZERO-2816: Make the incoming currency lowercase
|
|
1054
|
-
|
|
1055
|
-
## 1.43.0-rc.4
|
|
1056
|
-
|
|
1057
|
-
### Minor Changes
|
|
1058
|
-
|
|
1059
|
-
- 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
|
|
1060
|
-
|
|
1061
|
-
## 1.43.0-rc.3
|
|
1062
|
-
|
|
1063
|
-
### Minor Changes
|
|
1064
|
-
|
|
1065
|
-
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
1066
|
-
|
|
1067
|
-
## 1.43.0-rc.2
|
|
1068
|
-
|
|
1069
|
-
### Minor Changes
|
|
1070
|
-
|
|
1071
|
-
- f2c92d5: ZERO-2816: Update cookie name
|
|
1072
|
-
|
|
1073
|
-
## 1.43.0-rc.1
|
|
1074
|
-
|
|
1075
|
-
### Minor Changes
|
|
1076
|
-
|
|
1077
|
-
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
1078
|
-
|
|
1079
|
-
## 1.43.0-rc.0
|
|
1080
|
-
|
|
1081
|
-
### Minor Changes
|
|
1082
|
-
|
|
1083
|
-
- 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
1084
|
-
- 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
|
|
1085
|
-
- a4c8d6a: ZERO-2663: Fix the image url for gif and svgs and return them without options
|
|
1086
|
-
- fda5b92: ZERO-2725: fix invalid import
|
|
1087
|
-
- 2d9b2b2: ZERO-2816: Add segment to headers
|
|
1088
|
-
- c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
1089
|
-
- 8d9ac9a: ZERO-2794: Add field to order type
|
|
1090
|
-
- e9541a1: ZERO-2816: Add headers to url
|
|
1091
|
-
- 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.
|
|
1092
|
-
- 0d3a913: ZERO-2725: Update decimal scale in Price component
|
|
1093
|
-
- 1448a96: ZERO-2612: add errors type in CheckoutState
|
|
1094
|
-
- d3474c6: ZERO-2655: Add data source shipping option
|
|
1095
|
-
- 75080fd: ZERO-2630: Add max limit to postcode area
|
|
1096
|
-
- 91265bb: ZERO-2551: Improve pretty url and caching performance
|
|
1097
|
-
- bbe18b9: ZERO-2575: Fix build error
|
|
1098
|
-
- d409996: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
|
|
1099
|
-
- 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
|
|
1100
|
-
- 98bb8dc: ZERO-2706: Cache getTranlations method
|
|
1101
|
-
- 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
|
|
1102
|
-
- dcc8a15: ZERO-2694: added build step to RC branch pipeline
|
|
1103
|
-
- fad2768: ZERO-2739: add gpay to payment plugin map
|
|
1104
|
-
- dff0d59: ZERO-2659: add formData support to proxy api requests
|
|
1105
|
-
- beb499e: ZERO-2551: Add new tsconfig paths
|
|
1106
|
-
- 146ea39: ZERO-2774: Update imports
|
|
1107
|
-
- c47be30: ZERO-2744: Update Order and OrderItem types
|
|
1108
|
-
- e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
1109
|
-
- f046f8e: ZERO-2575: update version for react-number-format
|
|
1110
|
-
- 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
1111
296
|
|
|
1112
297
|
## 1.42.0
|
|
1113
298
|
|