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