@akinon/next 1.92.0 → 1.93.0-rc.47

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