@akinon/next 1.86.0 → 1.87.0-rc.1

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