@akinon/next 1.88.0 → 1.89.0-rc.0

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