@akinon/next 1.74.0 → 1.75.0-rc.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +750 -0
- package/components/input.tsx +2 -0
- package/components/link.tsx +16 -12
- package/components/pagination.tsx +156 -67
- package/components/web-vitals.tsx +4 -2
- package/data/client/account.ts +26 -2
- package/data/client/basket.ts +15 -0
- package/data/client/checkout.ts +6 -3
- package/data/server/basket.ts +72 -0
- package/data/server/flatpage.ts +8 -4
- package/data/server/form.ts +12 -4
- package/data/server/landingpage.ts +8 -4
- package/data/server/menu.ts +7 -2
- package/data/server/product.ts +15 -4
- package/data/server/seo.ts +11 -4
- package/data/server/widget.ts +19 -4
- package/data/urls.ts +14 -4
- package/hocs/server/with-segment-defaults.tsx +5 -2
- package/instrumentation/index.ts +7 -0
- package/lib/cache-handler.mjs +2 -2
- package/lib/cache.ts +2 -0
- package/middlewares/complete-gpay.ts +2 -1
- package/middlewares/complete-masterpass.ts +2 -1
- package/middlewares/default.ts +3 -1
- package/middlewares/redirection-payment.ts +2 -1
- package/middlewares/saved-card-redirection.ts +2 -1
- package/middlewares/three-d-redirection.ts +2 -1
- package/package.json +3 -3
- package/redux/middlewares/checkout.ts +5 -6
- package/types/commerce/order.ts +1 -0
- package/types/index.ts +10 -0
- package/utils/app-fetch.ts +2 -2
- package/utils/index.ts +1 -1
- package/with-pz-config.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,43 @@
|
|
|
1
1
|
# @akinon/next
|
|
2
2
|
|
|
3
|
+
## 1.75.0-rc.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 5dfeea04: ZERO-2801: Revert ZERO-2801
|
|
8
|
+
- 81248a14: ZERO-3024: Refactor urlLocaleMatcherRegex to include lookahead assertion
|
|
9
|
+
- 2d9b2b2c: ZERO-2816: Add segment to headers
|
|
10
|
+
- cc538c6a: ZERO-3048: Update hepsiPayMiddleware to use Success flag for availability check
|
|
11
|
+
- 663bda9b: ZERO-2990: Refactor account API to include shipping option slug in getOrders query
|
|
12
|
+
- f49bb74f: ZERO-3097: Add setCookie to logging in payment redirection middlewares
|
|
13
|
+
- e9541a13: ZERO-2816: Add headers to url
|
|
14
|
+
- 94eb8252: ZERO-3069: Add selectNameSpaceMainBasket mutation
|
|
15
|
+
- 4d3deb4f: ZERO-2935: sentry 8 upgrade
|
|
16
|
+
- 72fd4d67: ZERO-3084: Fix URL search parameters encoding in default middleware
|
|
17
|
+
- 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.
|
|
18
|
+
- 64699d3f: ZERO-2761: Fix invalid import for plugin module
|
|
19
|
+
- 999168d6: ZERO-3104: Remove local cache handler from CacheHandler initialization
|
|
20
|
+
- 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
|
|
21
|
+
- 17f87524: ZERO-2816: Make the incoming currency lowercase
|
|
22
|
+
- 65d3b862: ZERO-3054: Update headers in appFetch
|
|
23
|
+
- 30105142: ZERO-3011:add shipping_option_operator and custom filter to getOrders
|
|
24
|
+
- bbe18b9f: ZERO-2575: Fix build error
|
|
25
|
+
- 4920742c: Disable getCachedTranslations
|
|
26
|
+
- 37547c0a: ZERO-2957: Refactor checkout middleware to include payment options in iframe and deprecate exclusion option
|
|
27
|
+
- 7e56d6b6: ZERO-2841: Update api tagTypes
|
|
28
|
+
- 5a333a57: ZERO-3061: Add success parameter for completeWalletPage
|
|
29
|
+
- 43c182ee: ZERO-3054: Update Redis variable checks to conditionally include CACHE_SECRET
|
|
30
|
+
- ca774b39: ZERO-3002:add register with loyalty url
|
|
31
|
+
- 2d305aaf: ZERO-2935: Update Sentry configuration: remove hideSourceMaps option and add it to withPzConfig
|
|
32
|
+
- eeb20bea: Revert "ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing"
|
|
33
|
+
- f2c92d5c: ZERO-2816: Update cookie name
|
|
34
|
+
- 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
35
|
+
- fdd255ee: ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing
|
|
36
|
+
- 86a5a620: ZERO-3104: Add optional headers parameter to data fetching functions
|
|
37
|
+
- 49eeebfa: ZERO-2909: Add deleteCollectionItem query to wishlistApi
|
|
38
|
+
- 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
|
|
39
|
+
- 3344bca5: ZERO-3013: Enable web vitals tracking in settings.js
|
|
40
|
+
|
|
3
41
|
## 1.74.0
|
|
4
42
|
|
|
5
43
|
### Minor Changes
|
|
@@ -37,6 +75,52 @@
|
|
|
37
75
|
### Minor Changes
|
|
38
76
|
|
|
39
77
|
- f34454a: ZERO-2953: Add hepsipay payment method
|
|
78
|
+
- 3bfa12a: ZERO-3003:Add fetchLoyaltyData and setLoyaltyData requests to RTK
|
|
79
|
+
- 4d3deb4: ZERO-2935: sentry 8 upgrade
|
|
80
|
+
- 3010514: ZERO-3011:add shipping_option_operator and custom filter to getOrders
|
|
81
|
+
- 9a50730: ZERO-3015: Add currency parameter to getOrders query
|
|
82
|
+
- ca774b3: ZERO-3002:add register with loyalty url
|
|
83
|
+
- 56cdddc: ZERO-0000: SHOP-78125: Change unpaid_amount with total_amount_with_interest
|
|
84
|
+
- 3344bca: ZERO-3013: Enable web vitals tracking in settings.js
|
|
85
|
+
|
|
86
|
+
## 1.71.0-rc.7
|
|
87
|
+
|
|
88
|
+
## 1.71.0-rc.6
|
|
89
|
+
|
|
90
|
+
### Minor Changes
|
|
91
|
+
|
|
92
|
+
- f34454a: ZERO-2953: Add hepsipay payment method
|
|
93
|
+
|
|
94
|
+
## 1.71.0-rc.5
|
|
95
|
+
|
|
96
|
+
## 1.71.0-rc.4
|
|
97
|
+
|
|
98
|
+
## 1.71.0-rc.3
|
|
99
|
+
|
|
100
|
+
### Minor Changes
|
|
101
|
+
|
|
102
|
+
- 3344bca: ZERO-3013: Enable web vitals tracking in settings.js
|
|
103
|
+
|
|
104
|
+
## 1.71.0-rc.2
|
|
105
|
+
|
|
106
|
+
### Minor Changes
|
|
107
|
+
|
|
108
|
+
- 56cdddc: ZERO-0000: SHOP-78125: Change unpaid_amount with total_amount_with_interest
|
|
109
|
+
|
|
110
|
+
## 1.71.0-rc.1
|
|
111
|
+
|
|
112
|
+
### Minor Changes
|
|
113
|
+
|
|
114
|
+
- 9a50730: ZERO-3015: Add currency parameter to getOrders query
|
|
115
|
+
|
|
116
|
+
## 1.71.0-rc.0
|
|
117
|
+
|
|
118
|
+
### Minor Changes
|
|
119
|
+
|
|
120
|
+
- 3bfa12a: ZERO-3003:Add fetchLoyaltyData and setLoyaltyData requests to RTK
|
|
121
|
+
- 4d3deb4: ZERO-2935: sentry 8 upgrade
|
|
122
|
+
- 3010514: ZERO-3011:add shipping_option_operator and custom filter to getOrders
|
|
123
|
+
- ca774b3: ZERO-3002:add register with loyalty url
|
|
40
124
|
|
|
41
125
|
## 1.70.0
|
|
42
126
|
|
|
@@ -48,12 +132,72 @@
|
|
|
48
132
|
|
|
49
133
|
### Minor Changes
|
|
50
134
|
|
|
135
|
+
- 3bfa12a: ZERO-3003:Add fetchLoyaltyData and setLoyaltyData requests to RTK
|
|
136
|
+
- 4d3deb4: ZERO-2935: sentry 8 upgrade
|
|
137
|
+
- 3010514: ZERO-3011:add shipping_option_operator and custom filter to getOrders
|
|
138
|
+
- ca774b3: ZERO-3002:add register with loyalty url
|
|
139
|
+
- f046f8e: ZERO-2575: update version for react-number-format
|
|
140
|
+
|
|
141
|
+
## 1.69.0-rc.8
|
|
142
|
+
|
|
143
|
+
### Minor Changes
|
|
144
|
+
|
|
145
|
+
- 3010514: ZERO-3011:add shipping_option_operator and custom filter to getOrders
|
|
146
|
+
- ca774b3: ZERO-3002:add register with loyalty url
|
|
147
|
+
|
|
148
|
+
## 1.69.0-rc.7
|
|
149
|
+
|
|
150
|
+
### Minor Changes
|
|
151
|
+
|
|
152
|
+
- 3bfa12a: ZERO-3003:Add fetchLoyaltyData and setLoyaltyData requests to RTK
|
|
153
|
+
|
|
154
|
+
## 1.69.0-rc.6
|
|
155
|
+
|
|
156
|
+
### Minor Changes
|
|
157
|
+
|
|
158
|
+
- 4d3deb4: ZERO-2935: sentry 8 upgrade
|
|
51
159
|
- 063da74: ZERO-3010: Remove pz-iyzico-saved-card package
|
|
52
160
|
- 72da021: ZERO-3010: Remove unused code in pretty-url.tsx
|
|
53
161
|
- 5632a99: ZERO-3010: Remove iyzicoSavedCardReducer from reducers
|
|
54
162
|
- cbdb0c8: ZERO-3010: Move pretty url page into project
|
|
55
163
|
- 80c869b: ZERO-3010: Remove savedCardMiddleware from redux middlewares
|
|
56
164
|
|
|
165
|
+
## 1.69.0-rc.5
|
|
166
|
+
|
|
167
|
+
### Minor Changes
|
|
168
|
+
|
|
169
|
+
- 80c869b: ZERO-3010: Remove savedCardMiddleware from redux middlewares
|
|
170
|
+
|
|
171
|
+
## 1.69.0-rc.4
|
|
172
|
+
|
|
173
|
+
### Minor Changes
|
|
174
|
+
|
|
175
|
+
- 063da74: ZERO-3010: Remove pz-iyzico-saved-card package
|
|
176
|
+
|
|
177
|
+
## 1.69.0-rc.3
|
|
178
|
+
|
|
179
|
+
### Minor Changes
|
|
180
|
+
|
|
181
|
+
- cbdb0c8: ZERO-3010: Move pretty url page into project
|
|
182
|
+
|
|
183
|
+
## 1.69.0-rc.2
|
|
184
|
+
|
|
185
|
+
### Minor Changes
|
|
186
|
+
|
|
187
|
+
- 5632a99: ZERO-3010: Remove iyzicoSavedCardReducer from reducers
|
|
188
|
+
|
|
189
|
+
## 1.69.0-rc.1
|
|
190
|
+
|
|
191
|
+
### Minor Changes
|
|
192
|
+
|
|
193
|
+
- 72da021: ZERO-3010: Remove unused code in pretty-url.tsx
|
|
194
|
+
|
|
195
|
+
## 1.69.0-rc.0
|
|
196
|
+
|
|
197
|
+
### Minor Changes
|
|
198
|
+
|
|
199
|
+
- 4d3deb4: ZERO-2935: sentry 8 upgrade
|
|
200
|
+
|
|
57
201
|
## 1.68.0
|
|
58
202
|
|
|
59
203
|
### Minor Changes
|
|
@@ -163,11 +307,183 @@
|
|
|
163
307
|
|
|
164
308
|
### Minor Changes
|
|
165
309
|
|
|
310
|
+
- c416d18: ZERO-2915: Add delivery option null check for setAddress
|
|
311
|
+
- 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
|
|
312
|
+
- 5dfeea0: ZERO-2801: Revert ZERO-2801
|
|
313
|
+
- a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
|
|
314
|
+
- fda5b927: ZERO-2725: fix invalid import
|
|
315
|
+
- 2d9b2b2c: ZERO-2816: Add segment to headers
|
|
316
|
+
- c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
317
|
+
- 6c25f66: ZERO-2551: Check CACHE_HOST variable
|
|
318
|
+
- bc2b4117: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
319
|
+
- 3bf2dd9: ZERO-2551: Fix search page
|
|
320
|
+
- e9541a13: ZERO-2816: Add headers to url
|
|
321
|
+
- 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.
|
|
322
|
+
- 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
|
|
323
|
+
- 64699d3f: ZERO-2761: Fix invalid import for plugin module
|
|
324
|
+
- 0d3a913e: ZERO-2725: Update decimal scale in Price component
|
|
325
|
+
- 7b05522: ZERO-2905: Fix resend and close button in otp package
|
|
326
|
+
- d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
|
|
327
|
+
- d3474c64: ZERO-2655: Add data source shipping option
|
|
328
|
+
- 17f87524: ZERO-2816: Make the incoming currency lowercase
|
|
329
|
+
- 29ead87: ZERO-2905: Fix resend and close button in otp package
|
|
330
|
+
- c45b62c: ZERO-2818: Add upload and download support for b2b package
|
|
331
|
+
- 91265bba: ZERO-2551: Improve pretty url and caching performance
|
|
332
|
+
- bbe18b9f: ZERO-2575: Fix build error
|
|
333
|
+
- d4099960: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
|
|
334
|
+
- 4920742: Disable getCachedTranslations
|
|
335
|
+
- 12a873e: ZERO-2846:Edit the siteKey regex in the response from GetCaptcha
|
|
336
|
+
- 7e56d6b: ZERO-2841: Update api tagTypes
|
|
337
|
+
- 94b69285: ZERO-2551: Add cache handler check in url-redirection middleware
|
|
338
|
+
- 98bb8dcd: ZERO-2706: Cache getTranlations method
|
|
339
|
+
- dcc8a150: ZERO-2694: added build step to RC branch pipeline
|
|
340
|
+
- 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
|
|
341
|
+
- fad27689: ZERO-2739: add gpay to payment plugin map
|
|
342
|
+
- dff0d595: ZERO-2659: add formData support to proxy api requests
|
|
343
|
+
- fdd0b41: ZERO-2706: Add optimized translation support
|
|
344
|
+
- f2c325c: ZERO-2838: Move file input component into @akinon/next
|
|
345
|
+
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
346
|
+
- beb499e6: ZERO-2551: Add new tsconfig paths
|
|
347
|
+
- f2c92d5c: ZERO-2816: Update cookie name
|
|
348
|
+
- 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
349
|
+
- f3d076b: ZERO-2864: create tabby extension plugin
|
|
350
|
+
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
351
|
+
- 49eeebf: ZERO-2909: Add deleteCollectionItem query to wishlistApi
|
|
352
|
+
- 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
353
|
+
- 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
|
|
354
|
+
|
|
355
|
+
## 1.56.0-rc.7
|
|
356
|
+
|
|
357
|
+
## 1.56.0-rc.6
|
|
358
|
+
|
|
359
|
+
### Minor Changes
|
|
360
|
+
|
|
361
|
+
- f3d076b: ZERO-2864: create tabby extension plugin
|
|
362
|
+
|
|
363
|
+
## 1.56.0-rc.5
|
|
364
|
+
|
|
365
|
+
### Minor Changes
|
|
366
|
+
|
|
367
|
+
- c416d18: ZERO-2915: Add delivery option null check for setAddress
|
|
368
|
+
|
|
369
|
+
## 1.56.0-rc.4
|
|
370
|
+
|
|
371
|
+
### Minor Changes
|
|
372
|
+
|
|
373
|
+
- 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
|
|
374
|
+
- 5dfeea0: ZERO-2801: Revert ZERO-2801
|
|
375
|
+
- a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
|
|
376
|
+
- fda5b927: ZERO-2725: fix invalid import
|
|
377
|
+
- 2d9b2b2c: ZERO-2816: Add segment to headers
|
|
378
|
+
- c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
166
379
|
- d93a507: ZERO-2900: Fix pretty url rewrite
|
|
380
|
+
- 6c25f66: ZERO-2551: Check CACHE_HOST variable
|
|
381
|
+
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
382
|
+
- 3bf2dd9: ZERO-2551: Fix search page
|
|
383
|
+
- e9541a13: ZERO-2816: Add headers to url
|
|
384
|
+
- 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.
|
|
385
|
+
- 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
|
|
386
|
+
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
387
|
+
- 0d3a913e: ZERO-2725: Update decimal scale in Price component
|
|
388
|
+
- 7b05522: ZERO-2905: Fix resend and close button in otp package
|
|
389
|
+
- d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
|
|
390
|
+
- d3474c64: ZERO-2655: Add data source shipping option
|
|
391
|
+
- 17f8752: ZERO-2816: Make the incoming currency lowercase
|
|
392
|
+
- 29ead87: ZERO-2905: Fix resend and close button in otp package
|
|
393
|
+
- c45b62c: ZERO-2818: Add upload and download support for b2b package
|
|
394
|
+
- 91265bba: ZERO-2551: Improve pretty url and caching performance
|
|
395
|
+
- bbe18b9f: ZERO-2575: Fix build error
|
|
396
|
+
- d4099960: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
|
|
397
|
+
- 4920742: Disable getCachedTranslations
|
|
398
|
+
- 12a873e: ZERO-2846:Edit the siteKey regex in the response from GetCaptcha
|
|
167
399
|
- 674badc: ZERO-2912: Fix selected payment option view to handle null values
|
|
400
|
+
- 7e56d6b: ZERO-2841: Update api tagTypes
|
|
401
|
+
- 94b69285: ZERO-2551: Add cache handler check in url-redirection middleware
|
|
402
|
+
- 98bb8dcd: ZERO-2706: Cache getTranlations method
|
|
168
403
|
- 207ac6e: ZERO-2917: Add OrderSelectionPage endpoint
|
|
404
|
+
- dcc8a150: ZERO-2694: added build step to RC branch pipeline
|
|
405
|
+
- 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
|
|
406
|
+
- fad27689: ZERO-2739: add gpay to payment plugin map
|
|
407
|
+
- dff0d595: ZERO-2659: add formData support to proxy api requests
|
|
408
|
+
- fdd0b41: ZERO-2706: Add optimized translation support
|
|
409
|
+
- f2c325c: ZERO-2838: Move file input component into @akinon/next
|
|
410
|
+
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
411
|
+
- beb499e6: ZERO-2551: Add new tsconfig paths
|
|
412
|
+
- f2c92d5c: ZERO-2816: Update cookie name
|
|
413
|
+
- 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
414
|
+
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
169
415
|
- b9273fd: ZERO-2889: add host headers to requests
|
|
416
|
+
- 49eeebf: ZERO-2909: Add deleteCollectionItem query to wishlistApi
|
|
417
|
+
- 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
170
418
|
- c670bd4: ZERO-2900: Add middleware rewrite functionality
|
|
419
|
+
- 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
|
|
420
|
+
|
|
421
|
+
## 1.56.0-rc.3
|
|
422
|
+
|
|
423
|
+
### Minor Changes
|
|
424
|
+
|
|
425
|
+
- 674badc: ZERO-2912: Fix selected payment option view to handle null values
|
|
426
|
+
|
|
427
|
+
## 1.56.0-rc.2
|
|
428
|
+
|
|
429
|
+
### Minor Changes
|
|
430
|
+
|
|
431
|
+
- 7b05522: ZERO-2905: Fix resend and close button in otp package
|
|
432
|
+
- 29ead87: ZERO-2905: Fix resend and close button in otp package
|
|
433
|
+
|
|
434
|
+
## 1.56.0-rc.1
|
|
435
|
+
|
|
436
|
+
### Minor Changes
|
|
437
|
+
|
|
438
|
+
- 207ac6e: ZERO-2917: Add OrderSelectionPage endpoint
|
|
439
|
+
|
|
440
|
+
## 1.56.0-rc.0
|
|
441
|
+
|
|
442
|
+
### Minor Changes
|
|
443
|
+
|
|
444
|
+
- 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
|
|
445
|
+
- 5dfeea0: ZERO-2801: Revert ZERO-2801
|
|
446
|
+
- a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
|
|
447
|
+
- fda5b927: ZERO-2725: fix invalid import
|
|
448
|
+
- 2d9b2b2c: ZERO-2816: Add segment to headers
|
|
449
|
+
- c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
450
|
+
- d93a507: ZERO-2900: Fix pretty url rewrite
|
|
451
|
+
- 6c25f666: ZERO-2551: Check CACHE_HOST variable
|
|
452
|
+
- bc2b4117: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
453
|
+
- 3bf2dd94: ZERO-2551: Fix search page
|
|
454
|
+
- e9541a13: ZERO-2816: Add headers to url
|
|
455
|
+
- 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.
|
|
456
|
+
- 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
|
|
457
|
+
- 64699d3f: ZERO-2761: Fix invalid import for plugin module
|
|
458
|
+
- 0d3a913e: ZERO-2725: Update decimal scale in Price component
|
|
459
|
+
- d6edb1d0: ZERO-2551: Fix searchparams handling for list and other routes
|
|
460
|
+
- d3474c64: ZERO-2655: Add data source shipping option
|
|
461
|
+
- 17f87524: ZERO-2816: Make the incoming currency lowercase
|
|
462
|
+
- c45b62c9: ZERO-2818: Add upload and download support for b2b package
|
|
463
|
+
- 91265bba: ZERO-2551: Improve pretty url and caching performance
|
|
464
|
+
- bbe18b9f: ZERO-2575: Fix build error
|
|
465
|
+
- d4099960: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
|
|
466
|
+
- 4920742c: Disable getCachedTranslations
|
|
467
|
+
- 12a873e: ZERO-2846:Edit the siteKey regex in the response from GetCaptcha
|
|
468
|
+
- 7e56d6b6: ZERO-2841: Update api tagTypes
|
|
469
|
+
- 94b69285: ZERO-2551: Add cache handler check in url-redirection middleware
|
|
470
|
+
- 98bb8dcd: ZERO-2706: Cache getTranlations method
|
|
471
|
+
- dcc8a150: ZERO-2694: added build step to RC branch pipeline
|
|
472
|
+
- 8f47ccae: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
|
|
473
|
+
- fad27689: ZERO-2739: add gpay to payment plugin map
|
|
474
|
+
- dff0d595: ZERO-2659: add formData support to proxy api requests
|
|
475
|
+
- fdd0b41: ZERO-2706: Add optimized translation support
|
|
476
|
+
- f2c325c1: ZERO-2838: Move file input component into @akinon/next
|
|
477
|
+
- 9e25a64b: ZERO-2835: Update category page layout with breadcrumb
|
|
478
|
+
- beb499e6: ZERO-2551: Add new tsconfig paths
|
|
479
|
+
- f2c92d5c: ZERO-2816: Update cookie name
|
|
480
|
+
- 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
481
|
+
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
482
|
+
- b9273fd3: ZERO-2889: add host headers to requests
|
|
483
|
+
- 49eeebf: ZERO-2909: Add deleteCollectionItem query to wishlistApi
|
|
484
|
+
- 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
485
|
+
- c670bd48: ZERO-2900: Add middleware rewrite functionality
|
|
486
|
+
- 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
|
|
171
487
|
|
|
172
488
|
## 1.55.0
|
|
173
489
|
|
|
@@ -213,7 +529,128 @@
|
|
|
213
529
|
|
|
214
530
|
### Minor Changes
|
|
215
531
|
|
|
532
|
+
- 90282b53: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
533
|
+
- 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
|
|
534
|
+
- 5dfeea0: ZERO-2801: Revert ZERO-2801
|
|
535
|
+
- a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
|
|
536
|
+
- fda5b927: ZERO-2725: fix invalid import
|
|
537
|
+
- 2d9b2b2: ZERO-2816: Add segment to headers
|
|
538
|
+
- c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
539
|
+
- d93a507: ZERO-2900: Fix pretty url rewrite
|
|
540
|
+
- 8d9ac9a: ZERO-2794: Add field to order type
|
|
541
|
+
- 70279e7: ZERO-2817: Add metrics endpoint in default middleware
|
|
542
|
+
- 6c25f66: ZERO-2551: Check CACHE_HOST variable
|
|
543
|
+
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
544
|
+
- 3bf2dd9: ZERO-2551: Fix search page
|
|
545
|
+
- e9541a1: ZERO-2816: Add headers to url
|
|
546
|
+
- 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.
|
|
547
|
+
- 9d94f7e: ZERO-2820: update parent pk usage for menu generator
|
|
548
|
+
- 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
|
|
549
|
+
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
550
|
+
- 0d3a913e: ZERO-2725: Update decimal scale in Price component
|
|
551
|
+
- 1448a96e: ZERO-2612: add errors type in CheckoutState
|
|
552
|
+
- 1ec2e9d: ZERO-2895: Update app-fetch to include cookies in headers
|
|
553
|
+
- d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
|
|
554
|
+
- d3474c64: ZERO-2655: Add data source shipping option
|
|
555
|
+
- 75080fd6: ZERO-2630: Add max limit to postcode area
|
|
556
|
+
- 17f8752: ZERO-2816: Make the incoming currency lowercase
|
|
557
|
+
- c45b62c: ZERO-2818: Add upload and download support for b2b package
|
|
558
|
+
- 91265bba: ZERO-2551: Improve pretty url and caching performance
|
|
559
|
+
- bbe18b9f: ZERO-2575: Fix build error
|
|
560
|
+
- d4099960: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
|
|
561
|
+
- 4920742: Disable getCachedTranslations
|
|
562
|
+
- 12a873e: ZERO-2846:Edit the siteKey regex in the response from GetCaptcha
|
|
563
|
+
- 7e56d6b: ZERO-2841: Update api tagTypes
|
|
564
|
+
- 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
|
|
565
|
+
- 98bb8dcd: ZERO-2706: Cache getTranlations method
|
|
566
|
+
- 46b7aad7: ZERO-2775: Add condition and logger for menuitemmodel data
|
|
567
|
+
- dcc8a150: ZERO-2694: added build step to RC branch pipeline
|
|
568
|
+
- 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
|
|
569
|
+
- fad27689: ZERO-2739: add gpay to payment plugin map
|
|
570
|
+
- dff0d595: ZERO-2659: add formData support to proxy api requests
|
|
571
|
+
- fdd0b41: ZERO-2706: Add optimized translation support
|
|
572
|
+
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
573
|
+
- f2c325c: ZERO-2838: Move file input component into @akinon/next
|
|
574
|
+
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
575
|
+
- beb499e6: ZERO-2551: Add new tsconfig paths
|
|
576
|
+
- 146ea391: ZERO-2774: Update imports
|
|
577
|
+
- f2c92d5: ZERO-2816: Update cookie name
|
|
578
|
+
- 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
579
|
+
- c47be30d: ZERO-2744: Update Order and OrderItem types
|
|
580
|
+
- e9a46acb: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
581
|
+
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
582
|
+
- b9273fd: ZERO-2889: add host headers to requests
|
|
583
|
+
- 49eeebf: ZERO-2909: Add deleteCollectionItem query to wishlistApi
|
|
584
|
+
- 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
585
|
+
- c670bd4: ZERO-2900: Add middleware rewrite functionality
|
|
586
|
+
- 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
|
|
587
|
+
- 3d35f70: ZERO-2908: Add cookie to redirect url
|
|
588
|
+
|
|
589
|
+
## 1.50.0-rc.1
|
|
590
|
+
|
|
591
|
+
### Minor Changes
|
|
592
|
+
|
|
593
|
+
- 49eeebf: ZERO-2909: Add deleteCollectionItem query to wishlistApi
|
|
594
|
+
|
|
595
|
+
## 1.50.0-rc.0
|
|
596
|
+
|
|
597
|
+
### Minor Changes
|
|
598
|
+
|
|
599
|
+
- 90282b53: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
600
|
+
- 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
|
|
601
|
+
- 5dfeea0: ZERO-2801: Revert ZERO-2801
|
|
602
|
+
- a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
|
|
603
|
+
- fda5b927: ZERO-2725: fix invalid import
|
|
604
|
+
- 2d9b2b2: ZERO-2816: Add segment to headers
|
|
605
|
+
- c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
606
|
+
- d93a507: ZERO-2900: Fix pretty url rewrite
|
|
607
|
+
- 8d9ac9a: ZERO-2794: Add field to order type
|
|
216
608
|
- eaf97d6: ZERO-2909: Add deleteCollectionItem query to wishlistApi
|
|
609
|
+
- 70279e7: ZERO-2817: Add metrics endpoint in default middleware
|
|
610
|
+
- 6c25f66: ZERO-2551: Check CACHE_HOST variable
|
|
611
|
+
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
612
|
+
- 3bf2dd9: ZERO-2551: Fix search page
|
|
613
|
+
- e9541a1: ZERO-2816: Add headers to url
|
|
614
|
+
- 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.
|
|
615
|
+
- 9d94f7e: ZERO-2820: update parent pk usage for menu generator
|
|
616
|
+
- 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
|
|
617
|
+
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
618
|
+
- 0d3a913e: ZERO-2725: Update decimal scale in Price component
|
|
619
|
+
- 1448a96e: ZERO-2612: add errors type in CheckoutState
|
|
620
|
+
- 1ec2e9d: ZERO-2895: Update app-fetch to include cookies in headers
|
|
621
|
+
- d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
|
|
622
|
+
- d3474c64: ZERO-2655: Add data source shipping option
|
|
623
|
+
- 75080fd6: ZERO-2630: Add max limit to postcode area
|
|
624
|
+
- 17f8752: ZERO-2816: Make the incoming currency lowercase
|
|
625
|
+
- c45b62c: ZERO-2818: Add upload and download support for b2b package
|
|
626
|
+
- 91265bba: ZERO-2551: Improve pretty url and caching performance
|
|
627
|
+
- bbe18b9f: ZERO-2575: Fix build error
|
|
628
|
+
- d4099960: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
|
|
629
|
+
- 4920742: Disable getCachedTranslations
|
|
630
|
+
- 12a873e: ZERO-2846:Edit the siteKey regex in the response from GetCaptcha
|
|
631
|
+
- 7e56d6b: ZERO-2841: Update api tagTypes
|
|
632
|
+
- 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
|
|
633
|
+
- 98bb8dcd: ZERO-2706: Cache getTranlations method
|
|
634
|
+
- 46b7aad7: ZERO-2775: Add condition and logger for menuitemmodel data
|
|
635
|
+
- dcc8a150: ZERO-2694: added build step to RC branch pipeline
|
|
636
|
+
- 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
|
|
637
|
+
- fad27689: ZERO-2739: add gpay to payment plugin map
|
|
638
|
+
- dff0d595: ZERO-2659: add formData support to proxy api requests
|
|
639
|
+
- fdd0b41: ZERO-2706: Add optimized translation support
|
|
640
|
+
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
641
|
+
- f2c325c: ZERO-2838: Move file input component into @akinon/next
|
|
642
|
+
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
643
|
+
- beb499e6: ZERO-2551: Add new tsconfig paths
|
|
644
|
+
- 146ea391: ZERO-2774: Update imports
|
|
645
|
+
- f2c92d5: ZERO-2816: Update cookie name
|
|
646
|
+
- 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
647
|
+
- c47be30d: ZERO-2744: Update Order and OrderItem types
|
|
648
|
+
- e9a46acb: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
649
|
+
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
650
|
+
- b9273fd: ZERO-2889: add host headers to requests
|
|
651
|
+
- 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
652
|
+
- c670bd4: ZERO-2900: Add middleware rewrite functionality
|
|
653
|
+
- 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
|
|
217
654
|
|
|
218
655
|
## 1.49.0
|
|
219
656
|
|
|
@@ -239,7 +676,126 @@
|
|
|
239
676
|
|
|
240
677
|
### Minor Changes
|
|
241
678
|
|
|
679
|
+
- 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
680
|
+
- 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
|
|
681
|
+
- a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
|
|
682
|
+
- fda5b92: ZERO-2725: fix invalid import
|
|
683
|
+
- 2d9b2b2: ZERO-2816: Add segment to headers
|
|
684
|
+
- c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
685
|
+
- 8d9ac9a: ZERO-2794: Add field to order type
|
|
686
|
+
- 70279e7: ZERO-2817: Add metrics endpoint in default middleware
|
|
687
|
+
- 6c25f66: ZERO-2551: Check CACHE_HOST variable
|
|
688
|
+
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
689
|
+
- 3bf2dd9: ZERO-2551: Fix search page
|
|
690
|
+
- e9541a1: ZERO-2816: Add headers to url
|
|
691
|
+
- 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.
|
|
692
|
+
- 9d94f7e: ZERO-2820: update parent pk usage for menu generator
|
|
693
|
+
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
694
|
+
- 0d3a913: ZERO-2725: Update decimal scale in Price component
|
|
695
|
+
- 1448a96e: ZERO-2612: add errors type in CheckoutState
|
|
696
|
+
- d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
|
|
697
|
+
- d3474c6: ZERO-2655: Add data source shipping option
|
|
698
|
+
- 75080fd6: ZERO-2630: Add max limit to postcode area
|
|
699
|
+
- 17f8752: ZERO-2816: Make the incoming currency lowercase
|
|
700
|
+
- c45b62c: ZERO-2818: Add upload and download support for b2b package
|
|
701
|
+
- 91265bba: ZERO-2551: Improve pretty url and caching performance
|
|
702
|
+
- bbe18b9f: ZERO-2575: Fix build error
|
|
703
|
+
- d409996: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
|
|
704
|
+
- 4920742: Disable getCachedTranslations
|
|
705
|
+
- 7e56d6b: ZERO-2841: Update api tagTypes
|
|
706
|
+
- 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
|
|
707
|
+
- 98bb8dc: ZERO-2706: Cache getTranlations method
|
|
708
|
+
- 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
|
|
709
|
+
- dcc8a15: ZERO-2694: added build step to RC branch pipeline
|
|
710
|
+
- 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
|
|
711
|
+
- fad2768: ZERO-2739: add gpay to payment plugin map
|
|
712
|
+
- dff0d595: ZERO-2659: add formData support to proxy api requests
|
|
713
|
+
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
714
|
+
- f2c325c: ZERO-2838: Move file input component into @akinon/next
|
|
715
|
+
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
716
|
+
- beb499e6: ZERO-2551: Add new tsconfig paths
|
|
717
|
+
- 948eb42: ZERO-2852: Add out of stock endpoints
|
|
718
|
+
- 146ea39: ZERO-2774: Update imports
|
|
719
|
+
- f2c92d5: ZERO-2816: Update cookie name
|
|
720
|
+
- 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
721
|
+
- c47be30: ZERO-2744: Update Order and OrderItem types
|
|
722
|
+
- e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
723
|
+
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
724
|
+
- 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
725
|
+
- 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
|
|
726
|
+
|
|
727
|
+
## 1.45.0-rc.4
|
|
728
|
+
|
|
729
|
+
### Minor Changes
|
|
730
|
+
|
|
731
|
+
- 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
|
|
732
|
+
|
|
733
|
+
## 1.45.0-rc.3
|
|
734
|
+
|
|
735
|
+
### Minor Changes
|
|
736
|
+
|
|
737
|
+
- 948eb42: ZERO-2852: Add out of stock endpoints
|
|
738
|
+
|
|
739
|
+
## 1.45.0-rc.2
|
|
740
|
+
|
|
741
|
+
### Minor Changes
|
|
742
|
+
|
|
743
|
+
- c45b62c: ZERO-2818: Add upload and download support for b2b package
|
|
744
|
+
- f2c325c: ZERO-2838: Move file input component into @akinon/next
|
|
745
|
+
|
|
746
|
+
## 1.45.0-rc.1
|
|
747
|
+
|
|
748
|
+
### Minor Changes
|
|
749
|
+
|
|
750
|
+
- 7e56d6b: ZERO-2841: Update api tagTypes
|
|
751
|
+
|
|
752
|
+
## 1.45.0-rc.0
|
|
753
|
+
|
|
754
|
+
### Minor Changes
|
|
755
|
+
|
|
756
|
+
- 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
757
|
+
- 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
|
|
758
|
+
- a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
|
|
759
|
+
- fda5b92: ZERO-2725: fix invalid import
|
|
760
|
+
- 2d9b2b2: ZERO-2816: Add segment to headers
|
|
761
|
+
- c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
762
|
+
- 8d9ac9a: ZERO-2794: Add field to order type
|
|
763
|
+
- 70279e7: ZERO-2817: Add metrics endpoint in default middleware
|
|
764
|
+
- 6c25f66: ZERO-2551: Check CACHE_HOST variable
|
|
765
|
+
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
766
|
+
- 3bf2dd9: ZERO-2551: Fix search page
|
|
767
|
+
- e9541a1: ZERO-2816: Add headers to url
|
|
768
|
+
- 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.
|
|
769
|
+
- 9d94f7e: ZERO-2820: update parent pk usage for menu generator
|
|
770
|
+
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
771
|
+
- 0d3a913: ZERO-2725: Update decimal scale in Price component
|
|
772
|
+
- 1448a96: ZERO-2612: add errors type in CheckoutState
|
|
242
773
|
- 2ab6e08: ZERO-2841: Update getBasketDetail query
|
|
774
|
+
- d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
|
|
775
|
+
- d3474c6: ZERO-2655: Add data source shipping option
|
|
776
|
+
- 75080fd: ZERO-2630: Add max limit to postcode area
|
|
777
|
+
- 17f8752: ZERO-2816: Make the incoming currency lowercase
|
|
778
|
+
- 91265bb: ZERO-2551: Improve pretty url and caching performance
|
|
779
|
+
- bbe18b9: ZERO-2575: Fix build error
|
|
780
|
+
- d409996: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
|
|
781
|
+
- 4920742: Disable getCachedTranslations
|
|
782
|
+
- 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
|
|
783
|
+
- 98bb8dc: ZERO-2706: Cache getTranlations method
|
|
784
|
+
- 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
|
|
785
|
+
- dcc8a15: ZERO-2694: added build step to RC branch pipeline
|
|
786
|
+
- fad2768: ZERO-2739: add gpay to payment plugin map
|
|
787
|
+
- dff0d59: ZERO-2659: add formData support to proxy api requests
|
|
788
|
+
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
789
|
+
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
790
|
+
- beb499e: ZERO-2551: Add new tsconfig paths
|
|
791
|
+
- 146ea39: ZERO-2774: Update imports
|
|
792
|
+
- f2c92d5: ZERO-2816: Update cookie name
|
|
793
|
+
- 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
794
|
+
- c47be30: ZERO-2744: Update Order and OrderItem types
|
|
795
|
+
- e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
796
|
+
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
797
|
+
- 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
798
|
+
- 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
|
|
243
799
|
|
|
244
800
|
## 1.44.0
|
|
245
801
|
|
|
@@ -247,7 +803,201 @@
|
|
|
247
803
|
|
|
248
804
|
### Minor Changes
|
|
249
805
|
|
|
806
|
+
- 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
807
|
+
- 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
|
|
808
|
+
- a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
|
|
809
|
+
- fda5b92: ZERO-2725: fix invalid import
|
|
810
|
+
- 2d9b2b2: ZERO-2816: Add segment to headers
|
|
811
|
+
- c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
812
|
+
- 8d9ac9a: ZERO-2794: Add field to order type
|
|
813
|
+
- 70279e7: ZERO-2817: Add metrics endpoint in default middleware
|
|
814
|
+
- 6c25f66: ZERO-2551: Check CACHE_HOST variable
|
|
815
|
+
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
816
|
+
- 3bf2dd9: ZERO-2551: Fix search page
|
|
817
|
+
- e9541a1: ZERO-2816: Add headers to url
|
|
818
|
+
- 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.
|
|
819
|
+
- 9d94f7e: ZERO-2820: update parent pk usage for menu generator
|
|
820
|
+
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
821
|
+
- 0d3a913: ZERO-2725: Update decimal scale in Price component
|
|
822
|
+
- 1448a96: ZERO-2612: add errors type in CheckoutState
|
|
823
|
+
- d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
|
|
824
|
+
- d3474c6: ZERO-2655: Add data source shipping option
|
|
825
|
+
- 75080fd: ZERO-2630: Add max limit to postcode area
|
|
826
|
+
- 17f8752: ZERO-2816: Make the incoming currency lowercase
|
|
827
|
+
- 91265bb: ZERO-2551: Improve pretty url and caching performance
|
|
828
|
+
- bbe18b9: ZERO-2575: Fix build error
|
|
829
|
+
- d409996: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
|
|
830
|
+
- 4920742: Disable getCachedTranslations
|
|
831
|
+
- 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
|
|
832
|
+
- 98bb8dc: ZERO-2706: Cache getTranlations method
|
|
833
|
+
- 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
|
|
834
|
+
- dcc8a15: ZERO-2694: added build step to RC branch pipeline
|
|
835
|
+
- fad2768: ZERO-2739: add gpay to payment plugin map
|
|
836
|
+
- dff0d59: ZERO-2659: add formData support to proxy api requests
|
|
837
|
+
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
838
|
+
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
839
|
+
- beb499e: ZERO-2551: Add new tsconfig paths
|
|
840
|
+
- 146ea39: ZERO-2774: Update imports
|
|
841
|
+
- f2c92d5: ZERO-2816: Update cookie name
|
|
842
|
+
- 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
843
|
+
- c47be30: ZERO-2744: Update Order and OrderItem types
|
|
844
|
+
- e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
845
|
+
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
846
|
+
- 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
847
|
+
- 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
|
|
848
|
+
|
|
849
|
+
## 1.43.0-rc.15
|
|
850
|
+
|
|
851
|
+
## 1.43.0-rc.14
|
|
852
|
+
|
|
853
|
+
### Minor Changes
|
|
854
|
+
|
|
855
|
+
- 3bf2dd9: ZERO-2551: Fix search page
|
|
856
|
+
|
|
857
|
+
## 1.43.0-rc.13
|
|
858
|
+
|
|
859
|
+
### Minor Changes
|
|
860
|
+
|
|
861
|
+
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
862
|
+
|
|
863
|
+
## 1.43.0-rc.12
|
|
864
|
+
|
|
865
|
+
### Minor Changes
|
|
866
|
+
|
|
867
|
+
- 4920742: Disable getCachedTranslations
|
|
868
|
+
|
|
869
|
+
## 1.43.0-rc.11
|
|
870
|
+
|
|
871
|
+
### Minor Changes
|
|
872
|
+
|
|
873
|
+
- 6c25f66: ZERO-2551: Check CACHE_HOST variable
|
|
874
|
+
|
|
875
|
+
## 1.43.0-rc.10
|
|
876
|
+
|
|
877
|
+
### Minor Changes
|
|
878
|
+
|
|
879
|
+
- d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
|
|
880
|
+
|
|
881
|
+
## 1.43.0-rc.9
|
|
882
|
+
|
|
883
|
+
### Minor Changes
|
|
884
|
+
|
|
885
|
+
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
886
|
+
|
|
887
|
+
## 1.43.0-rc.8
|
|
888
|
+
|
|
889
|
+
### Minor Changes
|
|
890
|
+
|
|
891
|
+
- 70279e7: ZERO-2817: Add metrics endpoint in default middleware
|
|
892
|
+
- 9d94f7e: ZERO-2820: update parent pk usage for menu generator
|
|
893
|
+
|
|
894
|
+
## 1.43.0-rc.7
|
|
895
|
+
|
|
896
|
+
### Minor Changes
|
|
897
|
+
|
|
898
|
+
- 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
899
|
+
|
|
900
|
+
## 1.43.0-rc.6
|
|
901
|
+
|
|
902
|
+
### Minor Changes
|
|
903
|
+
|
|
904
|
+
- 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
905
|
+
- 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
|
|
906
|
+
- a4c8d6a: ZERO-2663: Fix the image url for gif and svgs and return them without options
|
|
907
|
+
- fda5b92: ZERO-2725: fix invalid import
|
|
908
|
+
- 2d9b2b2: ZERO-2816: Add segment to headers
|
|
909
|
+
- c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
910
|
+
- 8d9ac9a: ZERO-2794: Add field to order type
|
|
911
|
+
- e9541a1: ZERO-2816: Add headers to url
|
|
912
|
+
- 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.
|
|
913
|
+
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
914
|
+
- 0d3a913: ZERO-2725: Update decimal scale in Price component
|
|
915
|
+
- 1448a96: ZERO-2612: add errors type in CheckoutState
|
|
916
|
+
- d3474c6: ZERO-2655: Add data source shipping option
|
|
917
|
+
- 75080fd: ZERO-2630: Add max limit to postcode area
|
|
918
|
+
- 17f8752: ZERO-2816: Make the incoming currency lowercase
|
|
919
|
+
- 91265bb: ZERO-2551: Improve pretty url and caching performance
|
|
920
|
+
- bbe18b9: ZERO-2575: Fix build error
|
|
921
|
+
- d409996: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
|
|
922
|
+
- 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
|
|
923
|
+
- 98bb8dc: ZERO-2706: Cache getTranlations method
|
|
924
|
+
- 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
|
|
925
|
+
- dcc8a15: ZERO-2694: added build step to RC branch pipeline
|
|
926
|
+
- fad2768: ZERO-2739: add gpay to payment plugin map
|
|
927
|
+
- dff0d59: ZERO-2659: add formData support to proxy api requests
|
|
928
|
+
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
250
929
|
- 4a163f2: ZERO-2761: Add condition for basket summary
|
|
930
|
+
- beb499e: ZERO-2551: Add new tsconfig paths
|
|
931
|
+
- 146ea39: ZERO-2774: Update imports
|
|
932
|
+
- f2c92d5: ZERO-2816: Update cookie name
|
|
933
|
+
- c47be30: ZERO-2744: Update Order and OrderItem types
|
|
934
|
+
- e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
935
|
+
- f046f8e: ZERO-2575: update version for react-number-format
|
|
936
|
+
- 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
937
|
+
- 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
|
|
938
|
+
|
|
939
|
+
## 1.43.0-rc.5
|
|
940
|
+
|
|
941
|
+
### Minor Changes
|
|
942
|
+
|
|
943
|
+
- 17f8752: ZERO-2816: Make the incoming currency lowercase
|
|
944
|
+
|
|
945
|
+
## 1.43.0-rc.4
|
|
946
|
+
|
|
947
|
+
### Minor Changes
|
|
948
|
+
|
|
949
|
+
- 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
|
|
950
|
+
|
|
951
|
+
## 1.43.0-rc.3
|
|
952
|
+
|
|
953
|
+
### Minor Changes
|
|
954
|
+
|
|
955
|
+
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
956
|
+
|
|
957
|
+
## 1.43.0-rc.2
|
|
958
|
+
|
|
959
|
+
### Minor Changes
|
|
960
|
+
|
|
961
|
+
- f2c92d5: ZERO-2816: Update cookie name
|
|
962
|
+
|
|
963
|
+
## 1.43.0-rc.1
|
|
964
|
+
|
|
965
|
+
### Minor Changes
|
|
966
|
+
|
|
967
|
+
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
968
|
+
|
|
969
|
+
## 1.43.0-rc.0
|
|
970
|
+
|
|
971
|
+
### Minor Changes
|
|
972
|
+
|
|
973
|
+
- 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
974
|
+
- 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
|
|
975
|
+
- a4c8d6a: ZERO-2663: Fix the image url for gif and svgs and return them without options
|
|
976
|
+
- fda5b92: ZERO-2725: fix invalid import
|
|
977
|
+
- 2d9b2b2: ZERO-2816: Add segment to headers
|
|
978
|
+
- c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
979
|
+
- 8d9ac9a: ZERO-2794: Add field to order type
|
|
980
|
+
- e9541a1: ZERO-2816: Add headers to url
|
|
981
|
+
- 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.
|
|
982
|
+
- 0d3a913: ZERO-2725: Update decimal scale in Price component
|
|
983
|
+
- 1448a96: ZERO-2612: add errors type in CheckoutState
|
|
984
|
+
- d3474c6: ZERO-2655: Add data source shipping option
|
|
985
|
+
- 75080fd: ZERO-2630: Add max limit to postcode area
|
|
986
|
+
- 91265bb: ZERO-2551: Improve pretty url and caching performance
|
|
987
|
+
- bbe18b9: ZERO-2575: Fix build error
|
|
988
|
+
- d409996: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
|
|
989
|
+
- 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
|
|
990
|
+
- 98bb8dc: ZERO-2706: Cache getTranlations method
|
|
991
|
+
- 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
|
|
992
|
+
- dcc8a15: ZERO-2694: added build step to RC branch pipeline
|
|
993
|
+
- fad2768: ZERO-2739: add gpay to payment plugin map
|
|
994
|
+
- dff0d59: ZERO-2659: add formData support to proxy api requests
|
|
995
|
+
- beb499e: ZERO-2551: Add new tsconfig paths
|
|
996
|
+
- 146ea39: ZERO-2774: Update imports
|
|
997
|
+
- c47be30: ZERO-2744: Update Order and OrderItem types
|
|
998
|
+
- e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
999
|
+
- f046f8e: ZERO-2575: update version for react-number-format
|
|
1000
|
+
- 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
251
1001
|
|
|
252
1002
|
## 1.42.0
|
|
253
1003
|
|