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