@akinon/next 1.92.0 → 1.93.0-rc.46

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.
Files changed (54) hide show
  1. package/CHANGELOG.md +1166 -28
  2. package/__tests__/next-config.test.ts +1 -10
  3. package/__tests__/redirect.test.ts +758 -0
  4. package/api/image-proxy.ts +75 -0
  5. package/api/similar-product-list.ts +84 -0
  6. package/api/similar-products.ts +120 -0
  7. package/bin/pz-prebuild.js +0 -1
  8. package/components/accordion.tsx +20 -5
  9. package/components/file-input.tsx +65 -3
  10. package/components/input.tsx +2 -0
  11. package/components/link.tsx +16 -12
  12. package/components/modal.tsx +32 -16
  13. package/components/plugin-module.tsx +35 -3
  14. package/components/selected-payment-option-view.tsx +11 -0
  15. package/data/client/checkout.ts +25 -4
  16. package/data/server/basket.ts +72 -0
  17. package/data/server/category.ts +48 -28
  18. package/data/server/flatpage.ts +16 -12
  19. package/data/server/landingpage.ts +16 -12
  20. package/data/server/list.ts +23 -13
  21. package/data/server/product.ts +66 -39
  22. package/data/server/special-page.ts +16 -12
  23. package/data/urls.ts +7 -2
  24. package/hocs/server/with-segment-defaults.tsx +5 -2
  25. package/hooks/use-localization.ts +2 -3
  26. package/hooks/use-loyalty-availability.ts +21 -0
  27. package/instrumentation/node.ts +15 -13
  28. package/jest.config.js +7 -1
  29. package/lib/cache-handler.mjs +225 -16
  30. package/lib/cache.ts +2 -0
  31. package/middlewares/checkout-provider.ts +1 -1
  32. package/middlewares/complete-gpay.ts +6 -2
  33. package/middlewares/complete-masterpass.ts +7 -2
  34. package/middlewares/default.ts +232 -183
  35. package/middlewares/index.ts +3 -1
  36. package/middlewares/locale.ts +9 -1
  37. package/middlewares/redirection-payment.ts +6 -2
  38. package/middlewares/saved-card-redirection.ts +7 -2
  39. package/middlewares/three-d-redirection.ts +7 -2
  40. package/middlewares/url-redirection.ts +9 -15
  41. package/middlewares/wallet-complete-redirection.ts +203 -0
  42. package/package.json +3 -3
  43. package/plugins.d.ts +10 -0
  44. package/plugins.js +4 -1
  45. package/redux/middlewares/checkout.ts +15 -2
  46. package/redux/reducers/checkout.ts +9 -1
  47. package/sentry/index.ts +54 -17
  48. package/types/commerce/order.ts +1 -0
  49. package/types/index.ts +42 -1
  50. package/utils/app-fetch.ts +7 -2
  51. package/utils/index.ts +34 -10
  52. package/utils/redirect-ignore.ts +35 -0
  53. package/utils/redirect.ts +31 -6
  54. package/with-pz-config.js +1 -5
package/CHANGELOG.md CHANGED
@@ -1,28 +1,141 @@
1
1
  # @akinon/next
2
2
 
3
+ ## 1.93.0-rc.46
4
+
5
+ ### Minor Changes
6
+
7
+ - 5dfeea04: ZERO-2801: Revert ZERO-2801
8
+ - 823d82f9: ZERO-3393: Enhance error handling in checkout middleware to ensure errors are checked for existence before processing
9
+ - 28c7ea79: ZERO-3427: Refactor redirect utility to handle undefined URL and improve locale handling
10
+ - e1aa030d: ZERO-3473: Refactor locale handling to prioritize cookie value for matched locale
11
+ - 6e6b0a9e: ZERO-3422: Add pz-flow-payment package
12
+ - 63774a6a: ZERO-3351: Add commerce redirection ignore list functionality and related utility
13
+ - 2d9b2b2c9: ZERO-2816: Add segment to headers
14
+ - 5e1feca6: Revert "ZERO-3286: Add notFound handling for chunk URLs starting with \_next"
15
+ - 40a46853: ZERO-3182: Optimize basket update mutation with optimistic update
16
+ - 5f7edd6c: ZERO-3571: Enhance Jest configuration by adding base directory resolution and module name mapping
17
+ - 68bbcb27: ZERO-3393: Fix error handling in checkout middleware to check for errors array length
18
+ - d8be48fb: ZERO-3422: Update fetch method to use dynamic request method in wallet complete redirection middleware
19
+ - b55acb76: ZERO-2577: Fix pagination bug and update usePagination hook and ensure pagination controls rendering correctly
20
+ - f49bb74f: ZERO-3097: Add setCookie to logging in payment redirection middlewares
21
+ - 0ad91bbd: ZERO-3489: Improve error handling in data fetching across multiple pages and server functions
22
+ - 143be2b9: ZERO-3457: Crop styles are customizable and logic improved for rendering similar products modal
23
+ - e9541a13d: ZERO-2816: Add headers to url
24
+ - 9b7d0de6: ZERO-3393: Improve error handling in checkout middleware to support both object and array error formats
25
+ - 72fd4d67: ZERO-3084: Fix URL search parameters encoding in default middleware
26
+ - c53ef7b95: 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.
27
+ - a8539c8c: ZERO-3439: Enhance locale handling in middleware and redirect utility
28
+ - 16aff543: ZERO-3431: Add test script for redirect utility in package.json
29
+ - 64699d3ff: ZERO-2761: Fix invalid import for plugin module
30
+ - 9f8cd3bc: ZERO-3449: AI Search Active Filters & Crop Style changes have been implemented
31
+ - e974d8e8: ZERO-3406: Fix rc build
32
+ - 89ce46fc: ZERO-3493: return 404 status code for pz-not-found pages
33
+ - 7eb51ca9: ZERO-3424 :Update package versions
34
+ - c806fad7: ZERO-3422: Add Flow Payment plugin to the defined plugins list
35
+ - 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
36
+ - 8b1d24eb: ZERO-3422: Update fetch method to use dynamic request method in wallet complete redirection middleware
37
+ - d552629f: ZERO-3182: Refactor basketApi to use invalidatesTags and comment out onQueryStarted logic
38
+ - 17f87524e: ZERO-2816: Make the incoming currency lowercase
39
+ - 65d3b862: ZERO-3054: Update headers in appFetch
40
+ - 0abde6bb: ZERO-3422: Update fetch method to use dynamic request method in wallet complete redirection middleware
41
+ - 72ad7bb1: ZERO-3422: Add Flow Payment to the list of available plugins
42
+ - c39c7000: ZERO-3420: Refactor Modal component
43
+ - e7cd3a5e: ZERO-3435: Add Accept-Language to requestHeaders
44
+ - bbe18b9ff: ZERO-2575: Fix build error
45
+ - 17bfadc4: ZERO-3275: Disable OpenTelemetry monitoring in production environment
46
+ - 35dfb8f8: ZERO-3363: Refactor URL handling in checkout and redirection middlewares to use url.origin instead of process.env.NEXT_PUBLIC_URL
47
+ - 4920742c2: Disable getCachedTranslations
48
+ - b6e5b624: ZERO-3257: Enhance locale middleware to redirect using existing or default locale and support 303 status for POST requests
49
+ - 0de55738: ZERO-3418: Update remotePatterns hostname to allow all subdomains
50
+ - 7e56d6b6b: ZERO-2841: Update api tagTypes
51
+ - dfaceffd: ZERO-3356: Add useLoyaltyAvailability hook and update checkout state management
52
+ - 86642cfa: ZERO-3531: Add saveSampleProducts endpoint and update URLs in checkout
53
+ - d99a6a7d: ZERO-3457: Fixed the settings prop and made sure everything is customizable.
54
+ - 9dc7298a: ZERO-3416: Refactor Accordion component to enhance props and improve styling flexibility
55
+ - 33377cfd: ZERO-3267: Refactor import statement for ROUTES in error-page component
56
+ - 0bdab120: ZERO-3569: Refactor cache handler to improve Redis connection management and logging
57
+ - 43c182ee: ZERO-3054: Update Redis variable checks to conditionally include CACHE_SECRET
58
+ - c480272c: ZERO-3531: Refactor checkoutApi: Remove unnecessary invalidatesTags property from POST request from sample products
59
+ - b00a90b1: ZERO-3436: Preserve query params on redirect
60
+ - facf1ada: ZERO-3445: Add SameSite and Secure attributes
61
+ - 485e8ef8: ZERO-3422: Refactor parameter handling in wallet complete redirection middleware to use forEach
62
+ - 26b2d0b7: ZERO-3571: Remove test script execution from prebuild and simplify Jest module name mapping
63
+ - eeb20bea: Revert "ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing"
64
+ - 99b6e7b9: ZERO-3421: Enhance Sentry error handling by adding network error detection logic and refining initialization options
65
+ - 3bf63c8a: ZERO-3286: Add notFound handling for chunk URLs starting with \_next
66
+ - 9be2c081: ZERO-3243: Improve basket update query handling with optimistic updates
67
+ - f7fd459b: ZERO-3445: Refactor setCookie function to include domain handling and improve cookie string construction
68
+ - 4de5303c: ZERO-2504: add cookie filter to api client request
69
+ - dc678c31: ZERO-3523: Enhance redirect tests with dynamic locale handling and settings integration
70
+ - f2c92d5c7: ZERO-2816: Update cookie name
71
+ - a420947d: ZERO-3517: Fix optional chaining for rawData in error logging for category data handlers
72
+ - 7bd3d9928: ZERO-2801: Refactor locale middleware to handle single locale configuration
73
+ - acd2afdf: ZERO-3431: Fix import statement for findBaseDir in next-config test
74
+ - 2d3f1788: ZERO-3417: Enhance FileInput component with additional props for customization
75
+ - fdd255ee: ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing
76
+ - b434ac89: ZERO-3545: Update fetchCheckout API URL to include page parameter
77
+ - 49eeebfa: ZERO-2909: Add deleteCollectionItem query to wishlistApi
78
+ - 3f9b8d7e7: ZERO-2761: Update plugins.js for akinon-next
79
+ - fee608dd: ZERO-3422: Refactor body handling in wallet complete redirection middleware
80
+ - cbdb5c14: ZERO-3448: fix set cookie domain handling for subdomain locale strategy
81
+ - 0e823010: ZERO-3531: Add saveSampleProducts endpoint
82
+
3
83
  ## 1.92.0
4
84
 
5
85
  ## 1.91.0
6
86
 
7
87
  ### Minor Changes
8
88
 
9
- - d8fad39: ZERO-3370: include plugins test to build stage
10
89
  - 2552486: ZERO-3391: Add subdomain support to setLocale function
11
- - f8e4cac: ZERO-3343: restrict root hostname to only locale subdomains
12
- - 832bee3: ZERO-3343: add domain to cookie for subdomain locale strategy
13
- - 28a59d4: ZERO-3400: refactor cookie domain logic using fallback host
14
- - 8feabe9: ZERO-3343: add custom NextAuth options support
15
- - bf354de: ZERO-3321: add babel compiler for akinon/next test
16
- - 448adef: ZERO-3321: move csp test to akinon-next
17
- - 6c3629c: ZERO-3321: fix jest tests in akinon-next for standalone projects
18
- - 6bc260b: ZERO-3295: update default tailwind content list
90
+
91
+ ## 1.91.0-rc.1
92
+
93
+ ## 1.91.0-rc.0
94
+
95
+ ### Minor Changes
96
+
97
+ - 5dfeea04: ZERO-2801: Revert ZERO-2801
98
+ - 823d82f: ZERO-3393: Enhance error handling in checkout middleware to ensure errors are checked for existence before processing
99
+ - 63774a6a: ZERO-3351: Add commerce redirection ignore list functionality and related utility
100
+ - 2d9b2b2c: ZERO-2816: Add segment to headers
101
+ - 5e1feca6: Revert "ZERO-3286: Add notFound handling for chunk URLs starting with \_next"
102
+ - d8fad39: ZERO-3370: include plugins test to build stage
103
+ - 40a46853: ZERO-3182: Optimize basket update mutation with optimistic update
104
+ - 68bbcb2: ZERO-3393: Fix error handling in checkout middleware to check for errors array length
105
+ - f49bb74f: ZERO-3097: Add setCookie to logging in payment redirection middlewares
106
+ - e9541a13: ZERO-2816: Add headers to url
107
+ - 9b7d0de: ZERO-3393: Improve error handling in checkout middleware to support both object and array error formats
108
+ - 72fd4d67: ZERO-3084: Fix URL search parameters encoding in default middleware
109
+ - 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.
110
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
111
+ - e974d8e: ZERO-3406: Fix rc build
112
+ - bf354de4: ZERO-3321: add babel compiler for akinon/next test
113
+ - 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
114
+ - d552629f: ZERO-3182: Refactor basketApi to use invalidatesTags and comment out onQueryStarted logic
115
+ - 448adefb: ZERO-3321: move csp test to akinon-next
116
+ - 17f87524: ZERO-2816: Make the incoming currency lowercase
117
+ - 65d3b862: ZERO-3054: Update headers in appFetch
118
+ - bbe18b9f: ZERO-2575: Fix build error
119
+ - 17bfadc4: ZERO-3275: Disable OpenTelemetry monitoring in production environment
120
+ - 4920742c: Disable getCachedTranslations
121
+ - b6e5b624: ZERO-3257: Enhance locale middleware to redirect using existing or default locale and support 303 status for POST requests
122
+ - 6c3629c2: ZERO-3321: fix jest tests in akinon-next for standalone projects
123
+ - 7e56d6b6: ZERO-2841: Update api tagTypes
124
+ - dfaceff: ZERO-3356: Add useLoyaltyAvailability hook and update checkout state management
125
+ - 33377cfd: ZERO-3267: Refactor import statement for ROUTES in error-page component
126
+ - 43c182ee: ZERO-3054: Update Redis variable checks to conditionally include CACHE_SECRET
19
127
  - 943a239: ZERO-3370: add allowJs in akinon-next test tsconfig
20
- - 068dc39: ZERO-3343: update get-root-hostname logic
21
- - 942490f: ZERO-3295: move third party tailwind content list to akinon-next
22
- - b6d5bda: ZERO-3343: update changeset config
23
- - acf0320: ZERO-3321: remove babel config
24
- - 387356b: ZERO-3323: Refactor locale filtering logic in URL matcher regex
25
- - b2ee69b: ZERO-3321: delete unnecessary files
128
+ - eeb20bea: Revert "ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing"
129
+ - 3bf63c8a: ZERO-3286: Add notFound handling for chunk URLs starting with \_next
130
+ - 9be2c081: ZERO-3243: Improve basket update query handling with optimistic updates
131
+ - f2c92d5c: ZERO-2816: Update cookie name
132
+ - 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
133
+ - fdd255ee: ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing
134
+ - acf03209: ZERO-3321: remove babel config
135
+ - 387356b6: ZERO-3323: Refactor locale filtering logic in URL matcher regex
136
+ - 49eeebfa: ZERO-2909: Add deleteCollectionItem query to wishlistApi
137
+ - 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
138
+ - b2ee69b9: ZERO-3321: delete unnecessary files
26
139
  - 0cabbda: ZERO-3370: replace inline monorepo check with reusable utility
27
140
 
28
141
  ## 1.90.0
@@ -83,13 +196,217 @@
83
196
 
84
197
  ### Minor Changes
85
198
 
86
- - 2e0b7ff: ZERO-3226: Refactor checkoutApi to simplify request body structure by removing device_info parameter
87
- - 778aabf: ZERO-3163: Add frontend ID header to authentication requests and forgot password mutation
88
- - c0fef07: ZERO-3197: Refetch payment options after loyalty usage
89
- - 2d2ab44: ZERO-3226: Add device_info param to WalletPaymentPage request
90
- - 0200d56: ZERO-3163: Add frontendIds property to Settings interface
91
- - 7d1b5af: ZERO-3206: Encode search parameters in product data URL
92
- - aa05ed7: ZERO-3170: Add commerceRedirectionIgnoreList to settings and update URL redirection middleware
199
+ - ef75c03: ZERO-3267: Update error-page component to use ROUTES for link navigation
200
+
201
+ ## 1.82.0-rc.20
202
+
203
+ ### Minor Changes
204
+
205
+ - e5529cd: ZERO-3267: Update error-page component to use root path for links instead of ROUTES
206
+
207
+ ## 1.82.0-rc.19
208
+
209
+ ### Minor Changes
210
+
211
+ - 33377cf: ZERO-3267: Refactor import statement for ROUTES in error-page component
212
+
213
+ ## 1.82.0-rc.18
214
+
215
+ ### Minor Changes
216
+
217
+ - e4761d2: Refactor import statement for ROUTES in error-page component
218
+
219
+ ## 1.82.0-rc.17
220
+
221
+ ### Minor Changes
222
+
223
+ - e2c6d426: ZERO-2935: Add @sentry/nextjs dependency to akinon-next and remove from projectzeronext
224
+ - 70bc0aed: ZERO-3284: Set tracesSampleRate in Sentry configuration
225
+
226
+ ## 1.82.0-rc.16
227
+
228
+ ### Minor Changes
229
+
230
+ - 757ee539: ZERO-3207: Add SMS send & verify endpoints with state management
231
+ - 6f506af: ZERO-3229: Implement mini basket query for basket total quantity
232
+ - 5dfeea04: ZERO-2801: Revert ZERO-2801
233
+ - 2d9b2b2c: ZERO-2816: Add segment to headers
234
+ - 5e1feca: Revert "ZERO-3286: Add notFound handling for chunk URLs starting with \_next"
235
+ - c0c1962: ZERO-3258: Add new API endpoints for fetching Bukalemun image URL and bundle product data
236
+ - 40a46853: ZERO-3182: Optimize basket update mutation with optimistic update
237
+ - f49bb74f: ZERO-3097: Add setCookie to logging in payment redirection middlewares
238
+ - 0e05135: ZERO-3244: Encode URL search parameters
239
+ - e9541a13: ZERO-2816: Add headers to url
240
+ - 4d3deb4f: ZERO-2935: sentry 8 upgrade
241
+ - 72fd4d67: ZERO-3084: Fix URL search parameters encoding in default middleware
242
+ - c53ef7b9: ZERO-2668: The Link component has been updated to improve the logic for handling href values. Previously, if the href was not a string or started with 'http', it would return the href as is. Now, if the href is not provided, it will default to '#' to prevent any potential errors. Additionally, if the href is a string and does not start with 'http', it will be formatted with the locale and pathname, based on the localeUrlStrategy and defaultLocaleValue. This ensures that the correct href is generated based on the localization settings.
243
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
244
+ - 9abd011: ZERO-3267: Refactor error handling in ErrorPage component to set error details in Sentry scope
245
+ - 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
246
+ - d552629: ZERO-3182: Refactor basketApi to use invalidatesTags and comment out onQueryStarted logic
247
+ - c3b2f3f: ZERO-3267: Enable sentry client errors and filter them by log type
248
+ - 17f87524: ZERO-2816: Make the incoming currency lowercase
249
+ - 65d3b862: ZERO-3054: Update headers in appFetch
250
+ - bbe18b9f: ZERO-2575: Fix build error
251
+ - 17bfadc: ZERO-3275: Disable OpenTelemetry monitoring in production environment
252
+ - 4920742c: Disable getCachedTranslations
253
+ - b6e5b62: ZERO-3257: Enhance locale middleware to redirect using existing or default locale and support 303 status for POST requests
254
+ - ac65ca9: ZERO-3269: Enhance locale handling by adding Subdomain strategy and updating related functions
255
+ - 7e56d6b6: ZERO-2841: Update api tagTypes
256
+ - 43c182ee: ZERO-3054: Update Redis variable checks to conditionally include CACHE_SECRET
257
+ - 2d305aaf: ZERO-2935: Update Sentry configuration: remove hideSourceMaps option and add it to withPzConfig
258
+ - eeb20bea: Revert "ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing"
259
+ - 3bf63c8: ZERO-3286: Add notFound handling for chunk URLs starting with \_next
260
+ - 9be2c08: ZERO-3243: Improve basket update query handling with optimistic updates
261
+ - f2c92d5c: ZERO-2816: Update cookie name
262
+ - 2f3588f: ZERO-3287: Add user session handling in authentication flow
263
+ - 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
264
+ - fdd255ee: ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing
265
+ - 0b1bd07: ZERO-3240: Remove unused preOrderMiddleware
266
+ - 49eeebfa: ZERO-2909: Add deleteCollectionItem query to wishlistApi
267
+ - 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
268
+
269
+ ## 1.82.0-rc.15
270
+
271
+ ### Minor Changes
272
+
273
+ - 2f3588fb: ZERO-3287: Add user session handling in authentication flow
274
+
275
+ ## 1.82.0-rc.14
276
+
277
+ ### Minor Changes
278
+
279
+ - 5e1feca: Revert "ZERO-3286: Add notFound handling for chunk URLs starting with \_next"
280
+
281
+ ## 1.82.0-rc.13
282
+
283
+ ### Minor Changes
284
+
285
+ - 3bf63c8: ZERO-3286: Add notFound handling for chunk URLs starting with \_next
286
+
287
+ ## 1.82.0-rc.12
288
+
289
+ ### Minor Changes
290
+
291
+ - ac65ca9: ZERO-3269: Enhance locale handling by adding Subdomain strategy and updating related functions
292
+
293
+ ## 1.82.0-rc.11
294
+
295
+ ## 1.82.0-rc.10
296
+
297
+ ## 1.82.0-rc.9
298
+
299
+ ### Minor Changes
300
+
301
+ - 9abd011: ZERO-3267: Refactor error handling in ErrorPage component to set error details in Sentry scope
302
+
303
+ ## 1.82.0-rc.8
304
+
305
+ ### Minor Changes
306
+
307
+ - 17bfadc: ZERO-3275: Disable OpenTelemetry monitoring in production environment
308
+
309
+ ## 1.82.0-rc.7
310
+
311
+ ### Minor Changes
312
+
313
+ - c3b2f3f: ZERO-3267: Enable sentry client errors and filter them by log type
314
+
315
+ ## 1.82.0-rc.6
316
+
317
+ ### Minor Changes
318
+
319
+ - 0b1bd07f: ZERO-3240: Remove unused preOrderMiddleware
320
+
321
+ ## 1.82.0-rc.5
322
+
323
+ ### Minor Changes
324
+
325
+ - 6f506afc: ZERO-3229: Implement mini basket query for basket total quantity
326
+ - c0c19629: ZERO-3258: Add new API endpoints for fetching Bukalemun image URL and bundle product data
327
+ - 9be2c081: ZERO-3243: Improve basket update query handling with optimistic updates
328
+
329
+ ## 1.82.0-rc.4
330
+
331
+ ### Minor Changes
332
+
333
+ - b6e5b624: ZERO-3257: Enhance locale middleware to redirect using existing or default locale and support 303 status for POST requests
334
+
335
+ ## 1.82.0-rc.3
336
+
337
+ ## 1.82.0-rc.2
338
+
339
+ ### Minor Changes
340
+
341
+ - 757ee539: ZERO-3207: Add SMS send & verify endpoints with state management
342
+ - 5dfeea04: ZERO-2801: Revert ZERO-2801
343
+ - 2d9b2b2c: ZERO-2816: Add segment to headers
344
+ - 40a46853: ZERO-3182: Optimize basket update mutation with optimistic update
345
+ - f49bb74f: ZERO-3097: Add setCookie to logging in payment redirection middlewares
346
+ - 0e051352: ZERO-3244: Encode URL search parameters
347
+ - e9541a13: ZERO-2816: Add headers to url
348
+ - 4d3deb4f: ZERO-2935: sentry 8 upgrade
349
+ - 72fd4d67: ZERO-3084: Fix URL search parameters encoding in default middleware
350
+ - 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.
351
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
352
+ - 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
353
+ - d552629f: ZERO-3182: Refactor basketApi to use invalidatesTags and comment out onQueryStarted logic
354
+ - 17f87524: ZERO-2816: Make the incoming currency lowercase
355
+ - 65d3b862: ZERO-3054: Update headers in appFetch
356
+ - bbe18b9f: ZERO-2575: Fix build error
357
+ - 4920742c: Disable getCachedTranslations
358
+ - 7e56d6b6: ZERO-2841: Update api tagTypes
359
+ - 43c182ee: ZERO-3054: Update Redis variable checks to conditionally include CACHE_SECRET
360
+ - 2d305aaf: ZERO-2935: Update Sentry configuration: remove hideSourceMaps option and add it to withPzConfig
361
+ - eeb20bea: Revert "ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing"
362
+ - f2c92d5c: ZERO-2816: Update cookie name
363
+ - 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
364
+ - fdd255ee: ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing
365
+ - 49eeebfa: ZERO-2909: Add deleteCollectionItem query to wishlistApi
366
+ - 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
367
+
368
+ ## 1.82.0-rc.1
369
+
370
+ ### Minor Changes
371
+
372
+ - 0e051352: ZERO-3244: Encode URL search parameters
373
+
374
+ ## 1.82.0-rc.0
375
+
376
+ ### Minor Changes
377
+
378
+ - 2e0b7ffd: ZERO-3226: Refactor checkoutApi to simplify request body structure by removing device_info parameter
379
+ - 757ee539: ZERO-3207: Add SMS send & verify endpoints with state management
380
+ - 778aabf8: ZERO-3163: Add frontend ID header to authentication requests and forgot password mutation
381
+ - c0fef075: ZERO-3197: Refetch payment options after loyalty usage
382
+ - 5dfeea04: ZERO-2801: Revert ZERO-2801
383
+ - 2d9b2b2c: ZERO-2816: Add segment to headers
384
+ - 40a46853: ZERO-3182: Optimize basket update mutation with optimistic update
385
+ - 2d2ab446: ZERO-3226: Add device_info param to WalletPaymentPage request
386
+ - f49bb74f: ZERO-3097: Add setCookie to logging in payment redirection middlewares
387
+ - e9541a13: ZERO-2816: Add headers to url
388
+ - 4d3deb4f: ZERO-2935: sentry 8 upgrade
389
+ - 72fd4d67: ZERO-3084: Fix URL search parameters encoding in default middleware
390
+ - 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.
391
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
392
+ - 0200d568: ZERO-3163: Add frontendIds property to Settings interface
393
+ - 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
394
+ - d552629f: ZERO-3182: Refactor basketApi to use invalidatesTags and comment out onQueryStarted logic
395
+ - 17f87524: ZERO-2816: Make the incoming currency lowercase
396
+ - 65d3b862: ZERO-3054: Update headers in appFetch
397
+ - bbe18b9f: ZERO-2575: Fix build error
398
+ - 4920742c: Disable getCachedTranslations
399
+ - 7e56d6b6: ZERO-2841: Update api tagTypes
400
+ - 7d1b5af1: ZERO-3206: Encode search parameters in product data URL
401
+ - 43c182ee: ZERO-3054: Update Redis variable checks to conditionally include CACHE_SECRET
402
+ - 2d305aaf: ZERO-2935: Update Sentry configuration: remove hideSourceMaps option and add it to withPzConfig
403
+ - eeb20bea: Revert "ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing"
404
+ - f2c92d5c: ZERO-2816: Update cookie name
405
+ - 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
406
+ - fdd255ee: ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing
407
+ - aa05ed79: ZERO-3170: Add commerceRedirectionIgnoreList to settings and update URL redirection middleware
408
+ - 49eeebfa: ZERO-2909: Add deleteCollectionItem query to wishlistApi
409
+ - 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
93
410
 
94
411
  ## 1.81.0
95
412
 
@@ -109,7 +426,116 @@
109
426
 
110
427
  ### Minor Changes
111
428
 
112
- - 59fa21c: ZERO-3149: Add name-based mechanism for Redux middleware override
429
+ - 778aabf8: ZERO-3163: Add frontend ID header to authentication requests and forgot password mutation
430
+ - 5dfeea04: ZERO-2801: Revert ZERO-2801
431
+ - 2d9b2b2c: ZERO-2816: Add segment to headers
432
+ - fd4b74e9: ZERO-3126: add reset checkout state query
433
+ - f49bb74f: ZERO-3097: Add setCookie to logging in payment redirection middlewares
434
+ - e9541a13: ZERO-2816: Add headers to url
435
+ - 4d3deb4f: ZERO-2935: sentry 8 upgrade
436
+ - 72fd4d67: ZERO-3084: Fix URL search parameters encoding in default middleware
437
+ - 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.
438
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
439
+ - 0200d568: ZERO-3163: Add frontendIds property to Settings interface
440
+ - 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
441
+ - 17f87524: ZERO-2816: Make the incoming currency lowercase
442
+ - 65d3b862: ZERO-3054: Update headers in appFetch
443
+ - bbe18b9f: ZERO-2575: Fix build error
444
+ - 4920742c: Disable getCachedTranslations
445
+ - 7e56d6b6: ZERO-2841: Update api tagTypes
446
+ - 43c182ee: ZERO-3054: Update Redis variable checks to conditionally include CACHE_SECRET
447
+ - 2d305aaf: ZERO-2935: Update Sentry configuration: remove hideSourceMaps option and add it to withPzConfig
448
+ - 4cc22c7c: ZERO-3125: replace X-Frame-Options with CSP frame-ancestors
449
+ - eeb20bea: Revert "ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing"
450
+ - 6a0a0807: ZERO-3112: Update button
451
+ - f2c92d5c: ZERO-2816: Update cookie name
452
+ - 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
453
+ - fdd255ee: ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing
454
+ - 49eeebfa: ZERO-2909: Add deleteCollectionItem query to wishlistApi
455
+ - 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
456
+ - 7ab9e2fd: ZERO-3166: add tamara payment package
457
+
458
+ ## 1.79.0-rc.6
459
+
460
+ ### Minor Changes
461
+
462
+ - 0200d568: ZERO-3163: Add frontendIds property to Settings interface
463
+
464
+ ## 1.79.0-rc.5
465
+
466
+ ### Minor Changes
467
+
468
+ - 778aabf8: ZERO-3163: Add frontend ID header to authentication requests and forgot password mutation
469
+
470
+ ## 1.79.0-rc.4
471
+
472
+ ## 1.79.0-rc.3
473
+
474
+ ### Minor Changes
475
+
476
+ - 5dfeea04: ZERO-2801: Revert ZERO-2801
477
+ - 2d9b2b2c: ZERO-2816: Add segment to headers
478
+ - fd4b74e9: ZERO-3126: add reset checkout state query
479
+ - f49bb74f: ZERO-3097: Add setCookie to logging in payment redirection middlewares
480
+ - e9541a13: ZERO-2816: Add headers to url
481
+ - 4d3deb4f: ZERO-2935: sentry 8 upgrade
482
+ - 72fd4d67: ZERO-3084: Fix URL search parameters encoding in default middleware
483
+ - 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.
484
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
485
+ - 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
486
+ - 17f87524: ZERO-2816: Make the incoming currency lowercase
487
+ - 65d3b862: ZERO-3054: Update headers in appFetch
488
+ - bbe18b9f: ZERO-2575: Fix build error
489
+ - 4920742c: Disable getCachedTranslations
490
+ - 7e56d6b6: ZERO-2841: Update api tagTypes
491
+ - 43c182ee: ZERO-3054: Update Redis variable checks to conditionally include CACHE_SECRET
492
+ - 2d305aaf: ZERO-2935: Update Sentry configuration: remove hideSourceMaps option and add it to withPzConfig
493
+ - 4cc22c7c: ZERO-3125: replace X-Frame-Options with CSP frame-ancestors
494
+ - eeb20bea: Revert "ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing"
495
+ - 6a0a0807: ZERO-3112: Update button
496
+ - f2c92d5c: ZERO-2816: Update cookie name
497
+ - 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
498
+ - fdd255ee: ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing
499
+ - 59fa21ce: ZERO-3149: Add name-based mechanism for Redux middleware override
500
+ - 49eeebfa: ZERO-2909: Add deleteCollectionItem query to wishlistApi
501
+ - 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
502
+
503
+ ## 1.79.0-rc.2
504
+
505
+ ## 1.79.0-rc.1
506
+
507
+ ### Minor Changes
508
+
509
+ - 4cc22c7c: ZERO-3125: replace X-Frame-Options with CSP frame-ancestors
510
+
511
+ ## 1.79.0-rc.0
512
+
513
+ ### Minor Changes
514
+
515
+ - 5dfeea04: ZERO-2801: Revert ZERO-2801
516
+ - 2d9b2b2c: ZERO-2816: Add segment to headers
517
+ - fd4b74e9: ZERO-3126: add reset checkout state query
518
+ - f49bb74f: ZERO-3097: Add setCookie to logging in payment redirection middlewares
519
+ - e9541a13: ZERO-2816: Add headers to url
520
+ - 4d3deb4f: ZERO-2935: sentry 8 upgrade
521
+ - 72fd4d67: ZERO-3084: Fix URL search parameters encoding in default middleware
522
+ - 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.
523
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
524
+ - 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
525
+ - 17f87524: ZERO-2816: Make the incoming currency lowercase
526
+ - 65d3b862: ZERO-3054: Update headers in appFetch
527
+ - bbe18b9f: ZERO-2575: Fix build error
528
+ - 4920742c: Disable getCachedTranslations
529
+ - 7e56d6b6: ZERO-2841: Update api tagTypes
530
+ - 43c182ee: ZERO-3054: Update Redis variable checks to conditionally include CACHE_SECRET
531
+ - 2d305aaf: ZERO-2935: Update Sentry configuration: remove hideSourceMaps option and add it to withPzConfig
532
+ - eeb20bea: Revert "ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing"
533
+ - 6a0a0807: ZERO-3112: Update button
534
+ - f2c92d5c: ZERO-2816: Update cookie name
535
+ - 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
536
+ - fdd255ee: ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing
537
+ - 49eeebfa: ZERO-2909: Add deleteCollectionItem query to wishlistApi
538
+ - 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
113
539
 
114
540
  ## 1.78.0
115
541
 
@@ -181,6 +607,52 @@
181
607
  ### Minor Changes
182
608
 
183
609
  - f34454a: ZERO-2953: Add hepsipay payment method
610
+ - 3bfa12a: ZERO-3003:Add fetchLoyaltyData and setLoyaltyData requests to RTK
611
+ - 4d3deb4: ZERO-2935: sentry 8 upgrade
612
+ - 3010514: ZERO-3011:add shipping_option_operator and custom filter to getOrders
613
+ - 9a50730: ZERO-3015: Add currency parameter to getOrders query
614
+ - ca774b3: ZERO-3002:add register with loyalty url
615
+ - 56cdddc: ZERO-0000: SHOP-78125: Change unpaid_amount with total_amount_with_interest
616
+ - 3344bca: ZERO-3013: Enable web vitals tracking in settings.js
617
+
618
+ ## 1.71.0-rc.7
619
+
620
+ ## 1.71.0-rc.6
621
+
622
+ ### Minor Changes
623
+
624
+ - f34454a: ZERO-2953: Add hepsipay payment method
625
+
626
+ ## 1.71.0-rc.5
627
+
628
+ ## 1.71.0-rc.4
629
+
630
+ ## 1.71.0-rc.3
631
+
632
+ ### Minor Changes
633
+
634
+ - 3344bca: ZERO-3013: Enable web vitals tracking in settings.js
635
+
636
+ ## 1.71.0-rc.2
637
+
638
+ ### Minor Changes
639
+
640
+ - 56cdddc: ZERO-0000: SHOP-78125: Change unpaid_amount with total_amount_with_interest
641
+
642
+ ## 1.71.0-rc.1
643
+
644
+ ### Minor Changes
645
+
646
+ - 9a50730: ZERO-3015: Add currency parameter to getOrders query
647
+
648
+ ## 1.71.0-rc.0
649
+
650
+ ### Minor Changes
651
+
652
+ - 3bfa12a: ZERO-3003:Add fetchLoyaltyData and setLoyaltyData requests to RTK
653
+ - 4d3deb4: ZERO-2935: sentry 8 upgrade
654
+ - 3010514: ZERO-3011:add shipping_option_operator and custom filter to getOrders
655
+ - ca774b3: ZERO-3002:add register with loyalty url
184
656
 
185
657
  ## 1.70.0
186
658
 
@@ -192,12 +664,72 @@
192
664
 
193
665
  ### Minor Changes
194
666
 
667
+ - 3bfa12a: ZERO-3003:Add fetchLoyaltyData and setLoyaltyData requests to RTK
668
+ - 4d3deb4: ZERO-2935: sentry 8 upgrade
669
+ - 3010514: ZERO-3011:add shipping_option_operator and custom filter to getOrders
670
+ - ca774b3: ZERO-3002:add register with loyalty url
671
+ - f046f8e: ZERO-2575: update version for react-number-format
672
+
673
+ ## 1.69.0-rc.8
674
+
675
+ ### Minor Changes
676
+
677
+ - 3010514: ZERO-3011:add shipping_option_operator and custom filter to getOrders
678
+ - ca774b3: ZERO-3002:add register with loyalty url
679
+
680
+ ## 1.69.0-rc.7
681
+
682
+ ### Minor Changes
683
+
684
+ - 3bfa12a: ZERO-3003:Add fetchLoyaltyData and setLoyaltyData requests to RTK
685
+
686
+ ## 1.69.0-rc.6
687
+
688
+ ### Minor Changes
689
+
690
+ - 4d3deb4: ZERO-2935: sentry 8 upgrade
195
691
  - 063da74: ZERO-3010: Remove pz-iyzico-saved-card package
196
692
  - 72da021: ZERO-3010: Remove unused code in pretty-url.tsx
197
693
  - 5632a99: ZERO-3010: Remove iyzicoSavedCardReducer from reducers
198
694
  - cbdb0c8: ZERO-3010: Move pretty url page into project
199
695
  - 80c869b: ZERO-3010: Remove savedCardMiddleware from redux middlewares
200
696
 
697
+ ## 1.69.0-rc.5
698
+
699
+ ### Minor Changes
700
+
701
+ - 80c869b: ZERO-3010: Remove savedCardMiddleware from redux middlewares
702
+
703
+ ## 1.69.0-rc.4
704
+
705
+ ### Minor Changes
706
+
707
+ - 063da74: ZERO-3010: Remove pz-iyzico-saved-card package
708
+
709
+ ## 1.69.0-rc.3
710
+
711
+ ### Minor Changes
712
+
713
+ - cbdb0c8: ZERO-3010: Move pretty url page into project
714
+
715
+ ## 1.69.0-rc.2
716
+
717
+ ### Minor Changes
718
+
719
+ - 5632a99: ZERO-3010: Remove iyzicoSavedCardReducer from reducers
720
+
721
+ ## 1.69.0-rc.1
722
+
723
+ ### Minor Changes
724
+
725
+ - 72da021: ZERO-3010: Remove unused code in pretty-url.tsx
726
+
727
+ ## 1.69.0-rc.0
728
+
729
+ ### Minor Changes
730
+
731
+ - 4d3deb4: ZERO-2935: sentry 8 upgrade
732
+
201
733
  ## 1.68.0
202
734
 
203
735
  ### Minor Changes
@@ -307,11 +839,183 @@
307
839
 
308
840
  ### Minor Changes
309
841
 
842
+ - c416d18: ZERO-2915: Add delivery option null check for setAddress
843
+ - 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
844
+ - 5dfeea0: ZERO-2801: Revert ZERO-2801
845
+ - a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
846
+ - fda5b927: ZERO-2725: fix invalid import
847
+ - 2d9b2b2c: ZERO-2816: Add segment to headers
848
+ - c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
849
+ - 6c25f66: ZERO-2551: Check CACHE_HOST variable
850
+ - bc2b4117: ZERO-2825: Add attribute-based shipping options to checkout page
851
+ - 3bf2dd9: ZERO-2551: Fix search page
852
+ - e9541a13: ZERO-2816: Add headers to url
853
+ - 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.
854
+ - 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
855
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
856
+ - 0d3a913e: ZERO-2725: Update decimal scale in Price component
857
+ - 7b05522: ZERO-2905: Fix resend and close button in otp package
858
+ - d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
859
+ - d3474c64: ZERO-2655: Add data source shipping option
860
+ - 17f87524: ZERO-2816: Make the incoming currency lowercase
861
+ - 29ead87: ZERO-2905: Fix resend and close button in otp package
862
+ - c45b62c: ZERO-2818: Add upload and download support for b2b package
863
+ - 91265bba: ZERO-2551: Improve pretty url and caching performance
864
+ - bbe18b9f: ZERO-2575: Fix build error
865
+ - d4099960: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
866
+ - 4920742: Disable getCachedTranslations
867
+ - 12a873e: ZERO-2846:Edit the siteKey regex in the response from GetCaptcha
868
+ - 7e56d6b: ZERO-2841: Update api tagTypes
869
+ - 94b69285: ZERO-2551: Add cache handler check in url-redirection middleware
870
+ - 98bb8dcd: ZERO-2706: Cache getTranlations method
871
+ - dcc8a150: ZERO-2694: added build step to RC branch pipeline
872
+ - 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
873
+ - fad27689: ZERO-2739: add gpay to payment plugin map
874
+ - dff0d595: ZERO-2659: add formData support to proxy api requests
875
+ - fdd0b41: ZERO-2706: Add optimized translation support
876
+ - f2c325c: ZERO-2838: Move file input component into @akinon/next
877
+ - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
878
+ - beb499e6: ZERO-2551: Add new tsconfig paths
879
+ - f2c92d5c: ZERO-2816: Update cookie name
880
+ - 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
881
+ - f3d076b: ZERO-2864: create tabby extension plugin
882
+ - f046f8e0: ZERO-2575: update version for react-number-format
883
+ - 49eeebf: ZERO-2909: Add deleteCollectionItem query to wishlistApi
884
+ - 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
885
+ - 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
886
+
887
+ ## 1.56.0-rc.7
888
+
889
+ ## 1.56.0-rc.6
890
+
891
+ ### Minor Changes
892
+
893
+ - f3d076b: ZERO-2864: create tabby extension plugin
894
+
895
+ ## 1.56.0-rc.5
896
+
897
+ ### Minor Changes
898
+
899
+ - c416d18: ZERO-2915: Add delivery option null check for setAddress
900
+
901
+ ## 1.56.0-rc.4
902
+
903
+ ### Minor Changes
904
+
905
+ - 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
906
+ - 5dfeea0: ZERO-2801: Revert ZERO-2801
907
+ - a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
908
+ - fda5b927: ZERO-2725: fix invalid import
909
+ - 2d9b2b2c: ZERO-2816: Add segment to headers
910
+ - c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
310
911
  - d93a507: ZERO-2900: Fix pretty url rewrite
912
+ - 6c25f66: ZERO-2551: Check CACHE_HOST variable
913
+ - bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
914
+ - 3bf2dd9: ZERO-2551: Fix search page
915
+ - e9541a13: ZERO-2816: Add headers to url
916
+ - 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.
917
+ - 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
918
+ - 64699d3: ZERO-2761: Fix invalid import for plugin module
919
+ - 0d3a913e: ZERO-2725: Update decimal scale in Price component
920
+ - 7b05522: ZERO-2905: Fix resend and close button in otp package
921
+ - d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
922
+ - d3474c64: ZERO-2655: Add data source shipping option
923
+ - 17f8752: ZERO-2816: Make the incoming currency lowercase
924
+ - 29ead87: ZERO-2905: Fix resend and close button in otp package
925
+ - c45b62c: ZERO-2818: Add upload and download support for b2b package
926
+ - 91265bba: ZERO-2551: Improve pretty url and caching performance
927
+ - bbe18b9f: ZERO-2575: Fix build error
928
+ - d4099960: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
929
+ - 4920742: Disable getCachedTranslations
930
+ - 12a873e: ZERO-2846:Edit the siteKey regex in the response from GetCaptcha
311
931
  - 674badc: ZERO-2912: Fix selected payment option view to handle null values
932
+ - 7e56d6b: ZERO-2841: Update api tagTypes
933
+ - 94b69285: ZERO-2551: Add cache handler check in url-redirection middleware
934
+ - 98bb8dcd: ZERO-2706: Cache getTranlations method
312
935
  - 207ac6e: ZERO-2917: Add OrderSelectionPage endpoint
936
+ - dcc8a150: ZERO-2694: added build step to RC branch pipeline
937
+ - 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
938
+ - fad27689: ZERO-2739: add gpay to payment plugin map
939
+ - dff0d595: ZERO-2659: add formData support to proxy api requests
940
+ - fdd0b41: ZERO-2706: Add optimized translation support
941
+ - f2c325c: ZERO-2838: Move file input component into @akinon/next
942
+ - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
943
+ - beb499e6: ZERO-2551: Add new tsconfig paths
944
+ - f2c92d5c: ZERO-2816: Update cookie name
945
+ - 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
946
+ - f046f8e0: ZERO-2575: update version for react-number-format
313
947
  - b9273fd: ZERO-2889: add host headers to requests
948
+ - 49eeebf: ZERO-2909: Add deleteCollectionItem query to wishlistApi
949
+ - 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
314
950
  - c670bd4: ZERO-2900: Add middleware rewrite functionality
951
+ - 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
952
+
953
+ ## 1.56.0-rc.3
954
+
955
+ ### Minor Changes
956
+
957
+ - 674badc: ZERO-2912: Fix selected payment option view to handle null values
958
+
959
+ ## 1.56.0-rc.2
960
+
961
+ ### Minor Changes
962
+
963
+ - 7b05522: ZERO-2905: Fix resend and close button in otp package
964
+ - 29ead87: ZERO-2905: Fix resend and close button in otp package
965
+
966
+ ## 1.56.0-rc.1
967
+
968
+ ### Minor Changes
969
+
970
+ - 207ac6e: ZERO-2917: Add OrderSelectionPage endpoint
971
+
972
+ ## 1.56.0-rc.0
973
+
974
+ ### Minor Changes
975
+
976
+ - 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
977
+ - 5dfeea0: ZERO-2801: Revert ZERO-2801
978
+ - a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
979
+ - fda5b927: ZERO-2725: fix invalid import
980
+ - 2d9b2b2c: ZERO-2816: Add segment to headers
981
+ - c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
982
+ - d93a507: ZERO-2900: Fix pretty url rewrite
983
+ - 6c25f666: ZERO-2551: Check CACHE_HOST variable
984
+ - bc2b4117: ZERO-2825: Add attribute-based shipping options to checkout page
985
+ - 3bf2dd94: ZERO-2551: Fix search page
986
+ - e9541a13: ZERO-2816: Add headers to url
987
+ - 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.
988
+ - 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
989
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
990
+ - 0d3a913e: ZERO-2725: Update decimal scale in Price component
991
+ - d6edb1d0: ZERO-2551: Fix searchparams handling for list and other routes
992
+ - d3474c64: ZERO-2655: Add data source shipping option
993
+ - 17f87524: ZERO-2816: Make the incoming currency lowercase
994
+ - c45b62c9: ZERO-2818: Add upload and download support for b2b package
995
+ - 91265bba: ZERO-2551: Improve pretty url and caching performance
996
+ - bbe18b9f: ZERO-2575: Fix build error
997
+ - d4099960: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
998
+ - 4920742c: Disable getCachedTranslations
999
+ - 12a873e: ZERO-2846:Edit the siteKey regex in the response from GetCaptcha
1000
+ - 7e56d6b6: ZERO-2841: Update api tagTypes
1001
+ - 94b69285: ZERO-2551: Add cache handler check in url-redirection middleware
1002
+ - 98bb8dcd: ZERO-2706: Cache getTranlations method
1003
+ - dcc8a150: ZERO-2694: added build step to RC branch pipeline
1004
+ - 8f47ccae: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
1005
+ - fad27689: ZERO-2739: add gpay to payment plugin map
1006
+ - dff0d595: ZERO-2659: add formData support to proxy api requests
1007
+ - fdd0b41: ZERO-2706: Add optimized translation support
1008
+ - f2c325c1: ZERO-2838: Move file input component into @akinon/next
1009
+ - 9e25a64b: ZERO-2835: Update category page layout with breadcrumb
1010
+ - beb499e6: ZERO-2551: Add new tsconfig paths
1011
+ - f2c92d5c: ZERO-2816: Update cookie name
1012
+ - 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
1013
+ - f046f8e0: ZERO-2575: update version for react-number-format
1014
+ - b9273fd3: ZERO-2889: add host headers to requests
1015
+ - 49eeebf: ZERO-2909: Add deleteCollectionItem query to wishlistApi
1016
+ - 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
1017
+ - c670bd48: ZERO-2900: Add middleware rewrite functionality
1018
+ - 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
315
1019
 
316
1020
  ## 1.55.0
317
1021
 
@@ -357,11 +1061,132 @@
357
1061
 
358
1062
  ### Minor Changes
359
1063
 
360
- - eaf97d6: ZERO-2909: Add deleteCollectionItem query to wishlistApi
361
-
362
- ## 1.49.0
363
-
364
- ### Minor Changes
1064
+ - 90282b53: ZERO-2729: Audit packages for yarn and npm and also update app-template
1065
+ - 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
1066
+ - 5dfeea0: ZERO-2801: Revert ZERO-2801
1067
+ - a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
1068
+ - fda5b927: ZERO-2725: fix invalid import
1069
+ - 2d9b2b2: ZERO-2816: Add segment to headers
1070
+ - c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
1071
+ - d93a507: ZERO-2900: Fix pretty url rewrite
1072
+ - 8d9ac9a: ZERO-2794: Add field to order type
1073
+ - 70279e7: ZERO-2817: Add metrics endpoint in default middleware
1074
+ - 6c25f66: ZERO-2551: Check CACHE_HOST variable
1075
+ - bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
1076
+ - 3bf2dd9: ZERO-2551: Fix search page
1077
+ - e9541a1: ZERO-2816: Add headers to url
1078
+ - 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.
1079
+ - 9d94f7e: ZERO-2820: update parent pk usage for menu generator
1080
+ - 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
1081
+ - 64699d3: ZERO-2761: Fix invalid import for plugin module
1082
+ - 0d3a913e: ZERO-2725: Update decimal scale in Price component
1083
+ - 1448a96e: ZERO-2612: add errors type in CheckoutState
1084
+ - 1ec2e9d: ZERO-2895: Update app-fetch to include cookies in headers
1085
+ - d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
1086
+ - d3474c64: ZERO-2655: Add data source shipping option
1087
+ - 75080fd6: ZERO-2630: Add max limit to postcode area
1088
+ - 17f8752: ZERO-2816: Make the incoming currency lowercase
1089
+ - c45b62c: ZERO-2818: Add upload and download support for b2b package
1090
+ - 91265bba: ZERO-2551: Improve pretty url and caching performance
1091
+ - bbe18b9f: ZERO-2575: Fix build error
1092
+ - d4099960: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
1093
+ - 4920742: Disable getCachedTranslations
1094
+ - 12a873e: ZERO-2846:Edit the siteKey regex in the response from GetCaptcha
1095
+ - 7e56d6b: ZERO-2841: Update api tagTypes
1096
+ - 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
1097
+ - 98bb8dcd: ZERO-2706: Cache getTranlations method
1098
+ - 46b7aad7: ZERO-2775: Add condition and logger for menuitemmodel data
1099
+ - dcc8a150: ZERO-2694: added build step to RC branch pipeline
1100
+ - 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
1101
+ - fad27689: ZERO-2739: add gpay to payment plugin map
1102
+ - dff0d595: ZERO-2659: add formData support to proxy api requests
1103
+ - fdd0b41: ZERO-2706: Add optimized translation support
1104
+ - eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
1105
+ - f2c325c: ZERO-2838: Move file input component into @akinon/next
1106
+ - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
1107
+ - beb499e6: ZERO-2551: Add new tsconfig paths
1108
+ - 146ea391: ZERO-2774: Update imports
1109
+ - f2c92d5: ZERO-2816: Update cookie name
1110
+ - 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
1111
+ - c47be30d: ZERO-2744: Update Order and OrderItem types
1112
+ - e9a46acb: ZERO-2738: add CVC input to registered cards in Masterpass
1113
+ - f046f8e0: ZERO-2575: update version for react-number-format
1114
+ - b9273fd: ZERO-2889: add host headers to requests
1115
+ - 49eeebf: ZERO-2909: Add deleteCollectionItem query to wishlistApi
1116
+ - 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
1117
+ - c670bd4: ZERO-2900: Add middleware rewrite functionality
1118
+ - 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
1119
+ - 3d35f70: ZERO-2908: Add cookie to redirect url
1120
+
1121
+ ## 1.50.0-rc.1
1122
+
1123
+ ### Minor Changes
1124
+
1125
+ - 49eeebf: ZERO-2909: Add deleteCollectionItem query to wishlistApi
1126
+
1127
+ ## 1.50.0-rc.0
1128
+
1129
+ ### Minor Changes
1130
+
1131
+ - 90282b53: ZERO-2729: Audit packages for yarn and npm and also update app-template
1132
+ - 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
1133
+ - 5dfeea0: ZERO-2801: Revert ZERO-2801
1134
+ - a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
1135
+ - fda5b927: ZERO-2725: fix invalid import
1136
+ - 2d9b2b2: ZERO-2816: Add segment to headers
1137
+ - c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
1138
+ - d93a507: ZERO-2900: Fix pretty url rewrite
1139
+ - 8d9ac9a: ZERO-2794: Add field to order type
1140
+ - eaf97d6: ZERO-2909: Add deleteCollectionItem query to wishlistApi
1141
+ - 70279e7: ZERO-2817: Add metrics endpoint in default middleware
1142
+ - 6c25f66: ZERO-2551: Check CACHE_HOST variable
1143
+ - bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
1144
+ - 3bf2dd9: ZERO-2551: Fix search page
1145
+ - e9541a1: ZERO-2816: Add headers to url
1146
+ - 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.
1147
+ - 9d94f7e: ZERO-2820: update parent pk usage for menu generator
1148
+ - 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
1149
+ - 64699d3: ZERO-2761: Fix invalid import for plugin module
1150
+ - 0d3a913e: ZERO-2725: Update decimal scale in Price component
1151
+ - 1448a96e: ZERO-2612: add errors type in CheckoutState
1152
+ - 1ec2e9d: ZERO-2895: Update app-fetch to include cookies in headers
1153
+ - d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
1154
+ - d3474c64: ZERO-2655: Add data source shipping option
1155
+ - 75080fd6: ZERO-2630: Add max limit to postcode area
1156
+ - 17f8752: ZERO-2816: Make the incoming currency lowercase
1157
+ - c45b62c: ZERO-2818: Add upload and download support for b2b package
1158
+ - 91265bba: ZERO-2551: Improve pretty url and caching performance
1159
+ - bbe18b9f: ZERO-2575: Fix build error
1160
+ - d4099960: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
1161
+ - 4920742: Disable getCachedTranslations
1162
+ - 12a873e: ZERO-2846:Edit the siteKey regex in the response from GetCaptcha
1163
+ - 7e56d6b: ZERO-2841: Update api tagTypes
1164
+ - 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
1165
+ - 98bb8dcd: ZERO-2706: Cache getTranlations method
1166
+ - 46b7aad7: ZERO-2775: Add condition and logger for menuitemmodel data
1167
+ - dcc8a150: ZERO-2694: added build step to RC branch pipeline
1168
+ - 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
1169
+ - fad27689: ZERO-2739: add gpay to payment plugin map
1170
+ - dff0d595: ZERO-2659: add formData support to proxy api requests
1171
+ - fdd0b41: ZERO-2706: Add optimized translation support
1172
+ - eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
1173
+ - f2c325c: ZERO-2838: Move file input component into @akinon/next
1174
+ - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
1175
+ - beb499e6: ZERO-2551: Add new tsconfig paths
1176
+ - 146ea391: ZERO-2774: Update imports
1177
+ - f2c92d5: ZERO-2816: Update cookie name
1178
+ - 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
1179
+ - c47be30d: ZERO-2744: Update Order and OrderItem types
1180
+ - e9a46acb: ZERO-2738: add CVC input to registered cards in Masterpass
1181
+ - f046f8e0: ZERO-2575: update version for react-number-format
1182
+ - b9273fd: ZERO-2889: add host headers to requests
1183
+ - 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
1184
+ - c670bd4: ZERO-2900: Add middleware rewrite functionality
1185
+ - 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
1186
+
1187
+ ## 1.49.0
1188
+
1189
+ ### Minor Changes
365
1190
 
366
1191
  - 26b809f: ZERO-2898: Add bags_fee property to PreOrder interface
367
1192
  - 20da358: ZERO-2898: Add setDeliveryBags mutation to checkout api
@@ -383,7 +1208,126 @@
383
1208
 
384
1209
  ### Minor Changes
385
1210
 
1211
+ - 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
1212
+ - 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
1213
+ - a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
1214
+ - fda5b92: ZERO-2725: fix invalid import
1215
+ - 2d9b2b2: ZERO-2816: Add segment to headers
1216
+ - c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
1217
+ - 8d9ac9a: ZERO-2794: Add field to order type
1218
+ - 70279e7: ZERO-2817: Add metrics endpoint in default middleware
1219
+ - 6c25f66: ZERO-2551: Check CACHE_HOST variable
1220
+ - bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
1221
+ - 3bf2dd9: ZERO-2551: Fix search page
1222
+ - e9541a1: ZERO-2816: Add headers to url
1223
+ - 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.
1224
+ - 9d94f7e: ZERO-2820: update parent pk usage for menu generator
1225
+ - 64699d3: ZERO-2761: Fix invalid import for plugin module
1226
+ - 0d3a913: ZERO-2725: Update decimal scale in Price component
1227
+ - 1448a96e: ZERO-2612: add errors type in CheckoutState
1228
+ - d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
1229
+ - d3474c6: ZERO-2655: Add data source shipping option
1230
+ - 75080fd6: ZERO-2630: Add max limit to postcode area
1231
+ - 17f8752: ZERO-2816: Make the incoming currency lowercase
1232
+ - c45b62c: ZERO-2818: Add upload and download support for b2b package
1233
+ - 91265bba: ZERO-2551: Improve pretty url and caching performance
1234
+ - bbe18b9f: ZERO-2575: Fix build error
1235
+ - d409996: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
1236
+ - 4920742: Disable getCachedTranslations
1237
+ - 7e56d6b: ZERO-2841: Update api tagTypes
1238
+ - 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
1239
+ - 98bb8dc: ZERO-2706: Cache getTranlations method
1240
+ - 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
1241
+ - dcc8a15: ZERO-2694: added build step to RC branch pipeline
1242
+ - 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
1243
+ - fad2768: ZERO-2739: add gpay to payment plugin map
1244
+ - dff0d595: ZERO-2659: add formData support to proxy api requests
1245
+ - eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
1246
+ - f2c325c: ZERO-2838: Move file input component into @akinon/next
1247
+ - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
1248
+ - beb499e6: ZERO-2551: Add new tsconfig paths
1249
+ - 948eb42: ZERO-2852: Add out of stock endpoints
1250
+ - 146ea39: ZERO-2774: Update imports
1251
+ - f2c92d5: ZERO-2816: Update cookie name
1252
+ - 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
1253
+ - c47be30: ZERO-2744: Update Order and OrderItem types
1254
+ - e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
1255
+ - f046f8e0: ZERO-2575: update version for react-number-format
1256
+ - 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
1257
+ - 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
1258
+
1259
+ ## 1.45.0-rc.4
1260
+
1261
+ ### Minor Changes
1262
+
1263
+ - 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
1264
+
1265
+ ## 1.45.0-rc.3
1266
+
1267
+ ### Minor Changes
1268
+
1269
+ - 948eb42: ZERO-2852: Add out of stock endpoints
1270
+
1271
+ ## 1.45.0-rc.2
1272
+
1273
+ ### Minor Changes
1274
+
1275
+ - c45b62c: ZERO-2818: Add upload and download support for b2b package
1276
+ - f2c325c: ZERO-2838: Move file input component into @akinon/next
1277
+
1278
+ ## 1.45.0-rc.1
1279
+
1280
+ ### Minor Changes
1281
+
1282
+ - 7e56d6b: ZERO-2841: Update api tagTypes
1283
+
1284
+ ## 1.45.0-rc.0
1285
+
1286
+ ### Minor Changes
1287
+
1288
+ - 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
1289
+ - 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
1290
+ - a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
1291
+ - fda5b92: ZERO-2725: fix invalid import
1292
+ - 2d9b2b2: ZERO-2816: Add segment to headers
1293
+ - c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
1294
+ - 8d9ac9a: ZERO-2794: Add field to order type
1295
+ - 70279e7: ZERO-2817: Add metrics endpoint in default middleware
1296
+ - 6c25f66: ZERO-2551: Check CACHE_HOST variable
1297
+ - bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
1298
+ - 3bf2dd9: ZERO-2551: Fix search page
1299
+ - e9541a1: ZERO-2816: Add headers to url
1300
+ - 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.
1301
+ - 9d94f7e: ZERO-2820: update parent pk usage for menu generator
1302
+ - 64699d3: ZERO-2761: Fix invalid import for plugin module
1303
+ - 0d3a913: ZERO-2725: Update decimal scale in Price component
1304
+ - 1448a96: ZERO-2612: add errors type in CheckoutState
386
1305
  - 2ab6e08: ZERO-2841: Update getBasketDetail query
1306
+ - d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
1307
+ - d3474c6: ZERO-2655: Add data source shipping option
1308
+ - 75080fd: ZERO-2630: Add max limit to postcode area
1309
+ - 17f8752: ZERO-2816: Make the incoming currency lowercase
1310
+ - 91265bb: ZERO-2551: Improve pretty url and caching performance
1311
+ - bbe18b9: ZERO-2575: Fix build error
1312
+ - d409996: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
1313
+ - 4920742: Disable getCachedTranslations
1314
+ - 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
1315
+ - 98bb8dc: ZERO-2706: Cache getTranlations method
1316
+ - 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
1317
+ - dcc8a15: ZERO-2694: added build step to RC branch pipeline
1318
+ - fad2768: ZERO-2739: add gpay to payment plugin map
1319
+ - dff0d59: ZERO-2659: add formData support to proxy api requests
1320
+ - eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
1321
+ - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
1322
+ - beb499e: ZERO-2551: Add new tsconfig paths
1323
+ - 146ea39: ZERO-2774: Update imports
1324
+ - f2c92d5: ZERO-2816: Update cookie name
1325
+ - 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
1326
+ - c47be30: ZERO-2744: Update Order and OrderItem types
1327
+ - e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
1328
+ - f046f8e0: ZERO-2575: update version for react-number-format
1329
+ - 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
1330
+ - 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
387
1331
 
388
1332
  ## 1.44.0
389
1333
 
@@ -391,7 +1335,201 @@
391
1335
 
392
1336
  ### Minor Changes
393
1337
 
1338
+ - 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
1339
+ - 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
1340
+ - a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
1341
+ - fda5b92: ZERO-2725: fix invalid import
1342
+ - 2d9b2b2: ZERO-2816: Add segment to headers
1343
+ - c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
1344
+ - 8d9ac9a: ZERO-2794: Add field to order type
1345
+ - 70279e7: ZERO-2817: Add metrics endpoint in default middleware
1346
+ - 6c25f66: ZERO-2551: Check CACHE_HOST variable
1347
+ - bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
1348
+ - 3bf2dd9: ZERO-2551: Fix search page
1349
+ - e9541a1: ZERO-2816: Add headers to url
1350
+ - 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.
1351
+ - 9d94f7e: ZERO-2820: update parent pk usage for menu generator
1352
+ - 64699d3: ZERO-2761: Fix invalid import for plugin module
1353
+ - 0d3a913: ZERO-2725: Update decimal scale in Price component
1354
+ - 1448a96: ZERO-2612: add errors type in CheckoutState
1355
+ - d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
1356
+ - d3474c6: ZERO-2655: Add data source shipping option
1357
+ - 75080fd: ZERO-2630: Add max limit to postcode area
1358
+ - 17f8752: ZERO-2816: Make the incoming currency lowercase
1359
+ - 91265bb: ZERO-2551: Improve pretty url and caching performance
1360
+ - bbe18b9: ZERO-2575: Fix build error
1361
+ - d409996: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
1362
+ - 4920742: Disable getCachedTranslations
1363
+ - 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
1364
+ - 98bb8dc: ZERO-2706: Cache getTranlations method
1365
+ - 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
1366
+ - dcc8a15: ZERO-2694: added build step to RC branch pipeline
1367
+ - fad2768: ZERO-2739: add gpay to payment plugin map
1368
+ - dff0d59: ZERO-2659: add formData support to proxy api requests
1369
+ - eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
1370
+ - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
1371
+ - beb499e: ZERO-2551: Add new tsconfig paths
1372
+ - 146ea39: ZERO-2774: Update imports
1373
+ - f2c92d5: ZERO-2816: Update cookie name
1374
+ - 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
1375
+ - c47be30: ZERO-2744: Update Order and OrderItem types
1376
+ - e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
1377
+ - f046f8e0: ZERO-2575: update version for react-number-format
1378
+ - 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
1379
+ - 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
1380
+
1381
+ ## 1.43.0-rc.15
1382
+
1383
+ ## 1.43.0-rc.14
1384
+
1385
+ ### Minor Changes
1386
+
1387
+ - 3bf2dd9: ZERO-2551: Fix search page
1388
+
1389
+ ## 1.43.0-rc.13
1390
+
1391
+ ### Minor Changes
1392
+
1393
+ - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
1394
+
1395
+ ## 1.43.0-rc.12
1396
+
1397
+ ### Minor Changes
1398
+
1399
+ - 4920742: Disable getCachedTranslations
1400
+
1401
+ ## 1.43.0-rc.11
1402
+
1403
+ ### Minor Changes
1404
+
1405
+ - 6c25f66: ZERO-2551: Check CACHE_HOST variable
1406
+
1407
+ ## 1.43.0-rc.10
1408
+
1409
+ ### Minor Changes
1410
+
1411
+ - d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
1412
+
1413
+ ## 1.43.0-rc.9
1414
+
1415
+ ### Minor Changes
1416
+
1417
+ - bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
1418
+
1419
+ ## 1.43.0-rc.8
1420
+
1421
+ ### Minor Changes
1422
+
1423
+ - 70279e7: ZERO-2817: Add metrics endpoint in default middleware
1424
+ - 9d94f7e: ZERO-2820: update parent pk usage for menu generator
1425
+
1426
+ ## 1.43.0-rc.7
1427
+
1428
+ ### Minor Changes
1429
+
1430
+ - 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
1431
+
1432
+ ## 1.43.0-rc.6
1433
+
1434
+ ### Minor Changes
1435
+
1436
+ - 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
1437
+ - 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
1438
+ - a4c8d6a: ZERO-2663: Fix the image url for gif and svgs and return them without options
1439
+ - fda5b92: ZERO-2725: fix invalid import
1440
+ - 2d9b2b2: ZERO-2816: Add segment to headers
1441
+ - c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
1442
+ - 8d9ac9a: ZERO-2794: Add field to order type
1443
+ - e9541a1: ZERO-2816: Add headers to url
1444
+ - 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.
1445
+ - 64699d3: ZERO-2761: Fix invalid import for plugin module
1446
+ - 0d3a913: ZERO-2725: Update decimal scale in Price component
1447
+ - 1448a96: ZERO-2612: add errors type in CheckoutState
1448
+ - d3474c6: ZERO-2655: Add data source shipping option
1449
+ - 75080fd: ZERO-2630: Add max limit to postcode area
1450
+ - 17f8752: ZERO-2816: Make the incoming currency lowercase
1451
+ - 91265bb: ZERO-2551: Improve pretty url and caching performance
1452
+ - bbe18b9: ZERO-2575: Fix build error
1453
+ - d409996: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
1454
+ - 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
1455
+ - 98bb8dc: ZERO-2706: Cache getTranlations method
1456
+ - 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
1457
+ - dcc8a15: ZERO-2694: added build step to RC branch pipeline
1458
+ - fad2768: ZERO-2739: add gpay to payment plugin map
1459
+ - dff0d59: ZERO-2659: add formData support to proxy api requests
1460
+ - eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
394
1461
  - 4a163f2: ZERO-2761: Add condition for basket summary
1462
+ - beb499e: ZERO-2551: Add new tsconfig paths
1463
+ - 146ea39: ZERO-2774: Update imports
1464
+ - f2c92d5: ZERO-2816: Update cookie name
1465
+ - c47be30: ZERO-2744: Update Order and OrderItem types
1466
+ - e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
1467
+ - f046f8e: ZERO-2575: update version for react-number-format
1468
+ - 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
1469
+ - 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
1470
+
1471
+ ## 1.43.0-rc.5
1472
+
1473
+ ### Minor Changes
1474
+
1475
+ - 17f8752: ZERO-2816: Make the incoming currency lowercase
1476
+
1477
+ ## 1.43.0-rc.4
1478
+
1479
+ ### Minor Changes
1480
+
1481
+ - 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
1482
+
1483
+ ## 1.43.0-rc.3
1484
+
1485
+ ### Minor Changes
1486
+
1487
+ - 64699d3: ZERO-2761: Fix invalid import for plugin module
1488
+
1489
+ ## 1.43.0-rc.2
1490
+
1491
+ ### Minor Changes
1492
+
1493
+ - f2c92d5: ZERO-2816: Update cookie name
1494
+
1495
+ ## 1.43.0-rc.1
1496
+
1497
+ ### Minor Changes
1498
+
1499
+ - eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
1500
+
1501
+ ## 1.43.0-rc.0
1502
+
1503
+ ### Minor Changes
1504
+
1505
+ - 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
1506
+ - 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
1507
+ - a4c8d6a: ZERO-2663: Fix the image url for gif and svgs and return them without options
1508
+ - fda5b92: ZERO-2725: fix invalid import
1509
+ - 2d9b2b2: ZERO-2816: Add segment to headers
1510
+ - c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
1511
+ - 8d9ac9a: ZERO-2794: Add field to order type
1512
+ - e9541a1: ZERO-2816: Add headers to url
1513
+ - 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.
1514
+ - 0d3a913: ZERO-2725: Update decimal scale in Price component
1515
+ - 1448a96: ZERO-2612: add errors type in CheckoutState
1516
+ - d3474c6: ZERO-2655: Add data source shipping option
1517
+ - 75080fd: ZERO-2630: Add max limit to postcode area
1518
+ - 91265bb: ZERO-2551: Improve pretty url and caching performance
1519
+ - bbe18b9: ZERO-2575: Fix build error
1520
+ - d409996: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
1521
+ - 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
1522
+ - 98bb8dc: ZERO-2706: Cache getTranlations method
1523
+ - 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
1524
+ - dcc8a15: ZERO-2694: added build step to RC branch pipeline
1525
+ - fad2768: ZERO-2739: add gpay to payment plugin map
1526
+ - dff0d59: ZERO-2659: add formData support to proxy api requests
1527
+ - beb499e: ZERO-2551: Add new tsconfig paths
1528
+ - 146ea39: ZERO-2774: Update imports
1529
+ - c47be30: ZERO-2744: Update Order and OrderItem types
1530
+ - e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
1531
+ - f046f8e: ZERO-2575: update version for react-number-format
1532
+ - 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
395
1533
 
396
1534
  ## 1.42.0
397
1535