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