@akinon/next 1.86.0-rc.3 → 1.86.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 +25 -1087
- package/bin/pz-prebuild.js +2 -0
- package/bin/run-prebuild-tests.js +46 -0
- package/components/input.tsx +0 -2
- package/components/link.tsx +12 -16
- package/data/client/api.ts +1 -0
- package/data/client/basket.ts +7 -45
- package/data/client/product.ts +2 -1
- package/hocs/server/with-segment-defaults.tsx +2 -5
- package/instrumentation/node.ts +13 -15
- package/lib/cache.ts +0 -2
- package/middlewares/complete-gpay.ts +1 -2
- package/middlewares/complete-masterpass.ts +1 -2
- package/middlewares/redirection-payment.ts +1 -2
- package/middlewares/saved-card-redirection.ts +1 -2
- package/middlewares/three-d-redirection.ts +1 -2
- package/package.json +3 -3
- package/types/commerce/order.ts +0 -1
- package/utils/app-fetch.ts +2 -2
- package/data/server/basket.ts +0 -72
package/CHANGELOG.md
CHANGED
|
@@ -1,292 +1,51 @@
|
|
|
1
1
|
# @akinon/next
|
|
2
2
|
|
|
3
|
-
## 1.86.0
|
|
4
|
-
|
|
5
|
-
## 1.86.0-rc.2
|
|
6
|
-
|
|
7
|
-
### Minor Changes
|
|
8
|
-
|
|
9
|
-
- c3f8d4af: ZERO-3274: Adjust button styles
|
|
10
|
-
|
|
11
|
-
## 1.86.0-rc.1
|
|
12
|
-
|
|
13
|
-
## 1.86.0-rc.0
|
|
14
|
-
|
|
15
|
-
### Minor Changes
|
|
16
|
-
|
|
17
|
-
- 6f506afc: ZERO-3229: Implement mini basket query for basket total quantity
|
|
18
|
-
- 5dfeea04: ZERO-2801: Revert ZERO-2801
|
|
19
|
-
- ef75c032: ZERO-3267: Update error-page component to use ROUTES for link navigation
|
|
20
|
-
- 2d9b2b2c: ZERO-2816: Add segment to headers
|
|
21
|
-
- 5e1feca6: Revert "ZERO-3286: Add notFound handling for chunk URLs starting with \_next"
|
|
22
|
-
- 40a46853: ZERO-3182: Optimize basket update mutation with optimistic update
|
|
23
|
-
- f49bb74f: ZERO-3097: Add setCookie to logging in payment redirection middlewares
|
|
24
|
-
- e4761d2c: Refactor import statement for ROUTES in error-page component
|
|
25
|
-
- e9541a13: ZERO-2816: Add headers to url
|
|
26
|
-
- e2c6d426: ZERO-2935: Add @sentry/nextjs dependency to akinon-next and remove from projectzeronext
|
|
27
|
-
- 4d3deb4f: ZERO-2935: sentry 8 upgrade
|
|
28
|
-
- 72fd4d67: ZERO-3084: Fix URL search parameters encoding in default middleware
|
|
29
|
-
- 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.
|
|
30
|
-
- 64699d3f: ZERO-2761: Fix invalid import for plugin module
|
|
31
|
-
- 9abd0115: ZERO-3267: Refactor error handling in ErrorPage component to set error details in Sentry scope
|
|
32
|
-
- 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
|
|
33
|
-
- d552629f: ZERO-3182: Refactor basketApi to use invalidatesTags and comment out onQueryStarted logic
|
|
34
|
-
- c3b2f3ff: ZERO-3267: Enable sentry client errors and filter them by log type
|
|
35
|
-
- 17f87524: ZERO-2816: Make the incoming currency lowercase
|
|
36
|
-
- 70bc0aed: ZERO-3284: Set tracesSampleRate in Sentry configuration
|
|
37
|
-
- 65d3b862: ZERO-3054: Update headers in appFetch
|
|
38
|
-
- bbe18b9f: ZERO-2575: Fix build error
|
|
39
|
-
- 17bfadc4: ZERO-3275: Disable OpenTelemetry monitoring in production environment
|
|
40
|
-
- 4920742c: Disable getCachedTranslations
|
|
41
|
-
- b6e5b624: ZERO-3257: Enhance locale middleware to redirect using existing or default locale and support 303 status for POST requests
|
|
42
|
-
- ac65ca9f: ZERO-3269: Enhance locale handling by adding Subdomain strategy and updating related functions
|
|
43
|
-
- 7e56d6b6: ZERO-2841: Update api tagTypes
|
|
44
|
-
- 33377cfd: ZERO-3267: Refactor import statement for ROUTES in error-page component
|
|
45
|
-
- 43c182ee: ZERO-3054: Update Redis variable checks to conditionally include CACHE_SECRET
|
|
46
|
-
- 2d305aaf: ZERO-2935: Update Sentry configuration: remove hideSourceMaps option and add it to withPzConfig
|
|
47
|
-
- eeb20bea: Revert "ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing"
|
|
48
|
-
- 3bf63c8a: ZERO-3286: Add notFound handling for chunk URLs starting with \_next
|
|
49
|
-
- 9be2c081: ZERO-3243: Improve basket update query handling with optimistic updates
|
|
50
|
-
- f2c92d5c: ZERO-2816: Update cookie name
|
|
51
|
-
- 2f3588fb: ZERO-3287: Add user session handling in authentication flow
|
|
52
|
-
- e5529cd3: ZERO-3267: Update error-page component to use root path for links instead of ROUTES
|
|
53
|
-
- 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
54
|
-
- fdd255ee: ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing
|
|
55
|
-
- 49eeebfa: ZERO-2909: Add deleteCollectionItem query to wishlistApi
|
|
56
|
-
- 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
|
|
57
|
-
|
|
58
|
-
## 1.85.0
|
|
59
|
-
|
|
60
|
-
### Minor Changes
|
|
61
|
-
|
|
62
|
-
- 4167dcd: ZERO-3253: Update Content-Security-Policy to include akinoncloud.com
|
|
63
|
-
- 0b1bd07: ZERO-3240: Remove unused preOrderMiddleware
|
|
64
|
-
|
|
65
|
-
## 1.84.0
|
|
66
|
-
|
|
67
|
-
### Minor Changes
|
|
68
|
-
|
|
69
|
-
- 757ee53: ZERO-3207: Add SMS send & verify endpoints with state management
|
|
70
|
-
- c0c1962: ZERO-3258: Add new API endpoints for fetching Bukalemun image URL and bundle product data
|
|
71
|
-
- 0e05135: ZERO-3244: Encode URL search parameters
|
|
72
|
-
|
|
73
|
-
## 1.83.0
|
|
74
|
-
|
|
75
|
-
## 1.82.0
|
|
3
|
+
## 1.86.0
|
|
76
4
|
|
|
77
5
|
### Minor Changes
|
|
78
6
|
|
|
7
|
+
- 6fc8ac5: ZERO-3229: Implement mini basket query for basket total quantity
|
|
79
8
|
- ef75c03: ZERO-3267: Update error-page component to use ROUTES for link navigation
|
|
80
|
-
|
|
81
|
-
## 1.82.0-rc.20
|
|
82
|
-
|
|
83
|
-
### Minor Changes
|
|
84
|
-
|
|
85
|
-
- e5529cd: ZERO-3267: Update error-page component to use root path for links instead of ROUTES
|
|
86
|
-
|
|
87
|
-
## 1.82.0-rc.19
|
|
88
|
-
|
|
89
|
-
### Minor Changes
|
|
90
|
-
|
|
91
|
-
- 33377cf: ZERO-3267: Refactor import statement for ROUTES in error-page component
|
|
92
|
-
|
|
93
|
-
## 1.82.0-rc.18
|
|
94
|
-
|
|
95
|
-
### Minor Changes
|
|
96
|
-
|
|
97
9
|
- e4761d2: Refactor import statement for ROUTES in error-page component
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
### Minor Changes
|
|
102
|
-
|
|
103
|
-
- e2c6d426: ZERO-2935: Add @sentry/nextjs dependency to akinon-next and remove from projectzeronext
|
|
104
|
-
- 70bc0aed: ZERO-3284: Set tracesSampleRate in Sentry configuration
|
|
105
|
-
|
|
106
|
-
## 1.82.0-rc.16
|
|
107
|
-
|
|
108
|
-
### Minor Changes
|
|
109
|
-
|
|
110
|
-
- 757ee539: ZERO-3207: Add SMS send & verify endpoints with state management
|
|
111
|
-
- 6f506af: ZERO-3229: Implement mini basket query for basket total quantity
|
|
112
|
-
- 5dfeea04: ZERO-2801: Revert ZERO-2801
|
|
113
|
-
- 2d9b2b2c: ZERO-2816: Add segment to headers
|
|
114
|
-
- 5e1feca: Revert "ZERO-3286: Add notFound handling for chunk URLs starting with \_next"
|
|
115
|
-
- c0c1962: ZERO-3258: Add new API endpoints for fetching Bukalemun image URL and bundle product data
|
|
116
|
-
- 40a46853: ZERO-3182: Optimize basket update mutation with optimistic update
|
|
117
|
-
- f49bb74f: ZERO-3097: Add setCookie to logging in payment redirection middlewares
|
|
118
|
-
- 0e05135: ZERO-3244: Encode URL search parameters
|
|
119
|
-
- e9541a13: ZERO-2816: Add headers to url
|
|
120
|
-
- 4d3deb4f: ZERO-2935: sentry 8 upgrade
|
|
121
|
-
- 72fd4d67: ZERO-3084: Fix URL search parameters encoding in default middleware
|
|
122
|
-
- 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.
|
|
123
|
-
- 64699d3f: ZERO-2761: Fix invalid import for plugin module
|
|
10
|
+
- e2c6d42: ZERO-2935: Add @sentry/nextjs dependency to akinon-next and remove from projectzeronext
|
|
11
|
+
- 4d3deb4: ZERO-2935: sentry 8 upgrade
|
|
12
|
+
- c3f8d4a: ZERO-3274: Adjust button styles
|
|
124
13
|
- 9abd011: ZERO-3267: Refactor error handling in ErrorPage component to set error details in Sentry scope
|
|
125
|
-
- 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
|
|
126
|
-
- d552629: ZERO-3182: Refactor basketApi to use invalidatesTags and comment out onQueryStarted logic
|
|
127
14
|
- c3b2f3f: ZERO-3267: Enable sentry client errors and filter them by log type
|
|
128
|
-
-
|
|
129
|
-
- 65d3b862: ZERO-3054: Update headers in appFetch
|
|
130
|
-
- bbe18b9f: ZERO-2575: Fix build error
|
|
131
|
-
- 17bfadc: ZERO-3275: Disable OpenTelemetry monitoring in production environment
|
|
132
|
-
- 4920742c: Disable getCachedTranslations
|
|
133
|
-
- b6e5b62: ZERO-3257: Enhance locale middleware to redirect using existing or default locale and support 303 status for POST requests
|
|
15
|
+
- 70bc0ae: ZERO-3284: Set tracesSampleRate in Sentry configuration
|
|
134
16
|
- ac65ca9: ZERO-3269: Enhance locale handling by adding Subdomain strategy and updating related functions
|
|
135
|
-
-
|
|
136
|
-
- 43c182ee: ZERO-3054: Update Redis variable checks to conditionally include CACHE_SECRET
|
|
137
|
-
- 2d305aaf: ZERO-2935: Update Sentry configuration: remove hideSourceMaps option and add it to withPzConfig
|
|
138
|
-
- eeb20bea: Revert "ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing"
|
|
139
|
-
- 3bf63c8: ZERO-3286: Add notFound handling for chunk URLs starting with \_next
|
|
140
|
-
- 9be2c08: ZERO-3243: Improve basket update query handling with optimistic updates
|
|
141
|
-
- f2c92d5c: ZERO-2816: Update cookie name
|
|
17
|
+
- 2d305aa: ZERO-2935: Update Sentry configuration: remove hideSourceMaps option and add it to withPzConfig
|
|
142
18
|
- 2f3588f: ZERO-3287: Add user session handling in authentication flow
|
|
143
|
-
-
|
|
144
|
-
- fdd255ee: ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing
|
|
145
|
-
- 0b1bd07: ZERO-3240: Remove unused preOrderMiddleware
|
|
146
|
-
- 49eeebfa: ZERO-2909: Add deleteCollectionItem query to wishlistApi
|
|
147
|
-
- 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
|
|
148
|
-
|
|
149
|
-
## 1.82.0-rc.15
|
|
150
|
-
|
|
151
|
-
### Minor Changes
|
|
152
|
-
|
|
153
|
-
- 2f3588fb: ZERO-3287: Add user session handling in authentication flow
|
|
154
|
-
|
|
155
|
-
## 1.82.0-rc.14
|
|
156
|
-
|
|
157
|
-
### Minor Changes
|
|
158
|
-
|
|
159
|
-
- 5e1feca: Revert "ZERO-3286: Add notFound handling for chunk URLs starting with \_next"
|
|
160
|
-
|
|
161
|
-
## 1.82.0-rc.13
|
|
162
|
-
|
|
163
|
-
### Minor Changes
|
|
164
|
-
|
|
165
|
-
- 3bf63c8: ZERO-3286: Add notFound handling for chunk URLs starting with \_next
|
|
166
|
-
|
|
167
|
-
## 1.82.0-rc.12
|
|
168
|
-
|
|
169
|
-
### Minor Changes
|
|
170
|
-
|
|
171
|
-
- ac65ca9: ZERO-3269: Enhance locale handling by adding Subdomain strategy and updating related functions
|
|
172
|
-
|
|
173
|
-
## 1.82.0-rc.11
|
|
174
|
-
|
|
175
|
-
## 1.82.0-rc.10
|
|
176
|
-
|
|
177
|
-
## 1.82.0-rc.9
|
|
178
|
-
|
|
179
|
-
### Minor Changes
|
|
180
|
-
|
|
181
|
-
- 9abd011: ZERO-3267: Refactor error handling in ErrorPage component to set error details in Sentry scope
|
|
182
|
-
|
|
183
|
-
## 1.82.0-rc.8
|
|
184
|
-
|
|
185
|
-
### Minor Changes
|
|
186
|
-
|
|
187
|
-
- 17bfadc: ZERO-3275: Disable OpenTelemetry monitoring in production environment
|
|
188
|
-
|
|
189
|
-
## 1.82.0-rc.7
|
|
190
|
-
|
|
191
|
-
### Minor Changes
|
|
192
|
-
|
|
193
|
-
- c3b2f3f: ZERO-3267: Enable sentry client errors and filter them by log type
|
|
194
|
-
|
|
195
|
-
## 1.82.0-rc.6
|
|
196
|
-
|
|
197
|
-
### Minor Changes
|
|
198
|
-
|
|
199
|
-
- 0b1bd07f: ZERO-3240: Remove unused preOrderMiddleware
|
|
200
|
-
|
|
201
|
-
## 1.82.0-rc.5
|
|
202
|
-
|
|
203
|
-
### Minor Changes
|
|
204
|
-
|
|
205
|
-
- 6f506afc: ZERO-3229: Implement mini basket query for basket total quantity
|
|
206
|
-
- c0c19629: ZERO-3258: Add new API endpoints for fetching Bukalemun image URL and bundle product data
|
|
207
|
-
- 9be2c081: ZERO-3243: Improve basket update query handling with optimistic updates
|
|
19
|
+
- e5529cd: ZERO-3267: Update error-page component to use root path for links instead of ROUTES
|
|
208
20
|
|
|
209
|
-
## 1.
|
|
21
|
+
## 1.85.0
|
|
210
22
|
|
|
211
23
|
### Minor Changes
|
|
212
24
|
|
|
213
|
-
-
|
|
214
|
-
|
|
215
|
-
## 1.82.0-rc.3
|
|
25
|
+
- 4167dcd: ZERO-3253: Update Content-Security-Policy to include akinoncloud.com
|
|
26
|
+
- 0b1bd07: ZERO-3240: Remove unused preOrderMiddleware
|
|
216
27
|
|
|
217
|
-
## 1.
|
|
28
|
+
## 1.84.0
|
|
218
29
|
|
|
219
30
|
### Minor Changes
|
|
220
31
|
|
|
221
|
-
-
|
|
222
|
-
-
|
|
223
|
-
-
|
|
224
|
-
- 40a46853: ZERO-3182: Optimize basket update mutation with optimistic update
|
|
225
|
-
- f49bb74f: ZERO-3097: Add setCookie to logging in payment redirection middlewares
|
|
226
|
-
- 0e051352: ZERO-3244: Encode URL search parameters
|
|
227
|
-
- e9541a13: ZERO-2816: Add headers to url
|
|
228
|
-
- 4d3deb4f: ZERO-2935: sentry 8 upgrade
|
|
229
|
-
- 72fd4d67: ZERO-3084: Fix URL search parameters encoding in default middleware
|
|
230
|
-
- 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.
|
|
231
|
-
- 64699d3f: ZERO-2761: Fix invalid import for plugin module
|
|
232
|
-
- 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
|
|
233
|
-
- d552629f: ZERO-3182: Refactor basketApi to use invalidatesTags and comment out onQueryStarted logic
|
|
234
|
-
- 17f87524: ZERO-2816: Make the incoming currency lowercase
|
|
235
|
-
- 65d3b862: ZERO-3054: Update headers in appFetch
|
|
236
|
-
- bbe18b9f: ZERO-2575: Fix build error
|
|
237
|
-
- 4920742c: Disable getCachedTranslations
|
|
238
|
-
- 7e56d6b6: ZERO-2841: Update api tagTypes
|
|
239
|
-
- 43c182ee: ZERO-3054: Update Redis variable checks to conditionally include CACHE_SECRET
|
|
240
|
-
- 2d305aaf: ZERO-2935: Update Sentry configuration: remove hideSourceMaps option and add it to withPzConfig
|
|
241
|
-
- eeb20bea: Revert "ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing"
|
|
242
|
-
- f2c92d5c: ZERO-2816: Update cookie name
|
|
243
|
-
- 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
244
|
-
- fdd255ee: ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing
|
|
245
|
-
- 49eeebfa: ZERO-2909: Add deleteCollectionItem query to wishlistApi
|
|
246
|
-
- 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
|
|
247
|
-
|
|
248
|
-
## 1.82.0-rc.1
|
|
249
|
-
|
|
250
|
-
### Minor Changes
|
|
32
|
+
- 757ee53: ZERO-3207: Add SMS send & verify endpoints with state management
|
|
33
|
+
- c0c1962: ZERO-3258: Add new API endpoints for fetching Bukalemun image URL and bundle product data
|
|
34
|
+
- 0e05135: ZERO-3244: Encode URL search parameters
|
|
251
35
|
|
|
252
|
-
|
|
36
|
+
## 1.83.0
|
|
253
37
|
|
|
254
|
-
## 1.82.0
|
|
38
|
+
## 1.82.0
|
|
255
39
|
|
|
256
40
|
### Minor Changes
|
|
257
41
|
|
|
258
|
-
-
|
|
259
|
-
-
|
|
260
|
-
-
|
|
261
|
-
-
|
|
262
|
-
-
|
|
263
|
-
-
|
|
264
|
-
-
|
|
265
|
-
- 2d2ab446: ZERO-3226: Add device_info param to WalletPaymentPage request
|
|
266
|
-
- f49bb74f: ZERO-3097: Add setCookie to logging in payment redirection middlewares
|
|
267
|
-
- e9541a13: ZERO-2816: Add headers to url
|
|
268
|
-
- 4d3deb4f: ZERO-2935: sentry 8 upgrade
|
|
269
|
-
- 72fd4d67: ZERO-3084: Fix URL search parameters encoding in default middleware
|
|
270
|
-
- 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.
|
|
271
|
-
- 64699d3f: ZERO-2761: Fix invalid import for plugin module
|
|
272
|
-
- 0200d568: ZERO-3163: Add frontendIds property to Settings interface
|
|
273
|
-
- 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
|
|
274
|
-
- d552629f: ZERO-3182: Refactor basketApi to use invalidatesTags and comment out onQueryStarted logic
|
|
275
|
-
- 17f87524: ZERO-2816: Make the incoming currency lowercase
|
|
276
|
-
- 65d3b862: ZERO-3054: Update headers in appFetch
|
|
277
|
-
- bbe18b9f: ZERO-2575: Fix build error
|
|
278
|
-
- 4920742c: Disable getCachedTranslations
|
|
279
|
-
- 7e56d6b6: ZERO-2841: Update api tagTypes
|
|
280
|
-
- 7d1b5af1: ZERO-3206: Encode search parameters in product data URL
|
|
281
|
-
- 43c182ee: ZERO-3054: Update Redis variable checks to conditionally include CACHE_SECRET
|
|
282
|
-
- 2d305aaf: ZERO-2935: Update Sentry configuration: remove hideSourceMaps option and add it to withPzConfig
|
|
283
|
-
- eeb20bea: Revert "ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing"
|
|
284
|
-
- f2c92d5c: ZERO-2816: Update cookie name
|
|
285
|
-
- 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
286
|
-
- fdd255ee: ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing
|
|
287
|
-
- aa05ed79: ZERO-3170: Add commerceRedirectionIgnoreList to settings and update URL redirection middleware
|
|
288
|
-
- 49eeebfa: ZERO-2909: Add deleteCollectionItem query to wishlistApi
|
|
289
|
-
- 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
|
|
42
|
+
- 2e0b7ff: ZERO-3226: Refactor checkoutApi to simplify request body structure by removing device_info parameter
|
|
43
|
+
- 778aabf: ZERO-3163: Add frontend ID header to authentication requests and forgot password mutation
|
|
44
|
+
- c0fef07: ZERO-3197: Refetch payment options after loyalty usage
|
|
45
|
+
- 2d2ab44: ZERO-3226: Add device_info param to WalletPaymentPage request
|
|
46
|
+
- 0200d56: ZERO-3163: Add frontendIds property to Settings interface
|
|
47
|
+
- 7d1b5af: ZERO-3206: Encode search parameters in product data URL
|
|
48
|
+
- aa05ed7: ZERO-3170: Add commerceRedirectionIgnoreList to settings and update URL redirection middleware
|
|
290
49
|
|
|
291
50
|
## 1.81.0
|
|
292
51
|
|
|
@@ -306,116 +65,7 @@
|
|
|
306
65
|
|
|
307
66
|
### Minor Changes
|
|
308
67
|
|
|
309
|
-
-
|
|
310
|
-
- 5dfeea04: ZERO-2801: Revert ZERO-2801
|
|
311
|
-
- 2d9b2b2c: ZERO-2816: Add segment to headers
|
|
312
|
-
- fd4b74e9: ZERO-3126: add reset checkout state query
|
|
313
|
-
- f49bb74f: ZERO-3097: Add setCookie to logging in payment redirection middlewares
|
|
314
|
-
- e9541a13: ZERO-2816: Add headers to url
|
|
315
|
-
- 4d3deb4f: ZERO-2935: sentry 8 upgrade
|
|
316
|
-
- 72fd4d67: ZERO-3084: Fix URL search parameters encoding in default middleware
|
|
317
|
-
- 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.
|
|
318
|
-
- 64699d3f: ZERO-2761: Fix invalid import for plugin module
|
|
319
|
-
- 0200d568: ZERO-3163: Add frontendIds property to Settings interface
|
|
320
|
-
- 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
|
|
321
|
-
- 17f87524: ZERO-2816: Make the incoming currency lowercase
|
|
322
|
-
- 65d3b862: ZERO-3054: Update headers in appFetch
|
|
323
|
-
- bbe18b9f: ZERO-2575: Fix build error
|
|
324
|
-
- 4920742c: Disable getCachedTranslations
|
|
325
|
-
- 7e56d6b6: ZERO-2841: Update api tagTypes
|
|
326
|
-
- 43c182ee: ZERO-3054: Update Redis variable checks to conditionally include CACHE_SECRET
|
|
327
|
-
- 2d305aaf: ZERO-2935: Update Sentry configuration: remove hideSourceMaps option and add it to withPzConfig
|
|
328
|
-
- 4cc22c7c: ZERO-3125: replace X-Frame-Options with CSP frame-ancestors
|
|
329
|
-
- eeb20bea: Revert "ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing"
|
|
330
|
-
- 6a0a0807: ZERO-3112: Update button
|
|
331
|
-
- f2c92d5c: ZERO-2816: Update cookie name
|
|
332
|
-
- 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
333
|
-
- fdd255ee: ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing
|
|
334
|
-
- 49eeebfa: ZERO-2909: Add deleteCollectionItem query to wishlistApi
|
|
335
|
-
- 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
|
|
336
|
-
- 7ab9e2fd: ZERO-3166: add tamara payment package
|
|
337
|
-
|
|
338
|
-
## 1.79.0-rc.6
|
|
339
|
-
|
|
340
|
-
### Minor Changes
|
|
341
|
-
|
|
342
|
-
- 0200d568: ZERO-3163: Add frontendIds property to Settings interface
|
|
343
|
-
|
|
344
|
-
## 1.79.0-rc.5
|
|
345
|
-
|
|
346
|
-
### Minor Changes
|
|
347
|
-
|
|
348
|
-
- 778aabf8: ZERO-3163: Add frontend ID header to authentication requests and forgot password mutation
|
|
349
|
-
|
|
350
|
-
## 1.79.0-rc.4
|
|
351
|
-
|
|
352
|
-
## 1.79.0-rc.3
|
|
353
|
-
|
|
354
|
-
### Minor Changes
|
|
355
|
-
|
|
356
|
-
- 5dfeea04: ZERO-2801: Revert ZERO-2801
|
|
357
|
-
- 2d9b2b2c: ZERO-2816: Add segment to headers
|
|
358
|
-
- fd4b74e9: ZERO-3126: add reset checkout state query
|
|
359
|
-
- f49bb74f: ZERO-3097: Add setCookie to logging in payment redirection middlewares
|
|
360
|
-
- e9541a13: ZERO-2816: Add headers to url
|
|
361
|
-
- 4d3deb4f: ZERO-2935: sentry 8 upgrade
|
|
362
|
-
- 72fd4d67: ZERO-3084: Fix URL search parameters encoding in default middleware
|
|
363
|
-
- 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.
|
|
364
|
-
- 64699d3f: ZERO-2761: Fix invalid import for plugin module
|
|
365
|
-
- 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
|
|
366
|
-
- 17f87524: ZERO-2816: Make the incoming currency lowercase
|
|
367
|
-
- 65d3b862: ZERO-3054: Update headers in appFetch
|
|
368
|
-
- bbe18b9f: ZERO-2575: Fix build error
|
|
369
|
-
- 4920742c: Disable getCachedTranslations
|
|
370
|
-
- 7e56d6b6: ZERO-2841: Update api tagTypes
|
|
371
|
-
- 43c182ee: ZERO-3054: Update Redis variable checks to conditionally include CACHE_SECRET
|
|
372
|
-
- 2d305aaf: ZERO-2935: Update Sentry configuration: remove hideSourceMaps option and add it to withPzConfig
|
|
373
|
-
- 4cc22c7c: ZERO-3125: replace X-Frame-Options with CSP frame-ancestors
|
|
374
|
-
- eeb20bea: Revert "ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing"
|
|
375
|
-
- 6a0a0807: ZERO-3112: Update button
|
|
376
|
-
- f2c92d5c: ZERO-2816: Update cookie name
|
|
377
|
-
- 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
378
|
-
- fdd255ee: ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing
|
|
379
|
-
- 59fa21ce: ZERO-3149: Add name-based mechanism for Redux middleware override
|
|
380
|
-
- 49eeebfa: ZERO-2909: Add deleteCollectionItem query to wishlistApi
|
|
381
|
-
- 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
|
|
382
|
-
|
|
383
|
-
## 1.79.0-rc.2
|
|
384
|
-
|
|
385
|
-
## 1.79.0-rc.1
|
|
386
|
-
|
|
387
|
-
### Minor Changes
|
|
388
|
-
|
|
389
|
-
- 4cc22c7c: ZERO-3125: replace X-Frame-Options with CSP frame-ancestors
|
|
390
|
-
|
|
391
|
-
## 1.79.0-rc.0
|
|
392
|
-
|
|
393
|
-
### Minor Changes
|
|
394
|
-
|
|
395
|
-
- 5dfeea04: ZERO-2801: Revert ZERO-2801
|
|
396
|
-
- 2d9b2b2c: ZERO-2816: Add segment to headers
|
|
397
|
-
- fd4b74e9: ZERO-3126: add reset checkout state query
|
|
398
|
-
- f49bb74f: ZERO-3097: Add setCookie to logging in payment redirection middlewares
|
|
399
|
-
- e9541a13: ZERO-2816: Add headers to url
|
|
400
|
-
- 4d3deb4f: ZERO-2935: sentry 8 upgrade
|
|
401
|
-
- 72fd4d67: ZERO-3084: Fix URL search parameters encoding in default middleware
|
|
402
|
-
- 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.
|
|
403
|
-
- 64699d3f: ZERO-2761: Fix invalid import for plugin module
|
|
404
|
-
- 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
|
|
405
|
-
- 17f87524: ZERO-2816: Make the incoming currency lowercase
|
|
406
|
-
- 65d3b862: ZERO-3054: Update headers in appFetch
|
|
407
|
-
- bbe18b9f: ZERO-2575: Fix build error
|
|
408
|
-
- 4920742c: Disable getCachedTranslations
|
|
409
|
-
- 7e56d6b6: ZERO-2841: Update api tagTypes
|
|
410
|
-
- 43c182ee: ZERO-3054: Update Redis variable checks to conditionally include CACHE_SECRET
|
|
411
|
-
- 2d305aaf: ZERO-2935: Update Sentry configuration: remove hideSourceMaps option and add it to withPzConfig
|
|
412
|
-
- eeb20bea: Revert "ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing"
|
|
413
|
-
- 6a0a0807: ZERO-3112: Update button
|
|
414
|
-
- f2c92d5c: ZERO-2816: Update cookie name
|
|
415
|
-
- 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
416
|
-
- fdd255ee: ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing
|
|
417
|
-
- 49eeebfa: ZERO-2909: Add deleteCollectionItem query to wishlistApi
|
|
418
|
-
- 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
|
|
68
|
+
- 59fa21c: ZERO-3149: Add name-based mechanism for Redux middleware override
|
|
419
69
|
|
|
420
70
|
## 1.78.0
|
|
421
71
|
|
|
@@ -487,52 +137,6 @@
|
|
|
487
137
|
### Minor Changes
|
|
488
138
|
|
|
489
139
|
- f34454a: ZERO-2953: Add hepsipay payment method
|
|
490
|
-
- 3bfa12a: ZERO-3003:Add fetchLoyaltyData and setLoyaltyData requests to RTK
|
|
491
|
-
- 4d3deb4: ZERO-2935: sentry 8 upgrade
|
|
492
|
-
- 3010514: ZERO-3011:add shipping_option_operator and custom filter to getOrders
|
|
493
|
-
- 9a50730: ZERO-3015: Add currency parameter to getOrders query
|
|
494
|
-
- ca774b3: ZERO-3002:add register with loyalty url
|
|
495
|
-
- 56cdddc: ZERO-0000: SHOP-78125: Change unpaid_amount with total_amount_with_interest
|
|
496
|
-
- 3344bca: ZERO-3013: Enable web vitals tracking in settings.js
|
|
497
|
-
|
|
498
|
-
## 1.71.0-rc.7
|
|
499
|
-
|
|
500
|
-
## 1.71.0-rc.6
|
|
501
|
-
|
|
502
|
-
### Minor Changes
|
|
503
|
-
|
|
504
|
-
- f34454a: ZERO-2953: Add hepsipay payment method
|
|
505
|
-
|
|
506
|
-
## 1.71.0-rc.5
|
|
507
|
-
|
|
508
|
-
## 1.71.0-rc.4
|
|
509
|
-
|
|
510
|
-
## 1.71.0-rc.3
|
|
511
|
-
|
|
512
|
-
### Minor Changes
|
|
513
|
-
|
|
514
|
-
- 3344bca: ZERO-3013: Enable web vitals tracking in settings.js
|
|
515
|
-
|
|
516
|
-
## 1.71.0-rc.2
|
|
517
|
-
|
|
518
|
-
### Minor Changes
|
|
519
|
-
|
|
520
|
-
- 56cdddc: ZERO-0000: SHOP-78125: Change unpaid_amount with total_amount_with_interest
|
|
521
|
-
|
|
522
|
-
## 1.71.0-rc.1
|
|
523
|
-
|
|
524
|
-
### Minor Changes
|
|
525
|
-
|
|
526
|
-
- 9a50730: ZERO-3015: Add currency parameter to getOrders query
|
|
527
|
-
|
|
528
|
-
## 1.71.0-rc.0
|
|
529
|
-
|
|
530
|
-
### Minor Changes
|
|
531
|
-
|
|
532
|
-
- 3bfa12a: ZERO-3003:Add fetchLoyaltyData and setLoyaltyData requests to RTK
|
|
533
|
-
- 4d3deb4: ZERO-2935: sentry 8 upgrade
|
|
534
|
-
- 3010514: ZERO-3011:add shipping_option_operator and custom filter to getOrders
|
|
535
|
-
- ca774b3: ZERO-3002:add register with loyalty url
|
|
536
140
|
|
|
537
141
|
## 1.70.0
|
|
538
142
|
|
|
@@ -544,72 +148,12 @@
|
|
|
544
148
|
|
|
545
149
|
### Minor Changes
|
|
546
150
|
|
|
547
|
-
- 3bfa12a: ZERO-3003:Add fetchLoyaltyData and setLoyaltyData requests to RTK
|
|
548
|
-
- 4d3deb4: ZERO-2935: sentry 8 upgrade
|
|
549
|
-
- 3010514: ZERO-3011:add shipping_option_operator and custom filter to getOrders
|
|
550
|
-
- ca774b3: ZERO-3002:add register with loyalty url
|
|
551
|
-
- f046f8e: ZERO-2575: update version for react-number-format
|
|
552
|
-
|
|
553
|
-
## 1.69.0-rc.8
|
|
554
|
-
|
|
555
|
-
### Minor Changes
|
|
556
|
-
|
|
557
|
-
- 3010514: ZERO-3011:add shipping_option_operator and custom filter to getOrders
|
|
558
|
-
- ca774b3: ZERO-3002:add register with loyalty url
|
|
559
|
-
|
|
560
|
-
## 1.69.0-rc.7
|
|
561
|
-
|
|
562
|
-
### Minor Changes
|
|
563
|
-
|
|
564
|
-
- 3bfa12a: ZERO-3003:Add fetchLoyaltyData and setLoyaltyData requests to RTK
|
|
565
|
-
|
|
566
|
-
## 1.69.0-rc.6
|
|
567
|
-
|
|
568
|
-
### Minor Changes
|
|
569
|
-
|
|
570
|
-
- 4d3deb4: ZERO-2935: sentry 8 upgrade
|
|
571
151
|
- 063da74: ZERO-3010: Remove pz-iyzico-saved-card package
|
|
572
152
|
- 72da021: ZERO-3010: Remove unused code in pretty-url.tsx
|
|
573
153
|
- 5632a99: ZERO-3010: Remove iyzicoSavedCardReducer from reducers
|
|
574
154
|
- cbdb0c8: ZERO-3010: Move pretty url page into project
|
|
575
155
|
- 80c869b: ZERO-3010: Remove savedCardMiddleware from redux middlewares
|
|
576
156
|
|
|
577
|
-
## 1.69.0-rc.5
|
|
578
|
-
|
|
579
|
-
### Minor Changes
|
|
580
|
-
|
|
581
|
-
- 80c869b: ZERO-3010: Remove savedCardMiddleware from redux middlewares
|
|
582
|
-
|
|
583
|
-
## 1.69.0-rc.4
|
|
584
|
-
|
|
585
|
-
### Minor Changes
|
|
586
|
-
|
|
587
|
-
- 063da74: ZERO-3010: Remove pz-iyzico-saved-card package
|
|
588
|
-
|
|
589
|
-
## 1.69.0-rc.3
|
|
590
|
-
|
|
591
|
-
### Minor Changes
|
|
592
|
-
|
|
593
|
-
- cbdb0c8: ZERO-3010: Move pretty url page into project
|
|
594
|
-
|
|
595
|
-
## 1.69.0-rc.2
|
|
596
|
-
|
|
597
|
-
### Minor Changes
|
|
598
|
-
|
|
599
|
-
- 5632a99: ZERO-3010: Remove iyzicoSavedCardReducer from reducers
|
|
600
|
-
|
|
601
|
-
## 1.69.0-rc.1
|
|
602
|
-
|
|
603
|
-
### Minor Changes
|
|
604
|
-
|
|
605
|
-
- 72da021: ZERO-3010: Remove unused code in pretty-url.tsx
|
|
606
|
-
|
|
607
|
-
## 1.69.0-rc.0
|
|
608
|
-
|
|
609
|
-
### Minor Changes
|
|
610
|
-
|
|
611
|
-
- 4d3deb4: ZERO-2935: sentry 8 upgrade
|
|
612
|
-
|
|
613
157
|
## 1.68.0
|
|
614
158
|
|
|
615
159
|
### Minor Changes
|
|
@@ -719,183 +263,11 @@
|
|
|
719
263
|
|
|
720
264
|
### Minor Changes
|
|
721
265
|
|
|
722
|
-
- c416d18: ZERO-2915: Add delivery option null check for setAddress
|
|
723
|
-
- 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
|
|
724
|
-
- 5dfeea0: ZERO-2801: Revert ZERO-2801
|
|
725
|
-
- a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
|
|
726
|
-
- fda5b927: ZERO-2725: fix invalid import
|
|
727
|
-
- 2d9b2b2c: ZERO-2816: Add segment to headers
|
|
728
|
-
- c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
729
|
-
- 6c25f66: ZERO-2551: Check CACHE_HOST variable
|
|
730
|
-
- bc2b4117: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
731
|
-
- 3bf2dd9: ZERO-2551: Fix search page
|
|
732
|
-
- e9541a13: ZERO-2816: Add headers to url
|
|
733
|
-
- 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.
|
|
734
|
-
- 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
|
|
735
|
-
- 64699d3f: ZERO-2761: Fix invalid import for plugin module
|
|
736
|
-
- 0d3a913e: ZERO-2725: Update decimal scale in Price component
|
|
737
|
-
- 7b05522: ZERO-2905: Fix resend and close button in otp package
|
|
738
|
-
- d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
|
|
739
|
-
- d3474c64: ZERO-2655: Add data source shipping option
|
|
740
|
-
- 17f87524: ZERO-2816: Make the incoming currency lowercase
|
|
741
|
-
- 29ead87: ZERO-2905: Fix resend and close button in otp package
|
|
742
|
-
- c45b62c: ZERO-2818: Add upload and download support for b2b package
|
|
743
|
-
- 91265bba: ZERO-2551: Improve pretty url and caching performance
|
|
744
|
-
- bbe18b9f: ZERO-2575: Fix build error
|
|
745
|
-
- d4099960: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
|
|
746
|
-
- 4920742: Disable getCachedTranslations
|
|
747
|
-
- 12a873e: ZERO-2846:Edit the siteKey regex in the response from GetCaptcha
|
|
748
|
-
- 7e56d6b: ZERO-2841: Update api tagTypes
|
|
749
|
-
- 94b69285: ZERO-2551: Add cache handler check in url-redirection middleware
|
|
750
|
-
- 98bb8dcd: ZERO-2706: Cache getTranlations method
|
|
751
|
-
- dcc8a150: ZERO-2694: added build step to RC branch pipeline
|
|
752
|
-
- 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
|
|
753
|
-
- fad27689: ZERO-2739: add gpay to payment plugin map
|
|
754
|
-
- dff0d595: ZERO-2659: add formData support to proxy api requests
|
|
755
|
-
- fdd0b41: ZERO-2706: Add optimized translation support
|
|
756
|
-
- f2c325c: ZERO-2838: Move file input component into @akinon/next
|
|
757
|
-
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
758
|
-
- beb499e6: ZERO-2551: Add new tsconfig paths
|
|
759
|
-
- f2c92d5c: ZERO-2816: Update cookie name
|
|
760
|
-
- 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
761
|
-
- f3d076b: ZERO-2864: create tabby extension plugin
|
|
762
|
-
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
763
|
-
- 49eeebf: ZERO-2909: Add deleteCollectionItem query to wishlistApi
|
|
764
|
-
- 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
765
|
-
- 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
|
|
766
|
-
|
|
767
|
-
## 1.56.0-rc.7
|
|
768
|
-
|
|
769
|
-
## 1.56.0-rc.6
|
|
770
|
-
|
|
771
|
-
### Minor Changes
|
|
772
|
-
|
|
773
|
-
- f3d076b: ZERO-2864: create tabby extension plugin
|
|
774
|
-
|
|
775
|
-
## 1.56.0-rc.5
|
|
776
|
-
|
|
777
|
-
### Minor Changes
|
|
778
|
-
|
|
779
|
-
- c416d18: ZERO-2915: Add delivery option null check for setAddress
|
|
780
|
-
|
|
781
|
-
## 1.56.0-rc.4
|
|
782
|
-
|
|
783
|
-
### Minor Changes
|
|
784
|
-
|
|
785
|
-
- 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
|
|
786
|
-
- 5dfeea0: ZERO-2801: Revert ZERO-2801
|
|
787
|
-
- a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
|
|
788
|
-
- fda5b927: ZERO-2725: fix invalid import
|
|
789
|
-
- 2d9b2b2c: ZERO-2816: Add segment to headers
|
|
790
|
-
- c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
791
266
|
- d93a507: ZERO-2900: Fix pretty url rewrite
|
|
792
|
-
- 6c25f66: ZERO-2551: Check CACHE_HOST variable
|
|
793
|
-
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
794
|
-
- 3bf2dd9: ZERO-2551: Fix search page
|
|
795
|
-
- e9541a13: ZERO-2816: Add headers to url
|
|
796
|
-
- 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.
|
|
797
|
-
- 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
|
|
798
|
-
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
799
|
-
- 0d3a913e: ZERO-2725: Update decimal scale in Price component
|
|
800
|
-
- 7b05522: ZERO-2905: Fix resend and close button in otp package
|
|
801
|
-
- d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
|
|
802
|
-
- d3474c64: ZERO-2655: Add data source shipping option
|
|
803
|
-
- 17f8752: ZERO-2816: Make the incoming currency lowercase
|
|
804
|
-
- 29ead87: ZERO-2905: Fix resend and close button in otp package
|
|
805
|
-
- c45b62c: ZERO-2818: Add upload and download support for b2b package
|
|
806
|
-
- 91265bba: ZERO-2551: Improve pretty url and caching performance
|
|
807
|
-
- bbe18b9f: ZERO-2575: Fix build error
|
|
808
|
-
- d4099960: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
|
|
809
|
-
- 4920742: Disable getCachedTranslations
|
|
810
|
-
- 12a873e: ZERO-2846:Edit the siteKey regex in the response from GetCaptcha
|
|
811
267
|
- 674badc: ZERO-2912: Fix selected payment option view to handle null values
|
|
812
|
-
- 7e56d6b: ZERO-2841: Update api tagTypes
|
|
813
|
-
- 94b69285: ZERO-2551: Add cache handler check in url-redirection middleware
|
|
814
|
-
- 98bb8dcd: ZERO-2706: Cache getTranlations method
|
|
815
268
|
- 207ac6e: ZERO-2917: Add OrderSelectionPage endpoint
|
|
816
|
-
- dcc8a150: ZERO-2694: added build step to RC branch pipeline
|
|
817
|
-
- 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
|
|
818
|
-
- fad27689: ZERO-2739: add gpay to payment plugin map
|
|
819
|
-
- dff0d595: ZERO-2659: add formData support to proxy api requests
|
|
820
|
-
- fdd0b41: ZERO-2706: Add optimized translation support
|
|
821
|
-
- f2c325c: ZERO-2838: Move file input component into @akinon/next
|
|
822
|
-
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
823
|
-
- beb499e6: ZERO-2551: Add new tsconfig paths
|
|
824
|
-
- f2c92d5c: ZERO-2816: Update cookie name
|
|
825
|
-
- 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
826
|
-
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
827
269
|
- b9273fd: ZERO-2889: add host headers to requests
|
|
828
|
-
- 49eeebf: ZERO-2909: Add deleteCollectionItem query to wishlistApi
|
|
829
|
-
- 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
830
270
|
- c670bd4: ZERO-2900: Add middleware rewrite functionality
|
|
831
|
-
- 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
|
|
832
|
-
|
|
833
|
-
## 1.56.0-rc.3
|
|
834
|
-
|
|
835
|
-
### Minor Changes
|
|
836
|
-
|
|
837
|
-
- 674badc: ZERO-2912: Fix selected payment option view to handle null values
|
|
838
|
-
|
|
839
|
-
## 1.56.0-rc.2
|
|
840
|
-
|
|
841
|
-
### Minor Changes
|
|
842
|
-
|
|
843
|
-
- 7b05522: ZERO-2905: Fix resend and close button in otp package
|
|
844
|
-
- 29ead87: ZERO-2905: Fix resend and close button in otp package
|
|
845
|
-
|
|
846
|
-
## 1.56.0-rc.1
|
|
847
|
-
|
|
848
|
-
### Minor Changes
|
|
849
|
-
|
|
850
|
-
- 207ac6e: ZERO-2917: Add OrderSelectionPage endpoint
|
|
851
|
-
|
|
852
|
-
## 1.56.0-rc.0
|
|
853
|
-
|
|
854
|
-
### Minor Changes
|
|
855
|
-
|
|
856
|
-
- 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
|
|
857
|
-
- 5dfeea0: ZERO-2801: Revert ZERO-2801
|
|
858
|
-
- a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
|
|
859
|
-
- fda5b927: ZERO-2725: fix invalid import
|
|
860
|
-
- 2d9b2b2c: ZERO-2816: Add segment to headers
|
|
861
|
-
- c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
862
|
-
- d93a507: ZERO-2900: Fix pretty url rewrite
|
|
863
|
-
- 6c25f666: ZERO-2551: Check CACHE_HOST variable
|
|
864
|
-
- bc2b4117: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
865
|
-
- 3bf2dd94: ZERO-2551: Fix search page
|
|
866
|
-
- e9541a13: ZERO-2816: Add headers to url
|
|
867
|
-
- 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.
|
|
868
|
-
- 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
|
|
869
|
-
- 64699d3f: ZERO-2761: Fix invalid import for plugin module
|
|
870
|
-
- 0d3a913e: ZERO-2725: Update decimal scale in Price component
|
|
871
|
-
- d6edb1d0: ZERO-2551: Fix searchparams handling for list and other routes
|
|
872
|
-
- d3474c64: ZERO-2655: Add data source shipping option
|
|
873
|
-
- 17f87524: ZERO-2816: Make the incoming currency lowercase
|
|
874
|
-
- c45b62c9: ZERO-2818: Add upload and download support for b2b package
|
|
875
|
-
- 91265bba: ZERO-2551: Improve pretty url and caching performance
|
|
876
|
-
- bbe18b9f: ZERO-2575: Fix build error
|
|
877
|
-
- d4099960: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
|
|
878
|
-
- 4920742c: Disable getCachedTranslations
|
|
879
|
-
- 12a873e: ZERO-2846:Edit the siteKey regex in the response from GetCaptcha
|
|
880
|
-
- 7e56d6b6: ZERO-2841: Update api tagTypes
|
|
881
|
-
- 94b69285: ZERO-2551: Add cache handler check in url-redirection middleware
|
|
882
|
-
- 98bb8dcd: ZERO-2706: Cache getTranlations method
|
|
883
|
-
- dcc8a150: ZERO-2694: added build step to RC branch pipeline
|
|
884
|
-
- 8f47ccae: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
|
|
885
|
-
- fad27689: ZERO-2739: add gpay to payment plugin map
|
|
886
|
-
- dff0d595: ZERO-2659: add formData support to proxy api requests
|
|
887
|
-
- fdd0b41: ZERO-2706: Add optimized translation support
|
|
888
|
-
- f2c325c1: ZERO-2838: Move file input component into @akinon/next
|
|
889
|
-
- 9e25a64b: ZERO-2835: Update category page layout with breadcrumb
|
|
890
|
-
- beb499e6: ZERO-2551: Add new tsconfig paths
|
|
891
|
-
- f2c92d5c: ZERO-2816: Update cookie name
|
|
892
|
-
- 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
893
|
-
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
894
|
-
- b9273fd3: ZERO-2889: add host headers to requests
|
|
895
|
-
- 49eeebf: ZERO-2909: Add deleteCollectionItem query to wishlistApi
|
|
896
|
-
- 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
897
|
-
- c670bd48: ZERO-2900: Add middleware rewrite functionality
|
|
898
|
-
- 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
|
|
899
271
|
|
|
900
272
|
## 1.55.0
|
|
901
273
|
|
|
@@ -941,128 +313,7 @@
|
|
|
941
313
|
|
|
942
314
|
### Minor Changes
|
|
943
315
|
|
|
944
|
-
- 90282b53: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
945
|
-
- 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
|
|
946
|
-
- 5dfeea0: ZERO-2801: Revert ZERO-2801
|
|
947
|
-
- a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
|
|
948
|
-
- fda5b927: ZERO-2725: fix invalid import
|
|
949
|
-
- 2d9b2b2: ZERO-2816: Add segment to headers
|
|
950
|
-
- c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
951
|
-
- d93a507: ZERO-2900: Fix pretty url rewrite
|
|
952
|
-
- 8d9ac9a: ZERO-2794: Add field to order type
|
|
953
|
-
- 70279e7: ZERO-2817: Add metrics endpoint in default middleware
|
|
954
|
-
- 6c25f66: ZERO-2551: Check CACHE_HOST variable
|
|
955
|
-
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
956
|
-
- 3bf2dd9: ZERO-2551: Fix search page
|
|
957
|
-
- e9541a1: ZERO-2816: Add headers to url
|
|
958
|
-
- 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.
|
|
959
|
-
- 9d94f7e: ZERO-2820: update parent pk usage for menu generator
|
|
960
|
-
- 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
|
|
961
|
-
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
962
|
-
- 0d3a913e: ZERO-2725: Update decimal scale in Price component
|
|
963
|
-
- 1448a96e: ZERO-2612: add errors type in CheckoutState
|
|
964
|
-
- 1ec2e9d: ZERO-2895: Update app-fetch to include cookies in headers
|
|
965
|
-
- d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
|
|
966
|
-
- d3474c64: ZERO-2655: Add data source shipping option
|
|
967
|
-
- 75080fd6: ZERO-2630: Add max limit to postcode area
|
|
968
|
-
- 17f8752: ZERO-2816: Make the incoming currency lowercase
|
|
969
|
-
- c45b62c: ZERO-2818: Add upload and download support for b2b package
|
|
970
|
-
- 91265bba: ZERO-2551: Improve pretty url and caching performance
|
|
971
|
-
- bbe18b9f: ZERO-2575: Fix build error
|
|
972
|
-
- d4099960: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
|
|
973
|
-
- 4920742: Disable getCachedTranslations
|
|
974
|
-
- 12a873e: ZERO-2846:Edit the siteKey regex in the response from GetCaptcha
|
|
975
|
-
- 7e56d6b: ZERO-2841: Update api tagTypes
|
|
976
|
-
- 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
|
|
977
|
-
- 98bb8dcd: ZERO-2706: Cache getTranlations method
|
|
978
|
-
- 46b7aad7: ZERO-2775: Add condition and logger for menuitemmodel data
|
|
979
|
-
- dcc8a150: ZERO-2694: added build step to RC branch pipeline
|
|
980
|
-
- 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
|
|
981
|
-
- fad27689: ZERO-2739: add gpay to payment plugin map
|
|
982
|
-
- dff0d595: ZERO-2659: add formData support to proxy api requests
|
|
983
|
-
- fdd0b41: ZERO-2706: Add optimized translation support
|
|
984
|
-
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
985
|
-
- f2c325c: ZERO-2838: Move file input component into @akinon/next
|
|
986
|
-
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
987
|
-
- beb499e6: ZERO-2551: Add new tsconfig paths
|
|
988
|
-
- 146ea391: ZERO-2774: Update imports
|
|
989
|
-
- f2c92d5: ZERO-2816: Update cookie name
|
|
990
|
-
- 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
991
|
-
- c47be30d: ZERO-2744: Update Order and OrderItem types
|
|
992
|
-
- e9a46acb: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
993
|
-
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
994
|
-
- b9273fd: ZERO-2889: add host headers to requests
|
|
995
|
-
- 49eeebf: ZERO-2909: Add deleteCollectionItem query to wishlistApi
|
|
996
|
-
- 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
997
|
-
- c670bd4: ZERO-2900: Add middleware rewrite functionality
|
|
998
|
-
- 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
|
|
999
|
-
- 3d35f70: ZERO-2908: Add cookie to redirect url
|
|
1000
|
-
|
|
1001
|
-
## 1.50.0-rc.1
|
|
1002
|
-
|
|
1003
|
-
### Minor Changes
|
|
1004
|
-
|
|
1005
|
-
- 49eeebf: ZERO-2909: Add deleteCollectionItem query to wishlistApi
|
|
1006
|
-
|
|
1007
|
-
## 1.50.0-rc.0
|
|
1008
|
-
|
|
1009
|
-
### Minor Changes
|
|
1010
|
-
|
|
1011
|
-
- 90282b53: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
1012
|
-
- 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
|
|
1013
|
-
- 5dfeea0: ZERO-2801: Revert ZERO-2801
|
|
1014
|
-
- a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
|
|
1015
|
-
- fda5b927: ZERO-2725: fix invalid import
|
|
1016
|
-
- 2d9b2b2: ZERO-2816: Add segment to headers
|
|
1017
|
-
- c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
1018
|
-
- d93a507: ZERO-2900: Fix pretty url rewrite
|
|
1019
|
-
- 8d9ac9a: ZERO-2794: Add field to order type
|
|
1020
316
|
- eaf97d6: ZERO-2909: Add deleteCollectionItem query to wishlistApi
|
|
1021
|
-
- 70279e7: ZERO-2817: Add metrics endpoint in default middleware
|
|
1022
|
-
- 6c25f66: ZERO-2551: Check CACHE_HOST variable
|
|
1023
|
-
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
1024
|
-
- 3bf2dd9: ZERO-2551: Fix search page
|
|
1025
|
-
- e9541a1: ZERO-2816: Add headers to url
|
|
1026
|
-
- 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.
|
|
1027
|
-
- 9d94f7e: ZERO-2820: update parent pk usage for menu generator
|
|
1028
|
-
- 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
|
|
1029
|
-
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
1030
|
-
- 0d3a913e: ZERO-2725: Update decimal scale in Price component
|
|
1031
|
-
- 1448a96e: ZERO-2612: add errors type in CheckoutState
|
|
1032
|
-
- 1ec2e9d: ZERO-2895: Update app-fetch to include cookies in headers
|
|
1033
|
-
- d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
|
|
1034
|
-
- d3474c64: ZERO-2655: Add data source shipping option
|
|
1035
|
-
- 75080fd6: ZERO-2630: Add max limit to postcode area
|
|
1036
|
-
- 17f8752: ZERO-2816: Make the incoming currency lowercase
|
|
1037
|
-
- c45b62c: ZERO-2818: Add upload and download support for b2b package
|
|
1038
|
-
- 91265bba: ZERO-2551: Improve pretty url and caching performance
|
|
1039
|
-
- bbe18b9f: ZERO-2575: Fix build error
|
|
1040
|
-
- d4099960: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
|
|
1041
|
-
- 4920742: Disable getCachedTranslations
|
|
1042
|
-
- 12a873e: ZERO-2846:Edit the siteKey regex in the response from GetCaptcha
|
|
1043
|
-
- 7e56d6b: ZERO-2841: Update api tagTypes
|
|
1044
|
-
- 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
|
|
1045
|
-
- 98bb8dcd: ZERO-2706: Cache getTranlations method
|
|
1046
|
-
- 46b7aad7: ZERO-2775: Add condition and logger for menuitemmodel data
|
|
1047
|
-
- dcc8a150: ZERO-2694: added build step to RC branch pipeline
|
|
1048
|
-
- 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
|
|
1049
|
-
- fad27689: ZERO-2739: add gpay to payment plugin map
|
|
1050
|
-
- dff0d595: ZERO-2659: add formData support to proxy api requests
|
|
1051
|
-
- fdd0b41: ZERO-2706: Add optimized translation support
|
|
1052
|
-
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
1053
|
-
- f2c325c: ZERO-2838: Move file input component into @akinon/next
|
|
1054
|
-
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
1055
|
-
- beb499e6: ZERO-2551: Add new tsconfig paths
|
|
1056
|
-
- 146ea391: ZERO-2774: Update imports
|
|
1057
|
-
- f2c92d5: ZERO-2816: Update cookie name
|
|
1058
|
-
- 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
1059
|
-
- c47be30d: ZERO-2744: Update Order and OrderItem types
|
|
1060
|
-
- e9a46acb: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
1061
|
-
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
1062
|
-
- b9273fd: ZERO-2889: add host headers to requests
|
|
1063
|
-
- 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
1064
|
-
- c670bd4: ZERO-2900: Add middleware rewrite functionality
|
|
1065
|
-
- 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
|
|
1066
317
|
|
|
1067
318
|
## 1.49.0
|
|
1068
319
|
|
|
@@ -1088,126 +339,7 @@
|
|
|
1088
339
|
|
|
1089
340
|
### Minor Changes
|
|
1090
341
|
|
|
1091
|
-
- 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
1092
|
-
- 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
|
|
1093
|
-
- a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
|
|
1094
|
-
- fda5b92: ZERO-2725: fix invalid import
|
|
1095
|
-
- 2d9b2b2: ZERO-2816: Add segment to headers
|
|
1096
|
-
- c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
1097
|
-
- 8d9ac9a: ZERO-2794: Add field to order type
|
|
1098
|
-
- 70279e7: ZERO-2817: Add metrics endpoint in default middleware
|
|
1099
|
-
- 6c25f66: ZERO-2551: Check CACHE_HOST variable
|
|
1100
|
-
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
1101
|
-
- 3bf2dd9: ZERO-2551: Fix search page
|
|
1102
|
-
- e9541a1: ZERO-2816: Add headers to url
|
|
1103
|
-
- 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.
|
|
1104
|
-
- 9d94f7e: ZERO-2820: update parent pk usage for menu generator
|
|
1105
|
-
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
1106
|
-
- 0d3a913: ZERO-2725: Update decimal scale in Price component
|
|
1107
|
-
- 1448a96e: ZERO-2612: add errors type in CheckoutState
|
|
1108
|
-
- d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
|
|
1109
|
-
- d3474c6: ZERO-2655: Add data source shipping option
|
|
1110
|
-
- 75080fd6: ZERO-2630: Add max limit to postcode area
|
|
1111
|
-
- 17f8752: ZERO-2816: Make the incoming currency lowercase
|
|
1112
|
-
- c45b62c: ZERO-2818: Add upload and download support for b2b package
|
|
1113
|
-
- 91265bba: ZERO-2551: Improve pretty url and caching performance
|
|
1114
|
-
- bbe18b9f: ZERO-2575: Fix build error
|
|
1115
|
-
- d409996: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
|
|
1116
|
-
- 4920742: Disable getCachedTranslations
|
|
1117
|
-
- 7e56d6b: ZERO-2841: Update api tagTypes
|
|
1118
|
-
- 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
|
|
1119
|
-
- 98bb8dc: ZERO-2706: Cache getTranlations method
|
|
1120
|
-
- 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
|
|
1121
|
-
- dcc8a15: ZERO-2694: added build step to RC branch pipeline
|
|
1122
|
-
- 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
|
|
1123
|
-
- fad2768: ZERO-2739: add gpay to payment plugin map
|
|
1124
|
-
- dff0d595: ZERO-2659: add formData support to proxy api requests
|
|
1125
|
-
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
1126
|
-
- f2c325c: ZERO-2838: Move file input component into @akinon/next
|
|
1127
|
-
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
1128
|
-
- beb499e6: ZERO-2551: Add new tsconfig paths
|
|
1129
|
-
- 948eb42: ZERO-2852: Add out of stock endpoints
|
|
1130
|
-
- 146ea39: ZERO-2774: Update imports
|
|
1131
|
-
- f2c92d5: ZERO-2816: Update cookie name
|
|
1132
|
-
- 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
1133
|
-
- c47be30: ZERO-2744: Update Order and OrderItem types
|
|
1134
|
-
- e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
1135
|
-
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
1136
|
-
- 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
1137
|
-
- 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
|
|
1138
|
-
|
|
1139
|
-
## 1.45.0-rc.4
|
|
1140
|
-
|
|
1141
|
-
### Minor Changes
|
|
1142
|
-
|
|
1143
|
-
- 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
|
|
1144
|
-
|
|
1145
|
-
## 1.45.0-rc.3
|
|
1146
|
-
|
|
1147
|
-
### Minor Changes
|
|
1148
|
-
|
|
1149
|
-
- 948eb42: ZERO-2852: Add out of stock endpoints
|
|
1150
|
-
|
|
1151
|
-
## 1.45.0-rc.2
|
|
1152
|
-
|
|
1153
|
-
### Minor Changes
|
|
1154
|
-
|
|
1155
|
-
- c45b62c: ZERO-2818: Add upload and download support for b2b package
|
|
1156
|
-
- f2c325c: ZERO-2838: Move file input component into @akinon/next
|
|
1157
|
-
|
|
1158
|
-
## 1.45.0-rc.1
|
|
1159
|
-
|
|
1160
|
-
### Minor Changes
|
|
1161
|
-
|
|
1162
|
-
- 7e56d6b: ZERO-2841: Update api tagTypes
|
|
1163
|
-
|
|
1164
|
-
## 1.45.0-rc.0
|
|
1165
|
-
|
|
1166
|
-
### Minor Changes
|
|
1167
|
-
|
|
1168
|
-
- 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
1169
|
-
- 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
|
|
1170
|
-
- a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
|
|
1171
|
-
- fda5b92: ZERO-2725: fix invalid import
|
|
1172
|
-
- 2d9b2b2: ZERO-2816: Add segment to headers
|
|
1173
|
-
- c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
1174
|
-
- 8d9ac9a: ZERO-2794: Add field to order type
|
|
1175
|
-
- 70279e7: ZERO-2817: Add metrics endpoint in default middleware
|
|
1176
|
-
- 6c25f66: ZERO-2551: Check CACHE_HOST variable
|
|
1177
|
-
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
1178
|
-
- 3bf2dd9: ZERO-2551: Fix search page
|
|
1179
|
-
- e9541a1: ZERO-2816: Add headers to url
|
|
1180
|
-
- 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.
|
|
1181
|
-
- 9d94f7e: ZERO-2820: update parent pk usage for menu generator
|
|
1182
|
-
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
1183
|
-
- 0d3a913: ZERO-2725: Update decimal scale in Price component
|
|
1184
|
-
- 1448a96: ZERO-2612: add errors type in CheckoutState
|
|
1185
342
|
- 2ab6e08: ZERO-2841: Update getBasketDetail query
|
|
1186
|
-
- d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
|
|
1187
|
-
- d3474c6: ZERO-2655: Add data source shipping option
|
|
1188
|
-
- 75080fd: ZERO-2630: Add max limit to postcode area
|
|
1189
|
-
- 17f8752: ZERO-2816: Make the incoming currency lowercase
|
|
1190
|
-
- 91265bb: ZERO-2551: Improve pretty url and caching performance
|
|
1191
|
-
- bbe18b9: ZERO-2575: Fix build error
|
|
1192
|
-
- d409996: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
|
|
1193
|
-
- 4920742: Disable getCachedTranslations
|
|
1194
|
-
- 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
|
|
1195
|
-
- 98bb8dc: ZERO-2706: Cache getTranlations method
|
|
1196
|
-
- 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
|
|
1197
|
-
- dcc8a15: ZERO-2694: added build step to RC branch pipeline
|
|
1198
|
-
- fad2768: ZERO-2739: add gpay to payment plugin map
|
|
1199
|
-
- dff0d59: ZERO-2659: add formData support to proxy api requests
|
|
1200
|
-
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
1201
|
-
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
1202
|
-
- beb499e: ZERO-2551: Add new tsconfig paths
|
|
1203
|
-
- 146ea39: ZERO-2774: Update imports
|
|
1204
|
-
- f2c92d5: ZERO-2816: Update cookie name
|
|
1205
|
-
- 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
1206
|
-
- c47be30: ZERO-2744: Update Order and OrderItem types
|
|
1207
|
-
- e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
1208
|
-
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
1209
|
-
- 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
1210
|
-
- 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
|
|
1211
343
|
|
|
1212
344
|
## 1.44.0
|
|
1213
345
|
|
|
@@ -1215,201 +347,7 @@
|
|
|
1215
347
|
|
|
1216
348
|
### Minor Changes
|
|
1217
349
|
|
|
1218
|
-
- 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
1219
|
-
- 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
|
|
1220
|
-
- a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
|
|
1221
|
-
- fda5b92: ZERO-2725: fix invalid import
|
|
1222
|
-
- 2d9b2b2: ZERO-2816: Add segment to headers
|
|
1223
|
-
- c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
1224
|
-
- 8d9ac9a: ZERO-2794: Add field to order type
|
|
1225
|
-
- 70279e7: ZERO-2817: Add metrics endpoint in default middleware
|
|
1226
|
-
- 6c25f66: ZERO-2551: Check CACHE_HOST variable
|
|
1227
|
-
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
1228
|
-
- 3bf2dd9: ZERO-2551: Fix search page
|
|
1229
|
-
- e9541a1: ZERO-2816: Add headers to url
|
|
1230
|
-
- 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.
|
|
1231
|
-
- 9d94f7e: ZERO-2820: update parent pk usage for menu generator
|
|
1232
|
-
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
1233
|
-
- 0d3a913: ZERO-2725: Update decimal scale in Price component
|
|
1234
|
-
- 1448a96: ZERO-2612: add errors type in CheckoutState
|
|
1235
|
-
- d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
|
|
1236
|
-
- d3474c6: ZERO-2655: Add data source shipping option
|
|
1237
|
-
- 75080fd: ZERO-2630: Add max limit to postcode area
|
|
1238
|
-
- 17f8752: ZERO-2816: Make the incoming currency lowercase
|
|
1239
|
-
- 91265bb: ZERO-2551: Improve pretty url and caching performance
|
|
1240
|
-
- bbe18b9: ZERO-2575: Fix build error
|
|
1241
|
-
- d409996: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
|
|
1242
|
-
- 4920742: Disable getCachedTranslations
|
|
1243
|
-
- 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
|
|
1244
|
-
- 98bb8dc: ZERO-2706: Cache getTranlations method
|
|
1245
|
-
- 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
|
|
1246
|
-
- dcc8a15: ZERO-2694: added build step to RC branch pipeline
|
|
1247
|
-
- fad2768: ZERO-2739: add gpay to payment plugin map
|
|
1248
|
-
- dff0d59: ZERO-2659: add formData support to proxy api requests
|
|
1249
|
-
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
1250
|
-
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
1251
|
-
- beb499e: ZERO-2551: Add new tsconfig paths
|
|
1252
|
-
- 146ea39: ZERO-2774: Update imports
|
|
1253
|
-
- f2c92d5: ZERO-2816: Update cookie name
|
|
1254
|
-
- 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
1255
|
-
- c47be30: ZERO-2744: Update Order and OrderItem types
|
|
1256
|
-
- e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
1257
|
-
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
1258
|
-
- 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
1259
|
-
- 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
|
|
1260
|
-
|
|
1261
|
-
## 1.43.0-rc.15
|
|
1262
|
-
|
|
1263
|
-
## 1.43.0-rc.14
|
|
1264
|
-
|
|
1265
|
-
### Minor Changes
|
|
1266
|
-
|
|
1267
|
-
- 3bf2dd9: ZERO-2551: Fix search page
|
|
1268
|
-
|
|
1269
|
-
## 1.43.0-rc.13
|
|
1270
|
-
|
|
1271
|
-
### Minor Changes
|
|
1272
|
-
|
|
1273
|
-
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
1274
|
-
|
|
1275
|
-
## 1.43.0-rc.12
|
|
1276
|
-
|
|
1277
|
-
### Minor Changes
|
|
1278
|
-
|
|
1279
|
-
- 4920742: Disable getCachedTranslations
|
|
1280
|
-
|
|
1281
|
-
## 1.43.0-rc.11
|
|
1282
|
-
|
|
1283
|
-
### Minor Changes
|
|
1284
|
-
|
|
1285
|
-
- 6c25f66: ZERO-2551: Check CACHE_HOST variable
|
|
1286
|
-
|
|
1287
|
-
## 1.43.0-rc.10
|
|
1288
|
-
|
|
1289
|
-
### Minor Changes
|
|
1290
|
-
|
|
1291
|
-
- d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
|
|
1292
|
-
|
|
1293
|
-
## 1.43.0-rc.9
|
|
1294
|
-
|
|
1295
|
-
### Minor Changes
|
|
1296
|
-
|
|
1297
|
-
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
1298
|
-
|
|
1299
|
-
## 1.43.0-rc.8
|
|
1300
|
-
|
|
1301
|
-
### Minor Changes
|
|
1302
|
-
|
|
1303
|
-
- 70279e7: ZERO-2817: Add metrics endpoint in default middleware
|
|
1304
|
-
- 9d94f7e: ZERO-2820: update parent pk usage for menu generator
|
|
1305
|
-
|
|
1306
|
-
## 1.43.0-rc.7
|
|
1307
|
-
|
|
1308
|
-
### Minor Changes
|
|
1309
|
-
|
|
1310
|
-
- 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
1311
|
-
|
|
1312
|
-
## 1.43.0-rc.6
|
|
1313
|
-
|
|
1314
|
-
### Minor Changes
|
|
1315
|
-
|
|
1316
|
-
- 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
1317
|
-
- 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
|
|
1318
|
-
- a4c8d6a: ZERO-2663: Fix the image url for gif and svgs and return them without options
|
|
1319
|
-
- fda5b92: ZERO-2725: fix invalid import
|
|
1320
|
-
- 2d9b2b2: ZERO-2816: Add segment to headers
|
|
1321
|
-
- c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
1322
|
-
- 8d9ac9a: ZERO-2794: Add field to order type
|
|
1323
|
-
- e9541a1: ZERO-2816: Add headers to url
|
|
1324
|
-
- 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.
|
|
1325
|
-
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
1326
|
-
- 0d3a913: ZERO-2725: Update decimal scale in Price component
|
|
1327
|
-
- 1448a96: ZERO-2612: add errors type in CheckoutState
|
|
1328
|
-
- d3474c6: ZERO-2655: Add data source shipping option
|
|
1329
|
-
- 75080fd: ZERO-2630: Add max limit to postcode area
|
|
1330
|
-
- 17f8752: ZERO-2816: Make the incoming currency lowercase
|
|
1331
|
-
- 91265bb: ZERO-2551: Improve pretty url and caching performance
|
|
1332
|
-
- bbe18b9: ZERO-2575: Fix build error
|
|
1333
|
-
- d409996: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
|
|
1334
|
-
- 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
|
|
1335
|
-
- 98bb8dc: ZERO-2706: Cache getTranlations method
|
|
1336
|
-
- 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
|
|
1337
|
-
- dcc8a15: ZERO-2694: added build step to RC branch pipeline
|
|
1338
|
-
- fad2768: ZERO-2739: add gpay to payment plugin map
|
|
1339
|
-
- dff0d59: ZERO-2659: add formData support to proxy api requests
|
|
1340
|
-
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
1341
350
|
- 4a163f2: ZERO-2761: Add condition for basket summary
|
|
1342
|
-
- beb499e: ZERO-2551: Add new tsconfig paths
|
|
1343
|
-
- 146ea39: ZERO-2774: Update imports
|
|
1344
|
-
- f2c92d5: ZERO-2816: Update cookie name
|
|
1345
|
-
- c47be30: ZERO-2744: Update Order and OrderItem types
|
|
1346
|
-
- e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
1347
|
-
- f046f8e: ZERO-2575: update version for react-number-format
|
|
1348
|
-
- 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
1349
|
-
- 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
|
|
1350
|
-
|
|
1351
|
-
## 1.43.0-rc.5
|
|
1352
|
-
|
|
1353
|
-
### Minor Changes
|
|
1354
|
-
|
|
1355
|
-
- 17f8752: ZERO-2816: Make the incoming currency lowercase
|
|
1356
|
-
|
|
1357
|
-
## 1.43.0-rc.4
|
|
1358
|
-
|
|
1359
|
-
### Minor Changes
|
|
1360
|
-
|
|
1361
|
-
- 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
|
|
1362
|
-
|
|
1363
|
-
## 1.43.0-rc.3
|
|
1364
|
-
|
|
1365
|
-
### Minor Changes
|
|
1366
|
-
|
|
1367
|
-
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
1368
|
-
|
|
1369
|
-
## 1.43.0-rc.2
|
|
1370
|
-
|
|
1371
|
-
### Minor Changes
|
|
1372
|
-
|
|
1373
|
-
- f2c92d5: ZERO-2816: Update cookie name
|
|
1374
|
-
|
|
1375
|
-
## 1.43.0-rc.1
|
|
1376
|
-
|
|
1377
|
-
### Minor Changes
|
|
1378
|
-
|
|
1379
|
-
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
1380
|
-
|
|
1381
|
-
## 1.43.0-rc.0
|
|
1382
|
-
|
|
1383
|
-
### Minor Changes
|
|
1384
|
-
|
|
1385
|
-
- 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
1386
|
-
- 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
|
|
1387
|
-
- a4c8d6a: ZERO-2663: Fix the image url for gif and svgs and return them without options
|
|
1388
|
-
- fda5b92: ZERO-2725: fix invalid import
|
|
1389
|
-
- 2d9b2b2: ZERO-2816: Add segment to headers
|
|
1390
|
-
- c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
1391
|
-
- 8d9ac9a: ZERO-2794: Add field to order type
|
|
1392
|
-
- e9541a1: ZERO-2816: Add headers to url
|
|
1393
|
-
- 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.
|
|
1394
|
-
- 0d3a913: ZERO-2725: Update decimal scale in Price component
|
|
1395
|
-
- 1448a96: ZERO-2612: add errors type in CheckoutState
|
|
1396
|
-
- d3474c6: ZERO-2655: Add data source shipping option
|
|
1397
|
-
- 75080fd: ZERO-2630: Add max limit to postcode area
|
|
1398
|
-
- 91265bb: ZERO-2551: Improve pretty url and caching performance
|
|
1399
|
-
- bbe18b9: ZERO-2575: Fix build error
|
|
1400
|
-
- d409996: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
|
|
1401
|
-
- 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
|
|
1402
|
-
- 98bb8dc: ZERO-2706: Cache getTranlations method
|
|
1403
|
-
- 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
|
|
1404
|
-
- dcc8a15: ZERO-2694: added build step to RC branch pipeline
|
|
1405
|
-
- fad2768: ZERO-2739: add gpay to payment plugin map
|
|
1406
|
-
- dff0d59: ZERO-2659: add formData support to proxy api requests
|
|
1407
|
-
- beb499e: ZERO-2551: Add new tsconfig paths
|
|
1408
|
-
- 146ea39: ZERO-2774: Update imports
|
|
1409
|
-
- c47be30: ZERO-2744: Update Order and OrderItem types
|
|
1410
|
-
- e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
1411
|
-
- f046f8e: ZERO-2575: update version for react-number-format
|
|
1412
|
-
- 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
1413
351
|
|
|
1414
352
|
## 1.42.0
|
|
1415
353
|
|