@akinon/next 1.101.0 → 1.102.0-rc.77

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 (43) hide show
  1. package/CHANGELOG.md +1313 -35
  2. package/__tests__/next-config.test.ts +1 -10
  3. package/__tests__/redirect.test.ts +319 -0
  4. package/api/form.ts +84 -0
  5. package/api/image-proxy.ts +75 -0
  6. package/api/similar-product-list.ts +84 -0
  7. package/api/similar-products.ts +120 -0
  8. package/bin/pz-prebuild.js +1 -0
  9. package/components/accordion.tsx +20 -5
  10. package/components/file-input.tsx +65 -3
  11. package/components/input.tsx +2 -0
  12. package/components/link.tsx +16 -12
  13. package/components/modal.tsx +32 -16
  14. package/components/plugin-module.tsx +32 -4
  15. package/data/client/checkout.ts +4 -2
  16. package/data/server/basket.ts +72 -0
  17. package/data/server/category.ts +44 -24
  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 +6 -2
  24. package/hocs/server/with-segment-defaults.tsx +5 -2
  25. package/hooks/use-localization.ts +2 -3
  26. package/middlewares/complete-gpay.ts +2 -1
  27. package/middlewares/complete-masterpass.ts +2 -1
  28. package/middlewares/default.ts +50 -13
  29. package/middlewares/locale.ts +9 -1
  30. package/middlewares/redirection-payment.ts +2 -1
  31. package/middlewares/saved-card-redirection.ts +2 -1
  32. package/middlewares/three-d-redirection.ts +2 -2
  33. package/middlewares/url-redirection.ts +8 -14
  34. package/package.json +2 -2
  35. package/plugins.d.ts +8 -5
  36. package/plugins.js +3 -1
  37. package/redux/middlewares/checkout.ts +6 -2
  38. package/types/commerce/order.ts +1 -0
  39. package/types/index.ts +34 -1
  40. package/utils/app-fetch.ts +7 -2
  41. package/utils/redirect-ignore.ts +35 -0
  42. package/utils/redirect.ts +22 -3
  43. package/with-pz-config.js +1 -5
package/CHANGELOG.md CHANGED
@@ -1,5 +1,72 @@
1
1
  # @akinon/next
2
2
 
3
+ ## 1.102.0-rc.77
4
+
5
+ ### Minor Changes
6
+
7
+ - 4ca44c7: ZERO-3634: add register_consumer_card
8
+ - 5dfeea04a: ZERO-2801: Revert ZERO-2801
9
+ - 823d82f9: ZERO-3393: Enhance error handling in checkout middleware to ensure errors are checked for existence before processing
10
+ - 28c7ea79: ZERO-3427: Refactor redirect utility to handle undefined URL and improve locale handling
11
+ - e1aa030d: ZERO-3473: Refactor locale handling to prioritize cookie value for matched locale
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
+ - 68bbcb27: ZERO-3393: Fix error handling in checkout middleware to check for errors array length
17
+ - d8be48fb: ZERO-3422: Update fetch method to use dynamic request method in wallet complete redirection middleware
18
+ - b55acb76: ZERO-2577: Fix pagination bug and update usePagination hook and ensure pagination controls rendering correctly
19
+ - f49bb74f: ZERO-3097: Add setCookie to logging in payment redirection middlewares
20
+ - 0ad91bbd: ZERO-3489: Improve error handling in data fetching across multiple pages and server functions
21
+ - 143be2b9: ZERO-3457: Crop styles are customizable and logic improved for rendering similar products modal
22
+ - e9541a13d: ZERO-2816: Add headers to url
23
+ - 9b7d0de6: ZERO-3393: Improve error handling in checkout middleware to support both object and array error formats
24
+ - 72fd4d67: ZERO-3084: Fix URL search parameters encoding in default middleware
25
+ - 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.
26
+ - a8539c8c: ZERO-3439: Enhance locale handling in middleware and redirect utility
27
+ - 16aff543: ZERO-3431: Add test script for redirect utility in package.json
28
+ - 64699d3ff: ZERO-2761: Fix invalid import for plugin module
29
+ - 9f8cd3bc: ZERO-3449: AI Search Active Filters & Crop Style changes have been implemented
30
+ - e974d8e8: ZERO-3406: Fix rc build
31
+ - 89ce46fc: ZERO-3493: return 404 status code for pz-not-found pages
32
+ - 8645d90b: ZERO-3574:Refactor redirect tests: streamline mock setup, enhance locale handling, and improve URL path resolution logic
33
+ - 7eb51ca9: ZERO-3424 :Update package versions
34
+ - 7727ae55f: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
35
+ - 8b1d24eb: ZERO-3422: Update fetch method to use dynamic request method in wallet complete redirection middleware
36
+ - d552629f: ZERO-3182: Refactor basketApi to use invalidatesTags and comment out onQueryStarted logic
37
+ - 17f87524e: ZERO-2816: Make the incoming currency lowercase
38
+ - 65d3b862a: ZERO-3054: Update headers in appFetch
39
+ - c39c7000: ZERO-3420: Refactor Modal component
40
+ - bbe18b9ff: ZERO-2575: Fix build error
41
+ - 4920742c2: Disable getCachedTranslations
42
+ - a2fbee6: ZERO-3651: Fix correct is Iframe property in contextListMiddleware
43
+ - b6e5b624: ZERO-3257: Enhance locale middleware to redirect using existing or default locale and support 303 status for POST requests
44
+ - 0de55738: ZERO-3418: Update remotePatterns hostname to allow all subdomains
45
+ - 5ad87ff: ZERO-3646: Refactor form submission API to handle form data and improve error responses
46
+ - 7e56d6b6b: ZERO-2841: Update api tagTypes
47
+ - d99a6a7d: ZERO-3457: Fixed the settings prop and made sure everything is customizable.
48
+ - 9dc7298a: ZERO-3416: Refactor Accordion component to enhance props and improve styling flexibility
49
+ - 33377cfd: ZERO-3267: Refactor import statement for ROUTES in error-page component
50
+ - 43c182eef: ZERO-3054: Update Redis variable checks to conditionally include CACHE_SECRET
51
+ - c480272c: ZERO-3531: Refactor checkoutApi: Remove unnecessary invalidatesTags property from POST request from sample products
52
+ - facf1ada: ZERO-3445: Add SameSite and Secure attributes
53
+ - 3b255fe: ZERO-3629 :edit warnings in build
54
+ - eeb20beab: Revert "ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing"
55
+ - 5b50079: ZERO-3634: iyzico saved card
56
+ - 3bf63c8a: ZERO-3286: Add notFound handling for chunk URLs starting with \_next
57
+ - 9be2c081: ZERO-3243: Improve basket update query handling with optimistic updates
58
+ - f7fd459b: ZERO-3445: Refactor setCookie function to include domain handling and improve cookie string construction
59
+ - 4de5303c: ZERO-2504: add cookie filter to api client request
60
+ - dc678c31: ZERO-3523: Enhance redirect tests with dynamic locale handling and settings integration
61
+ - f2c92d5c7: ZERO-2816: Update cookie name
62
+ - 7bd3d9928: ZERO-2801: Refactor locale middleware to handle single locale configuration
63
+ - acd2afdf: ZERO-3431: Fix import statement for findBaseDir in next-config test
64
+ - 2d3f1788: ZERO-3417: Enhance FileInput component with additional props for customization
65
+ - fdd255eef: ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing
66
+ - 49eeebfaa: ZERO-2909: Add deleteCollectionItem query to wishlistApi
67
+ - 3f9b8d7e7: ZERO-2761: Update plugins.js for akinon-next
68
+ - 0e823010: ZERO-3531: Add saveSampleProducts endpoint
69
+
3
70
  ## 1.101.0
4
71
 
5
72
  ### Minor Changes
@@ -42,7 +109,76 @@
42
109
  ### Minor Changes
43
110
 
44
111
  - af5c93a: ZERO-3617: Add pre-order middleware instruction file
45
- - a420947: ZERO-3517: Fix optional chaining for rawData in error logging for category data handlers
112
+
113
+ ## 1.96.0-rc.57
114
+
115
+ ## 1.96.0-rc.56
116
+
117
+ ## 1.96.0-rc.55
118
+
119
+ ### Minor Changes
120
+
121
+ - 5dfeea04a: ZERO-2801: Revert ZERO-2801
122
+ - 823d82f9: ZERO-3393: Enhance error handling in checkout middleware to ensure errors are checked for existence before processing
123
+ - 28c7ea79: ZERO-3427: Refactor redirect utility to handle undefined URL and improve locale handling
124
+ - e1aa030d: ZERO-3473: Refactor locale handling to prioritize cookie value for matched locale
125
+ - 63774a6a: ZERO-3351: Add commerce redirection ignore list functionality and related utility
126
+ - 2d9b2b2c9: ZERO-2816: Add segment to headers
127
+ - 5e1feca6: Revert "ZERO-3286: Add notFound handling for chunk URLs starting with \_next"
128
+ - 40a46853: ZERO-3182: Optimize basket update mutation with optimistic update
129
+ - 5f7edd6: ZERO-3571: Enhance Jest configuration by adding base directory resolution and module name mapping
130
+ - 68bbcb27: ZERO-3393: Fix error handling in checkout middleware to check for errors array length
131
+ - d8be48fb: ZERO-3422: Update fetch method to use dynamic request method in wallet complete redirection middleware
132
+ - b55acb76: ZERO-2577: Fix pagination bug and update usePagination hook and ensure pagination controls rendering correctly
133
+ - f49bb74f: ZERO-3097: Add setCookie to logging in payment redirection middlewares
134
+ - 0ad91bb: ZERO-3489: Improve error handling in data fetching across multiple pages and server functions
135
+ - 143be2b9: ZERO-3457: Crop styles are customizable and logic improved for rendering similar products modal
136
+ - e9541a13d: ZERO-2816: Add headers to url
137
+ - 9b7d0de6: ZERO-3393: Improve error handling in checkout middleware to support both object and array error formats
138
+ - 72fd4d67: ZERO-3084: Fix URL search parameters encoding in default middleware
139
+ - 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.
140
+ - a8539c8c: ZERO-3439: Enhance locale handling in middleware and redirect utility
141
+ - 16aff543: ZERO-3431: Add test script for redirect utility in package.json
142
+ - 64699d3ff: ZERO-2761: Fix invalid import for plugin module
143
+ - 9f8cd3bc: ZERO-3449: AI Search Active Filters & Crop Style changes have been implemented
144
+ - e974d8e8: ZERO-3406: Fix rc build
145
+ - 89ce46fc: ZERO-3493: return 404 status code for pz-not-found pages
146
+ - 8645d90: ZERO-3574:Refactor redirect tests: streamline mock setup, enhance locale handling, and improve URL path resolution logic
147
+ - 7eb51ca9: ZERO-3424 :Update package versions
148
+ - 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
149
+ - 8b1d24eb: ZERO-3422: Update fetch method to use dynamic request method in wallet complete redirection middleware
150
+ - d552629f: ZERO-3182: Refactor basketApi to use invalidatesTags and comment out onQueryStarted logic
151
+ - 17f87524e: ZERO-2816: Make the incoming currency lowercase
152
+ - 65d3b862: ZERO-3054: Update headers in appFetch
153
+ - c39c7000: ZERO-3420: Refactor Modal component
154
+ - bbe18b9ff: ZERO-2575: Fix build error
155
+ - 4920742c2: Disable getCachedTranslations
156
+ - b6e5b624: ZERO-3257: Enhance locale middleware to redirect using existing or default locale and support 303 status for POST requests
157
+ - 0de55738: ZERO-3418: Update remotePatterns hostname to allow all subdomains
158
+ - 7e56d6b6b: ZERO-2841: Update api tagTypes
159
+ - d99a6a7d: ZERO-3457: Fixed the settings prop and made sure everything is customizable.
160
+ - 9dc7298a: ZERO-3416: Refactor Accordion component to enhance props and improve styling flexibility
161
+ - 33377cfd: ZERO-3267: Refactor import statement for ROUTES in error-page component
162
+ - 43c182ee: ZERO-3054: Update Redis variable checks to conditionally include CACHE_SECRET
163
+ - c480272: ZERO-3531: Refactor checkoutApi: Remove unnecessary invalidatesTags property from POST request from sample products
164
+ - b00a90b1: ZERO-3436: Preserve query params on redirect
165
+ - facf1ada: ZERO-3445: Add SameSite and Secure attributes
166
+ - 26b2d0b: ZERO-3571: Remove test script execution from prebuild and simplify Jest module name mapping
167
+ - eeb20bea: Revert "ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing"
168
+ - 3bf63c8a: ZERO-3286: Add notFound handling for chunk URLs starting with \_next
169
+ - 9be2c081: ZERO-3243: Improve basket update query handling with optimistic updates
170
+ - f7fd459b: ZERO-3445: Refactor setCookie function to include domain handling and improve cookie string construction
171
+ - 4de5303c: ZERO-2504: add cookie filter to api client request
172
+ - dc678c3: ZERO-3523: Enhance redirect tests with dynamic locale handling and settings integration
173
+ - f2c92d5c7: ZERO-2816: Update cookie name
174
+ - a420947d: ZERO-3517: Fix optional chaining for rawData in error logging for category data handlers
175
+ - 7bd3d9928: ZERO-2801: Refactor locale middleware to handle single locale configuration
176
+ - acd2afdf: ZERO-3431: Fix import statement for findBaseDir in next-config test
177
+ - 2d3f1788: ZERO-3417: Enhance FileInput component with additional props for customization
178
+ - fdd255ee: ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing
179
+ - 49eeebfa: ZERO-2909: Add deleteCollectionItem query to wishlistApi
180
+ - 3f9b8d7e7: ZERO-2761: Update plugins.js for akinon-next
181
+ - 0e82301: ZERO-3531: Add saveSampleProducts endpoint
46
182
 
47
183
  ## 1.95.0
48
184
 
@@ -74,32 +210,149 @@
74
210
  ### Minor Changes
75
211
 
76
212
  - 185396f: ZERO-3569: Refactor logging in cache handler to use console_log instead of logger
77
- - 0bdab12: ZERO-3569: Refactor cache handler to improve Redis connection management and logging
213
+
214
+ ## 1.93.0-rc.47
215
+
216
+ ### Minor Changes
217
+
78
218
  - 3e4aadc: ZERO-3569: Fix import statement for logger in cache handler
79
219
 
220
+ ## 1.93.0-rc.46
221
+
222
+ ### Minor Changes
223
+
224
+ - 5dfeea04: ZERO-2801: Revert ZERO-2801
225
+ - 823d82f9: ZERO-3393: Enhance error handling in checkout middleware to ensure errors are checked for existence before processing
226
+ - 28c7ea79: ZERO-3427: Refactor redirect utility to handle undefined URL and improve locale handling
227
+ - e1aa030d: ZERO-3473: Refactor locale handling to prioritize cookie value for matched locale
228
+ - 6e6b0a9e: ZERO-3422: Add pz-flow-payment package
229
+ - 63774a6a: ZERO-3351: Add commerce redirection ignore list functionality and related utility
230
+ - 2d9b2b2c9: ZERO-2816: Add segment to headers
231
+ - 5e1feca6: Revert "ZERO-3286: Add notFound handling for chunk URLs starting with \_next"
232
+ - 40a46853: ZERO-3182: Optimize basket update mutation with optimistic update
233
+ - 5f7edd6c: ZERO-3571: Enhance Jest configuration by adding base directory resolution and module name mapping
234
+ - 68bbcb27: ZERO-3393: Fix error handling in checkout middleware to check for errors array length
235
+ - d8be48fb: ZERO-3422: Update fetch method to use dynamic request method in wallet complete redirection middleware
236
+ - b55acb76: ZERO-2577: Fix pagination bug and update usePagination hook and ensure pagination controls rendering correctly
237
+ - f49bb74f: ZERO-3097: Add setCookie to logging in payment redirection middlewares
238
+ - 0ad91bbd: ZERO-3489: Improve error handling in data fetching across multiple pages and server functions
239
+ - 143be2b9: ZERO-3457: Crop styles are customizable and logic improved for rendering similar products modal
240
+ - e9541a13d: ZERO-2816: Add headers to url
241
+ - 9b7d0de6: ZERO-3393: Improve error handling in checkout middleware to support both object and array error formats
242
+ - 72fd4d67: ZERO-3084: Fix URL search parameters encoding in default middleware
243
+ - 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.
244
+ - a8539c8c: ZERO-3439: Enhance locale handling in middleware and redirect utility
245
+ - 16aff543: ZERO-3431: Add test script for redirect utility in package.json
246
+ - 64699d3ff: ZERO-2761: Fix invalid import for plugin module
247
+ - 9f8cd3bc: ZERO-3449: AI Search Active Filters & Crop Style changes have been implemented
248
+ - e974d8e8: ZERO-3406: Fix rc build
249
+ - 89ce46fc: ZERO-3493: return 404 status code for pz-not-found pages
250
+ - 7eb51ca9: ZERO-3424 :Update package versions
251
+ - c806fad7: ZERO-3422: Add Flow Payment plugin to the defined plugins list
252
+ - 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
253
+ - 8b1d24eb: ZERO-3422: Update fetch method to use dynamic request method in wallet complete redirection middleware
254
+ - d552629f: ZERO-3182: Refactor basketApi to use invalidatesTags and comment out onQueryStarted logic
255
+ - 17f87524e: ZERO-2816: Make the incoming currency lowercase
256
+ - 65d3b862: ZERO-3054: Update headers in appFetch
257
+ - 0abde6bb: ZERO-3422: Update fetch method to use dynamic request method in wallet complete redirection middleware
258
+ - 72ad7bb1: ZERO-3422: Add Flow Payment to the list of available plugins
259
+ - c39c7000: ZERO-3420: Refactor Modal component
260
+ - e7cd3a5e: ZERO-3435: Add Accept-Language to requestHeaders
261
+ - bbe18b9ff: ZERO-2575: Fix build error
262
+ - 17bfadc4: ZERO-3275: Disable OpenTelemetry monitoring in production environment
263
+ - 35dfb8f8: ZERO-3363: Refactor URL handling in checkout and redirection middlewares to use url.origin instead of process.env.NEXT_PUBLIC_URL
264
+ - 4920742c2: Disable getCachedTranslations
265
+ - b6e5b624: ZERO-3257: Enhance locale middleware to redirect using existing or default locale and support 303 status for POST requests
266
+ - 0de55738: ZERO-3418: Update remotePatterns hostname to allow all subdomains
267
+ - 7e56d6b6b: ZERO-2841: Update api tagTypes
268
+ - dfaceffd: ZERO-3356: Add useLoyaltyAvailability hook and update checkout state management
269
+ - 86642cfa: ZERO-3531: Add saveSampleProducts endpoint and update URLs in checkout
270
+ - d99a6a7d: ZERO-3457: Fixed the settings prop and made sure everything is customizable.
271
+ - 9dc7298a: ZERO-3416: Refactor Accordion component to enhance props and improve styling flexibility
272
+ - 33377cfd: ZERO-3267: Refactor import statement for ROUTES in error-page component
273
+ - 0bdab120: ZERO-3569: Refactor cache handler to improve Redis connection management and logging
274
+ - 43c182ee: ZERO-3054: Update Redis variable checks to conditionally include CACHE_SECRET
275
+ - c480272c: ZERO-3531: Refactor checkoutApi: Remove unnecessary invalidatesTags property from POST request from sample products
276
+ - b00a90b1: ZERO-3436: Preserve query params on redirect
277
+ - facf1ada: ZERO-3445: Add SameSite and Secure attributes
278
+ - 485e8ef8: ZERO-3422: Refactor parameter handling in wallet complete redirection middleware to use forEach
279
+ - 26b2d0b7: ZERO-3571: Remove test script execution from prebuild and simplify Jest module name mapping
280
+ - eeb20bea: Revert "ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing"
281
+ - 99b6e7b9: ZERO-3421: Enhance Sentry error handling by adding network error detection logic and refining initialization options
282
+ - 3bf63c8a: ZERO-3286: Add notFound handling for chunk URLs starting with \_next
283
+ - 9be2c081: ZERO-3243: Improve basket update query handling with optimistic updates
284
+ - f7fd459b: ZERO-3445: Refactor setCookie function to include domain handling and improve cookie string construction
285
+ - 4de5303c: ZERO-2504: add cookie filter to api client request
286
+ - dc678c31: ZERO-3523: Enhance redirect tests with dynamic locale handling and settings integration
287
+ - f2c92d5c7: ZERO-2816: Update cookie name
288
+ - a420947d: ZERO-3517: Fix optional chaining for rawData in error logging for category data handlers
289
+ - 7bd3d9928: ZERO-2801: Refactor locale middleware to handle single locale configuration
290
+ - acd2afdf: ZERO-3431: Fix import statement for findBaseDir in next-config test
291
+ - 2d3f1788: ZERO-3417: Enhance FileInput component with additional props for customization
292
+ - fdd255ee: ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing
293
+ - b434ac89: ZERO-3545: Update fetchCheckout API URL to include page parameter
294
+ - 49eeebfa: ZERO-2909: Add deleteCollectionItem query to wishlistApi
295
+ - 3f9b8d7e7: ZERO-2761: Update plugins.js for akinon-next
296
+ - fee608dd: ZERO-3422: Refactor body handling in wallet complete redirection middleware
297
+ - cbdb5c14: ZERO-3448: fix set cookie domain handling for subdomain locale strategy
298
+ - 0e823010: ZERO-3531: Add saveSampleProducts endpoint
299
+
80
300
  ## 1.92.0
81
301
 
82
302
  ## 1.91.0
83
303
 
84
304
  ### Minor Changes
85
305
 
86
- - d8fad39: ZERO-3370: include plugins test to build stage
87
306
  - 2552486: ZERO-3391: Add subdomain support to setLocale function
88
- - f8e4cac: ZERO-3343: restrict root hostname to only locale subdomains
89
- - 832bee3: ZERO-3343: add domain to cookie for subdomain locale strategy
90
- - 28a59d4: ZERO-3400: refactor cookie domain logic using fallback host
91
- - 8feabe9: ZERO-3343: add custom NextAuth options support
92
- - bf354de: ZERO-3321: add babel compiler for akinon/next test
93
- - 448adef: ZERO-3321: move csp test to akinon-next
94
- - 6c3629c: ZERO-3321: fix jest tests in akinon-next for standalone projects
95
- - 6bc260b: ZERO-3295: update default tailwind content list
307
+
308
+ ## 1.91.0-rc.1
309
+
310
+ ## 1.91.0-rc.0
311
+
312
+ ### Minor Changes
313
+
314
+ - 5dfeea04: ZERO-2801: Revert ZERO-2801
315
+ - 823d82f: ZERO-3393: Enhance error handling in checkout middleware to ensure errors are checked for existence before processing
316
+ - 63774a6a: ZERO-3351: Add commerce redirection ignore list functionality and related utility
317
+ - 2d9b2b2c: ZERO-2816: Add segment to headers
318
+ - 5e1feca6: Revert "ZERO-3286: Add notFound handling for chunk URLs starting with \_next"
319
+ - d8fad39: ZERO-3370: include plugins test to build stage
320
+ - 40a46853: ZERO-3182: Optimize basket update mutation with optimistic update
321
+ - 68bbcb2: ZERO-3393: Fix error handling in checkout middleware to check for errors array length
322
+ - f49bb74f: ZERO-3097: Add setCookie to logging in payment redirection middlewares
323
+ - e9541a13: ZERO-2816: Add headers to url
324
+ - 9b7d0de: ZERO-3393: Improve error handling in checkout middleware to support both object and array error formats
325
+ - 72fd4d67: ZERO-3084: Fix URL search parameters encoding in default middleware
326
+ - 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.
327
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
328
+ - e974d8e: ZERO-3406: Fix rc build
329
+ - bf354de4: ZERO-3321: add babel compiler for akinon/next test
330
+ - 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
331
+ - d552629f: ZERO-3182: Refactor basketApi to use invalidatesTags and comment out onQueryStarted logic
332
+ - 448adefb: ZERO-3321: move csp test to akinon-next
333
+ - 17f87524: ZERO-2816: Make the incoming currency lowercase
334
+ - 65d3b862: ZERO-3054: Update headers in appFetch
335
+ - bbe18b9f: ZERO-2575: Fix build error
336
+ - 17bfadc4: ZERO-3275: Disable OpenTelemetry monitoring in production environment
337
+ - 4920742c: Disable getCachedTranslations
338
+ - b6e5b624: ZERO-3257: Enhance locale middleware to redirect using existing or default locale and support 303 status for POST requests
339
+ - 6c3629c2: ZERO-3321: fix jest tests in akinon-next for standalone projects
340
+ - 7e56d6b6: ZERO-2841: Update api tagTypes
341
+ - dfaceff: ZERO-3356: Add useLoyaltyAvailability hook and update checkout state management
342
+ - 33377cfd: ZERO-3267: Refactor import statement for ROUTES in error-page component
343
+ - 43c182ee: ZERO-3054: Update Redis variable checks to conditionally include CACHE_SECRET
96
344
  - 943a239: ZERO-3370: add allowJs in akinon-next test tsconfig
97
- - 068dc39: ZERO-3343: update get-root-hostname logic
98
- - 942490f: ZERO-3295: move third party tailwind content list to akinon-next
99
- - b6d5bda: ZERO-3343: update changeset config
100
- - acf0320: ZERO-3321: remove babel config
101
- - 387356b: ZERO-3323: Refactor locale filtering logic in URL matcher regex
102
- - b2ee69b: ZERO-3321: delete unnecessary files
345
+ - eeb20bea: Revert "ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing"
346
+ - 3bf63c8a: ZERO-3286: Add notFound handling for chunk URLs starting with \_next
347
+ - 9be2c081: ZERO-3243: Improve basket update query handling with optimistic updates
348
+ - f2c92d5c: ZERO-2816: Update cookie name
349
+ - 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
350
+ - fdd255ee: ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing
351
+ - acf03209: ZERO-3321: remove babel config
352
+ - 387356b6: ZERO-3323: Refactor locale filtering logic in URL matcher regex
353
+ - 49eeebfa: ZERO-2909: Add deleteCollectionItem query to wishlistApi
354
+ - 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
355
+ - b2ee69b9: ZERO-3321: delete unnecessary files
103
356
  - 0cabbda: ZERO-3370: replace inline monorepo check with reusable utility
104
357
 
105
358
  ## 1.90.0
@@ -160,13 +413,217 @@
160
413
 
161
414
  ### Minor Changes
162
415
 
163
- - 2e0b7ff: ZERO-3226: Refactor checkoutApi to simplify request body structure by removing device_info parameter
164
- - 778aabf: ZERO-3163: Add frontend ID header to authentication requests and forgot password mutation
165
- - c0fef07: ZERO-3197: Refetch payment options after loyalty usage
166
- - 2d2ab44: ZERO-3226: Add device_info param to WalletPaymentPage request
167
- - 0200d56: ZERO-3163: Add frontendIds property to Settings interface
168
- - 7d1b5af: ZERO-3206: Encode search parameters in product data URL
169
- - aa05ed7: ZERO-3170: Add commerceRedirectionIgnoreList to settings and update URL redirection middleware
416
+ - ef75c03: ZERO-3267: Update error-page component to use ROUTES for link navigation
417
+
418
+ ## 1.82.0-rc.20
419
+
420
+ ### Minor Changes
421
+
422
+ - e5529cd: ZERO-3267: Update error-page component to use root path for links instead of ROUTES
423
+
424
+ ## 1.82.0-rc.19
425
+
426
+ ### Minor Changes
427
+
428
+ - 33377cf: ZERO-3267: Refactor import statement for ROUTES in error-page component
429
+
430
+ ## 1.82.0-rc.18
431
+
432
+ ### Minor Changes
433
+
434
+ - e4761d2: Refactor import statement for ROUTES in error-page component
435
+
436
+ ## 1.82.0-rc.17
437
+
438
+ ### Minor Changes
439
+
440
+ - e2c6d426: ZERO-2935: Add @sentry/nextjs dependency to akinon-next and remove from projectzeronext
441
+ - 70bc0aed: ZERO-3284: Set tracesSampleRate in Sentry configuration
442
+
443
+ ## 1.82.0-rc.16
444
+
445
+ ### Minor Changes
446
+
447
+ - 757ee539: ZERO-3207: Add SMS send & verify endpoints with state management
448
+ - 6f506af: ZERO-3229: Implement mini basket query for basket total quantity
449
+ - 5dfeea04: ZERO-2801: Revert ZERO-2801
450
+ - 2d9b2b2c: ZERO-2816: Add segment to headers
451
+ - 5e1feca: Revert "ZERO-3286: Add notFound handling for chunk URLs starting with \_next"
452
+ - c0c1962: ZERO-3258: Add new API endpoints for fetching Bukalemun image URL and bundle product data
453
+ - 40a46853: ZERO-3182: Optimize basket update mutation with optimistic update
454
+ - f49bb74f: ZERO-3097: Add setCookie to logging in payment redirection middlewares
455
+ - 0e05135: ZERO-3244: Encode URL search parameters
456
+ - e9541a13: ZERO-2816: Add headers to url
457
+ - 4d3deb4f: ZERO-2935: sentry 8 upgrade
458
+ - 72fd4d67: ZERO-3084: Fix URL search parameters encoding in default middleware
459
+ - 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.
460
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
461
+ - 9abd011: ZERO-3267: Refactor error handling in ErrorPage component to set error details in Sentry scope
462
+ - 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
463
+ - d552629: ZERO-3182: Refactor basketApi to use invalidatesTags and comment out onQueryStarted logic
464
+ - c3b2f3f: ZERO-3267: Enable sentry client errors and filter them by log type
465
+ - 17f87524: ZERO-2816: Make the incoming currency lowercase
466
+ - 65d3b862: ZERO-3054: Update headers in appFetch
467
+ - bbe18b9f: ZERO-2575: Fix build error
468
+ - 17bfadc: ZERO-3275: Disable OpenTelemetry monitoring in production environment
469
+ - 4920742c: Disable getCachedTranslations
470
+ - b6e5b62: ZERO-3257: Enhance locale middleware to redirect using existing or default locale and support 303 status for POST requests
471
+ - ac65ca9: ZERO-3269: Enhance locale handling by adding Subdomain strategy and updating related functions
472
+ - 7e56d6b6: ZERO-2841: Update api tagTypes
473
+ - 43c182ee: ZERO-3054: Update Redis variable checks to conditionally include CACHE_SECRET
474
+ - 2d305aaf: ZERO-2935: Update Sentry configuration: remove hideSourceMaps option and add it to withPzConfig
475
+ - eeb20bea: Revert "ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing"
476
+ - 3bf63c8: ZERO-3286: Add notFound handling for chunk URLs starting with \_next
477
+ - 9be2c08: ZERO-3243: Improve basket update query handling with optimistic updates
478
+ - f2c92d5c: ZERO-2816: Update cookie name
479
+ - 2f3588f: ZERO-3287: Add user session handling in authentication flow
480
+ - 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
481
+ - fdd255ee: ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing
482
+ - 0b1bd07: ZERO-3240: Remove unused preOrderMiddleware
483
+ - 49eeebfa: ZERO-2909: Add deleteCollectionItem query to wishlistApi
484
+ - 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
485
+
486
+ ## 1.82.0-rc.15
487
+
488
+ ### Minor Changes
489
+
490
+ - 2f3588fb: ZERO-3287: Add user session handling in authentication flow
491
+
492
+ ## 1.82.0-rc.14
493
+
494
+ ### Minor Changes
495
+
496
+ - 5e1feca: Revert "ZERO-3286: Add notFound handling for chunk URLs starting with \_next"
497
+
498
+ ## 1.82.0-rc.13
499
+
500
+ ### Minor Changes
501
+
502
+ - 3bf63c8: ZERO-3286: Add notFound handling for chunk URLs starting with \_next
503
+
504
+ ## 1.82.0-rc.12
505
+
506
+ ### Minor Changes
507
+
508
+ - ac65ca9: ZERO-3269: Enhance locale handling by adding Subdomain strategy and updating related functions
509
+
510
+ ## 1.82.0-rc.11
511
+
512
+ ## 1.82.0-rc.10
513
+
514
+ ## 1.82.0-rc.9
515
+
516
+ ### Minor Changes
517
+
518
+ - 9abd011: ZERO-3267: Refactor error handling in ErrorPage component to set error details in Sentry scope
519
+
520
+ ## 1.82.0-rc.8
521
+
522
+ ### Minor Changes
523
+
524
+ - 17bfadc: ZERO-3275: Disable OpenTelemetry monitoring in production environment
525
+
526
+ ## 1.82.0-rc.7
527
+
528
+ ### Minor Changes
529
+
530
+ - c3b2f3f: ZERO-3267: Enable sentry client errors and filter them by log type
531
+
532
+ ## 1.82.0-rc.6
533
+
534
+ ### Minor Changes
535
+
536
+ - 0b1bd07f: ZERO-3240: Remove unused preOrderMiddleware
537
+
538
+ ## 1.82.0-rc.5
539
+
540
+ ### Minor Changes
541
+
542
+ - 6f506afc: ZERO-3229: Implement mini basket query for basket total quantity
543
+ - c0c19629: ZERO-3258: Add new API endpoints for fetching Bukalemun image URL and bundle product data
544
+ - 9be2c081: ZERO-3243: Improve basket update query handling with optimistic updates
545
+
546
+ ## 1.82.0-rc.4
547
+
548
+ ### Minor Changes
549
+
550
+ - b6e5b624: ZERO-3257: Enhance locale middleware to redirect using existing or default locale and support 303 status for POST requests
551
+
552
+ ## 1.82.0-rc.3
553
+
554
+ ## 1.82.0-rc.2
555
+
556
+ ### Minor Changes
557
+
558
+ - 757ee539: ZERO-3207: Add SMS send & verify endpoints with state management
559
+ - 5dfeea04: ZERO-2801: Revert ZERO-2801
560
+ - 2d9b2b2c: ZERO-2816: Add segment to headers
561
+ - 40a46853: ZERO-3182: Optimize basket update mutation with optimistic update
562
+ - f49bb74f: ZERO-3097: Add setCookie to logging in payment redirection middlewares
563
+ - 0e051352: ZERO-3244: Encode URL search parameters
564
+ - e9541a13: ZERO-2816: Add headers to url
565
+ - 4d3deb4f: ZERO-2935: sentry 8 upgrade
566
+ - 72fd4d67: ZERO-3084: Fix URL search parameters encoding in default middleware
567
+ - 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.
568
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
569
+ - 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
570
+ - d552629f: ZERO-3182: Refactor basketApi to use invalidatesTags and comment out onQueryStarted logic
571
+ - 17f87524: ZERO-2816: Make the incoming currency lowercase
572
+ - 65d3b862: ZERO-3054: Update headers in appFetch
573
+ - bbe18b9f: ZERO-2575: Fix build error
574
+ - 4920742c: Disable getCachedTranslations
575
+ - 7e56d6b6: ZERO-2841: Update api tagTypes
576
+ - 43c182ee: ZERO-3054: Update Redis variable checks to conditionally include CACHE_SECRET
577
+ - 2d305aaf: ZERO-2935: Update Sentry configuration: remove hideSourceMaps option and add it to withPzConfig
578
+ - eeb20bea: Revert "ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing"
579
+ - f2c92d5c: ZERO-2816: Update cookie name
580
+ - 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
581
+ - fdd255ee: ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing
582
+ - 49eeebfa: ZERO-2909: Add deleteCollectionItem query to wishlistApi
583
+ - 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
584
+
585
+ ## 1.82.0-rc.1
586
+
587
+ ### Minor Changes
588
+
589
+ - 0e051352: ZERO-3244: Encode URL search parameters
590
+
591
+ ## 1.82.0-rc.0
592
+
593
+ ### Minor Changes
594
+
595
+ - 2e0b7ffd: ZERO-3226: Refactor checkoutApi to simplify request body structure by removing device_info parameter
596
+ - 757ee539: ZERO-3207: Add SMS send & verify endpoints with state management
597
+ - 778aabf8: ZERO-3163: Add frontend ID header to authentication requests and forgot password mutation
598
+ - c0fef075: ZERO-3197: Refetch payment options after loyalty usage
599
+ - 5dfeea04: ZERO-2801: Revert ZERO-2801
600
+ - 2d9b2b2c: ZERO-2816: Add segment to headers
601
+ - 40a46853: ZERO-3182: Optimize basket update mutation with optimistic update
602
+ - 2d2ab446: ZERO-3226: Add device_info param to WalletPaymentPage request
603
+ - f49bb74f: ZERO-3097: Add setCookie to logging in payment redirection middlewares
604
+ - e9541a13: ZERO-2816: Add headers to url
605
+ - 4d3deb4f: ZERO-2935: sentry 8 upgrade
606
+ - 72fd4d67: ZERO-3084: Fix URL search parameters encoding in default middleware
607
+ - 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.
608
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
609
+ - 0200d568: ZERO-3163: Add frontendIds property to Settings interface
610
+ - 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
611
+ - d552629f: ZERO-3182: Refactor basketApi to use invalidatesTags and comment out onQueryStarted logic
612
+ - 17f87524: ZERO-2816: Make the incoming currency lowercase
613
+ - 65d3b862: ZERO-3054: Update headers in appFetch
614
+ - bbe18b9f: ZERO-2575: Fix build error
615
+ - 4920742c: Disable getCachedTranslations
616
+ - 7e56d6b6: ZERO-2841: Update api tagTypes
617
+ - 7d1b5af1: ZERO-3206: Encode search parameters in product data URL
618
+ - 43c182ee: ZERO-3054: Update Redis variable checks to conditionally include CACHE_SECRET
619
+ - 2d305aaf: ZERO-2935: Update Sentry configuration: remove hideSourceMaps option and add it to withPzConfig
620
+ - eeb20bea: Revert "ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing"
621
+ - f2c92d5c: ZERO-2816: Update cookie name
622
+ - 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
623
+ - fdd255ee: ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing
624
+ - aa05ed79: ZERO-3170: Add commerceRedirectionIgnoreList to settings and update URL redirection middleware
625
+ - 49eeebfa: ZERO-2909: Add deleteCollectionItem query to wishlistApi
626
+ - 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
170
627
 
171
628
  ## 1.81.0
172
629
 
@@ -186,7 +643,116 @@
186
643
 
187
644
  ### Minor Changes
188
645
 
189
- - 59fa21c: ZERO-3149: Add name-based mechanism for Redux middleware override
646
+ - 778aabf8: ZERO-3163: Add frontend ID header to authentication requests and forgot password mutation
647
+ - 5dfeea04: ZERO-2801: Revert ZERO-2801
648
+ - 2d9b2b2c: ZERO-2816: Add segment to headers
649
+ - fd4b74e9: ZERO-3126: add reset checkout state query
650
+ - f49bb74f: ZERO-3097: Add setCookie to logging in payment redirection middlewares
651
+ - e9541a13: ZERO-2816: Add headers to url
652
+ - 4d3deb4f: ZERO-2935: sentry 8 upgrade
653
+ - 72fd4d67: ZERO-3084: Fix URL search parameters encoding in default middleware
654
+ - 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.
655
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
656
+ - 0200d568: ZERO-3163: Add frontendIds property to Settings interface
657
+ - 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
658
+ - 17f87524: ZERO-2816: Make the incoming currency lowercase
659
+ - 65d3b862: ZERO-3054: Update headers in appFetch
660
+ - bbe18b9f: ZERO-2575: Fix build error
661
+ - 4920742c: Disable getCachedTranslations
662
+ - 7e56d6b6: ZERO-2841: Update api tagTypes
663
+ - 43c182ee: ZERO-3054: Update Redis variable checks to conditionally include CACHE_SECRET
664
+ - 2d305aaf: ZERO-2935: Update Sentry configuration: remove hideSourceMaps option and add it to withPzConfig
665
+ - 4cc22c7c: ZERO-3125: replace X-Frame-Options with CSP frame-ancestors
666
+ - eeb20bea: Revert "ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing"
667
+ - 6a0a0807: ZERO-3112: Update button
668
+ - f2c92d5c: ZERO-2816: Update cookie name
669
+ - 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
670
+ - fdd255ee: ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing
671
+ - 49eeebfa: ZERO-2909: Add deleteCollectionItem query to wishlistApi
672
+ - 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
673
+ - 7ab9e2fd: ZERO-3166: add tamara payment package
674
+
675
+ ## 1.79.0-rc.6
676
+
677
+ ### Minor Changes
678
+
679
+ - 0200d568: ZERO-3163: Add frontendIds property to Settings interface
680
+
681
+ ## 1.79.0-rc.5
682
+
683
+ ### Minor Changes
684
+
685
+ - 778aabf8: ZERO-3163: Add frontend ID header to authentication requests and forgot password mutation
686
+
687
+ ## 1.79.0-rc.4
688
+
689
+ ## 1.79.0-rc.3
690
+
691
+ ### Minor Changes
692
+
693
+ - 5dfeea04: ZERO-2801: Revert ZERO-2801
694
+ - 2d9b2b2c: ZERO-2816: Add segment to headers
695
+ - fd4b74e9: ZERO-3126: add reset checkout state query
696
+ - f49bb74f: ZERO-3097: Add setCookie to logging in payment redirection middlewares
697
+ - e9541a13: ZERO-2816: Add headers to url
698
+ - 4d3deb4f: ZERO-2935: sentry 8 upgrade
699
+ - 72fd4d67: ZERO-3084: Fix URL search parameters encoding in default middleware
700
+ - 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.
701
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
702
+ - 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
703
+ - 17f87524: ZERO-2816: Make the incoming currency lowercase
704
+ - 65d3b862: ZERO-3054: Update headers in appFetch
705
+ - bbe18b9f: ZERO-2575: Fix build error
706
+ - 4920742c: Disable getCachedTranslations
707
+ - 7e56d6b6: ZERO-2841: Update api tagTypes
708
+ - 43c182ee: ZERO-3054: Update Redis variable checks to conditionally include CACHE_SECRET
709
+ - 2d305aaf: ZERO-2935: Update Sentry configuration: remove hideSourceMaps option and add it to withPzConfig
710
+ - 4cc22c7c: ZERO-3125: replace X-Frame-Options with CSP frame-ancestors
711
+ - eeb20bea: Revert "ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing"
712
+ - 6a0a0807: ZERO-3112: Update button
713
+ - f2c92d5c: ZERO-2816: Update cookie name
714
+ - 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
715
+ - fdd255ee: ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing
716
+ - 59fa21ce: ZERO-3149: Add name-based mechanism for Redux middleware override
717
+ - 49eeebfa: ZERO-2909: Add deleteCollectionItem query to wishlistApi
718
+ - 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
719
+
720
+ ## 1.79.0-rc.2
721
+
722
+ ## 1.79.0-rc.1
723
+
724
+ ### Minor Changes
725
+
726
+ - 4cc22c7c: ZERO-3125: replace X-Frame-Options with CSP frame-ancestors
727
+
728
+ ## 1.79.0-rc.0
729
+
730
+ ### Minor Changes
731
+
732
+ - 5dfeea04: ZERO-2801: Revert ZERO-2801
733
+ - 2d9b2b2c: ZERO-2816: Add segment to headers
734
+ - fd4b74e9: ZERO-3126: add reset checkout state query
735
+ - f49bb74f: ZERO-3097: Add setCookie to logging in payment redirection middlewares
736
+ - e9541a13: ZERO-2816: Add headers to url
737
+ - 4d3deb4f: ZERO-2935: sentry 8 upgrade
738
+ - 72fd4d67: ZERO-3084: Fix URL search parameters encoding in default middleware
739
+ - 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.
740
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
741
+ - 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
742
+ - 17f87524: ZERO-2816: Make the incoming currency lowercase
743
+ - 65d3b862: ZERO-3054: Update headers in appFetch
744
+ - bbe18b9f: ZERO-2575: Fix build error
745
+ - 4920742c: Disable getCachedTranslations
746
+ - 7e56d6b6: ZERO-2841: Update api tagTypes
747
+ - 43c182ee: ZERO-3054: Update Redis variable checks to conditionally include CACHE_SECRET
748
+ - 2d305aaf: ZERO-2935: Update Sentry configuration: remove hideSourceMaps option and add it to withPzConfig
749
+ - eeb20bea: Revert "ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing"
750
+ - 6a0a0807: ZERO-3112: Update button
751
+ - f2c92d5c: ZERO-2816: Update cookie name
752
+ - 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
753
+ - fdd255ee: ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing
754
+ - 49eeebfa: ZERO-2909: Add deleteCollectionItem query to wishlistApi
755
+ - 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
190
756
 
191
757
  ## 1.78.0
192
758
 
@@ -258,6 +824,52 @@
258
824
  ### Minor Changes
259
825
 
260
826
  - f34454a: ZERO-2953: Add hepsipay payment method
827
+ - 3bfa12a: ZERO-3003:Add fetchLoyaltyData and setLoyaltyData requests to RTK
828
+ - 4d3deb4: ZERO-2935: sentry 8 upgrade
829
+ - 3010514: ZERO-3011:add shipping_option_operator and custom filter to getOrders
830
+ - 9a50730: ZERO-3015: Add currency parameter to getOrders query
831
+ - ca774b3: ZERO-3002:add register with loyalty url
832
+ - 56cdddc: ZERO-0000: SHOP-78125: Change unpaid_amount with total_amount_with_interest
833
+ - 3344bca: ZERO-3013: Enable web vitals tracking in settings.js
834
+
835
+ ## 1.71.0-rc.7
836
+
837
+ ## 1.71.0-rc.6
838
+
839
+ ### Minor Changes
840
+
841
+ - f34454a: ZERO-2953: Add hepsipay payment method
842
+
843
+ ## 1.71.0-rc.5
844
+
845
+ ## 1.71.0-rc.4
846
+
847
+ ## 1.71.0-rc.3
848
+
849
+ ### Minor Changes
850
+
851
+ - 3344bca: ZERO-3013: Enable web vitals tracking in settings.js
852
+
853
+ ## 1.71.0-rc.2
854
+
855
+ ### Minor Changes
856
+
857
+ - 56cdddc: ZERO-0000: SHOP-78125: Change unpaid_amount with total_amount_with_interest
858
+
859
+ ## 1.71.0-rc.1
860
+
861
+ ### Minor Changes
862
+
863
+ - 9a50730: ZERO-3015: Add currency parameter to getOrders query
864
+
865
+ ## 1.71.0-rc.0
866
+
867
+ ### Minor Changes
868
+
869
+ - 3bfa12a: ZERO-3003:Add fetchLoyaltyData and setLoyaltyData requests to RTK
870
+ - 4d3deb4: ZERO-2935: sentry 8 upgrade
871
+ - 3010514: ZERO-3011:add shipping_option_operator and custom filter to getOrders
872
+ - ca774b3: ZERO-3002:add register with loyalty url
261
873
 
262
874
  ## 1.70.0
263
875
 
@@ -269,12 +881,72 @@
269
881
 
270
882
  ### Minor Changes
271
883
 
884
+ - 3bfa12a: ZERO-3003:Add fetchLoyaltyData and setLoyaltyData requests to RTK
885
+ - 4d3deb4: ZERO-2935: sentry 8 upgrade
886
+ - 3010514: ZERO-3011:add shipping_option_operator and custom filter to getOrders
887
+ - ca774b3: ZERO-3002:add register with loyalty url
888
+ - f046f8e: ZERO-2575: update version for react-number-format
889
+
890
+ ## 1.69.0-rc.8
891
+
892
+ ### Minor Changes
893
+
894
+ - 3010514: ZERO-3011:add shipping_option_operator and custom filter to getOrders
895
+ - ca774b3: ZERO-3002:add register with loyalty url
896
+
897
+ ## 1.69.0-rc.7
898
+
899
+ ### Minor Changes
900
+
901
+ - 3bfa12a: ZERO-3003:Add fetchLoyaltyData and setLoyaltyData requests to RTK
902
+
903
+ ## 1.69.0-rc.6
904
+
905
+ ### Minor Changes
906
+
907
+ - 4d3deb4: ZERO-2935: sentry 8 upgrade
272
908
  - 063da74: ZERO-3010: Remove pz-iyzico-saved-card package
273
909
  - 72da021: ZERO-3010: Remove unused code in pretty-url.tsx
274
910
  - 5632a99: ZERO-3010: Remove iyzicoSavedCardReducer from reducers
275
911
  - cbdb0c8: ZERO-3010: Move pretty url page into project
276
912
  - 80c869b: ZERO-3010: Remove savedCardMiddleware from redux middlewares
277
913
 
914
+ ## 1.69.0-rc.5
915
+
916
+ ### Minor Changes
917
+
918
+ - 80c869b: ZERO-3010: Remove savedCardMiddleware from redux middlewares
919
+
920
+ ## 1.69.0-rc.4
921
+
922
+ ### Minor Changes
923
+
924
+ - 063da74: ZERO-3010: Remove pz-iyzico-saved-card package
925
+
926
+ ## 1.69.0-rc.3
927
+
928
+ ### Minor Changes
929
+
930
+ - cbdb0c8: ZERO-3010: Move pretty url page into project
931
+
932
+ ## 1.69.0-rc.2
933
+
934
+ ### Minor Changes
935
+
936
+ - 5632a99: ZERO-3010: Remove iyzicoSavedCardReducer from reducers
937
+
938
+ ## 1.69.0-rc.1
939
+
940
+ ### Minor Changes
941
+
942
+ - 72da021: ZERO-3010: Remove unused code in pretty-url.tsx
943
+
944
+ ## 1.69.0-rc.0
945
+
946
+ ### Minor Changes
947
+
948
+ - 4d3deb4: ZERO-2935: sentry 8 upgrade
949
+
278
950
  ## 1.68.0
279
951
 
280
952
  ### Minor Changes
@@ -384,33 +1056,205 @@
384
1056
 
385
1057
  ### Minor Changes
386
1058
 
1059
+ - c416d18: ZERO-2915: Add delivery option null check for setAddress
1060
+ - 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
1061
+ - 5dfeea0: ZERO-2801: Revert ZERO-2801
1062
+ - a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
1063
+ - fda5b927: ZERO-2725: fix invalid import
1064
+ - 2d9b2b2c: ZERO-2816: Add segment to headers
1065
+ - c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
1066
+ - 6c25f66: ZERO-2551: Check CACHE_HOST variable
1067
+ - bc2b4117: ZERO-2825: Add attribute-based shipping options to checkout page
1068
+ - 3bf2dd9: ZERO-2551: Fix search page
1069
+ - e9541a13: ZERO-2816: Add headers to url
1070
+ - 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.
1071
+ - 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
1072
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
1073
+ - 0d3a913e: ZERO-2725: Update decimal scale in Price component
1074
+ - 7b05522: ZERO-2905: Fix resend and close button in otp package
1075
+ - d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
1076
+ - d3474c64: ZERO-2655: Add data source shipping option
1077
+ - 17f87524: ZERO-2816: Make the incoming currency lowercase
1078
+ - 29ead87: ZERO-2905: Fix resend and close button in otp package
1079
+ - c45b62c: ZERO-2818: Add upload and download support for b2b package
1080
+ - 91265bba: ZERO-2551: Improve pretty url and caching performance
1081
+ - bbe18b9f: ZERO-2575: Fix build error
1082
+ - d4099960: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
1083
+ - 4920742: Disable getCachedTranslations
1084
+ - 12a873e: ZERO-2846:Edit the siteKey regex in the response from GetCaptcha
1085
+ - 7e56d6b: ZERO-2841: Update api tagTypes
1086
+ - 94b69285: ZERO-2551: Add cache handler check in url-redirection middleware
1087
+ - 98bb8dcd: ZERO-2706: Cache getTranlations method
1088
+ - dcc8a150: ZERO-2694: added build step to RC branch pipeline
1089
+ - 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
1090
+ - fad27689: ZERO-2739: add gpay to payment plugin map
1091
+ - dff0d595: ZERO-2659: add formData support to proxy api requests
1092
+ - fdd0b41: ZERO-2706: Add optimized translation support
1093
+ - f2c325c: ZERO-2838: Move file input component into @akinon/next
1094
+ - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
1095
+ - beb499e6: ZERO-2551: Add new tsconfig paths
1096
+ - f2c92d5c: ZERO-2816: Update cookie name
1097
+ - 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
1098
+ - f3d076b: ZERO-2864: create tabby extension plugin
1099
+ - f046f8e0: ZERO-2575: update version for react-number-format
1100
+ - 49eeebf: ZERO-2909: Add deleteCollectionItem query to wishlistApi
1101
+ - 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
1102
+ - 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
1103
+
1104
+ ## 1.56.0-rc.7
1105
+
1106
+ ## 1.56.0-rc.6
1107
+
1108
+ ### Minor Changes
1109
+
1110
+ - f3d076b: ZERO-2864: create tabby extension plugin
1111
+
1112
+ ## 1.56.0-rc.5
1113
+
1114
+ ### Minor Changes
1115
+
1116
+ - c416d18: ZERO-2915: Add delivery option null check for setAddress
1117
+
1118
+ ## 1.56.0-rc.4
1119
+
1120
+ ### Minor Changes
1121
+
1122
+ - 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
1123
+ - 5dfeea0: ZERO-2801: Revert ZERO-2801
1124
+ - a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
1125
+ - fda5b927: ZERO-2725: fix invalid import
1126
+ - 2d9b2b2c: ZERO-2816: Add segment to headers
1127
+ - c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
387
1128
  - d93a507: ZERO-2900: Fix pretty url rewrite
1129
+ - 6c25f66: ZERO-2551: Check CACHE_HOST variable
1130
+ - bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
1131
+ - 3bf2dd9: ZERO-2551: Fix search page
1132
+ - e9541a13: ZERO-2816: Add headers to url
1133
+ - 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.
1134
+ - 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
1135
+ - 64699d3: ZERO-2761: Fix invalid import for plugin module
1136
+ - 0d3a913e: ZERO-2725: Update decimal scale in Price component
1137
+ - 7b05522: ZERO-2905: Fix resend and close button in otp package
1138
+ - d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
1139
+ - d3474c64: ZERO-2655: Add data source shipping option
1140
+ - 17f8752: ZERO-2816: Make the incoming currency lowercase
1141
+ - 29ead87: ZERO-2905: Fix resend and close button in otp package
1142
+ - c45b62c: ZERO-2818: Add upload and download support for b2b package
1143
+ - 91265bba: ZERO-2551: Improve pretty url and caching performance
1144
+ - bbe18b9f: ZERO-2575: Fix build error
1145
+ - d4099960: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
1146
+ - 4920742: Disable getCachedTranslations
1147
+ - 12a873e: ZERO-2846:Edit the siteKey regex in the response from GetCaptcha
388
1148
  - 674badc: ZERO-2912: Fix selected payment option view to handle null values
1149
+ - 7e56d6b: ZERO-2841: Update api tagTypes
1150
+ - 94b69285: ZERO-2551: Add cache handler check in url-redirection middleware
1151
+ - 98bb8dcd: ZERO-2706: Cache getTranlations method
389
1152
  - 207ac6e: ZERO-2917: Add OrderSelectionPage endpoint
1153
+ - dcc8a150: ZERO-2694: added build step to RC branch pipeline
1154
+ - 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
1155
+ - fad27689: ZERO-2739: add gpay to payment plugin map
1156
+ - dff0d595: ZERO-2659: add formData support to proxy api requests
1157
+ - fdd0b41: ZERO-2706: Add optimized translation support
1158
+ - f2c325c: ZERO-2838: Move file input component into @akinon/next
1159
+ - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
1160
+ - beb499e6: ZERO-2551: Add new tsconfig paths
1161
+ - f2c92d5c: ZERO-2816: Update cookie name
1162
+ - 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
1163
+ - f046f8e0: ZERO-2575: update version for react-number-format
390
1164
  - b9273fd: ZERO-2889: add host headers to requests
1165
+ - 49eeebf: ZERO-2909: Add deleteCollectionItem query to wishlistApi
1166
+ - 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
391
1167
  - c670bd4: ZERO-2900: Add middleware rewrite functionality
1168
+ - 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
392
1169
 
393
- ## 1.55.0
1170
+ ## 1.56.0-rc.3
394
1171
 
395
1172
  ### Minor Changes
396
1173
 
397
- - 1448a96: ZERO-2612: add errors type in CheckoutState
398
- - 75080fd: ZERO-2630: Add max limit to postcode area
399
- - eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
1174
+ - 674badc: ZERO-2912: Fix selected payment option view to handle null values
400
1175
 
401
- ## 1.54.0
1176
+ ## 1.56.0-rc.2
402
1177
 
403
1178
  ### Minor Changes
404
1179
 
405
- - 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
406
- - c47be30: ZERO-2744: Update Order and OrderItem types
407
- - e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
1180
+ - 7b05522: ZERO-2905: Fix resend and close button in otp package
1181
+ - 29ead87: ZERO-2905: Fix resend and close button in otp package
408
1182
 
409
- ## 1.53.0
1183
+ ## 1.56.0-rc.1
410
1184
 
411
1185
  ### Minor Changes
412
1186
 
413
- - a957942: ZERO-2909: Rename useDeleteCollectionItemQuery
1187
+ - 207ac6e: ZERO-2917: Add OrderSelectionPage endpoint
1188
+
1189
+ ## 1.56.0-rc.0
1190
+
1191
+ ### Minor Changes
1192
+
1193
+ - 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
1194
+ - 5dfeea0: ZERO-2801: Revert ZERO-2801
1195
+ - a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
1196
+ - fda5b927: ZERO-2725: fix invalid import
1197
+ - 2d9b2b2c: ZERO-2816: Add segment to headers
1198
+ - c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
1199
+ - d93a507: ZERO-2900: Fix pretty url rewrite
1200
+ - 6c25f666: ZERO-2551: Check CACHE_HOST variable
1201
+ - bc2b4117: ZERO-2825: Add attribute-based shipping options to checkout page
1202
+ - 3bf2dd94: ZERO-2551: Fix search page
1203
+ - e9541a13: ZERO-2816: Add headers to url
1204
+ - 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.
1205
+ - 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
1206
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
1207
+ - 0d3a913e: ZERO-2725: Update decimal scale in Price component
1208
+ - d6edb1d0: ZERO-2551: Fix searchparams handling for list and other routes
1209
+ - d3474c64: ZERO-2655: Add data source shipping option
1210
+ - 17f87524: ZERO-2816: Make the incoming currency lowercase
1211
+ - c45b62c9: ZERO-2818: Add upload and download support for b2b package
1212
+ - 91265bba: ZERO-2551: Improve pretty url and caching performance
1213
+ - bbe18b9f: ZERO-2575: Fix build error
1214
+ - d4099960: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
1215
+ - 4920742c: Disable getCachedTranslations
1216
+ - 12a873e: ZERO-2846:Edit the siteKey regex in the response from GetCaptcha
1217
+ - 7e56d6b6: ZERO-2841: Update api tagTypes
1218
+ - 94b69285: ZERO-2551: Add cache handler check in url-redirection middleware
1219
+ - 98bb8dcd: ZERO-2706: Cache getTranlations method
1220
+ - dcc8a150: ZERO-2694: added build step to RC branch pipeline
1221
+ - 8f47ccae: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
1222
+ - fad27689: ZERO-2739: add gpay to payment plugin map
1223
+ - dff0d595: ZERO-2659: add formData support to proxy api requests
1224
+ - fdd0b41: ZERO-2706: Add optimized translation support
1225
+ - f2c325c1: ZERO-2838: Move file input component into @akinon/next
1226
+ - 9e25a64b: ZERO-2835: Update category page layout with breadcrumb
1227
+ - beb499e6: ZERO-2551: Add new tsconfig paths
1228
+ - f2c92d5c: ZERO-2816: Update cookie name
1229
+ - 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
1230
+ - f046f8e0: ZERO-2575: update version for react-number-format
1231
+ - b9273fd3: ZERO-2889: add host headers to requests
1232
+ - 49eeebf: ZERO-2909: Add deleteCollectionItem query to wishlistApi
1233
+ - 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
1234
+ - c670bd48: ZERO-2900: Add middleware rewrite functionality
1235
+ - 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
1236
+
1237
+ ## 1.55.0
1238
+
1239
+ ### Minor Changes
1240
+
1241
+ - 1448a96: ZERO-2612: add errors type in CheckoutState
1242
+ - 75080fd: ZERO-2630: Add max limit to postcode area
1243
+ - eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
1244
+
1245
+ ## 1.54.0
1246
+
1247
+ ### Minor Changes
1248
+
1249
+ - 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
1250
+ - c47be30: ZERO-2744: Update Order and OrderItem types
1251
+ - e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
1252
+
1253
+ ## 1.53.0
1254
+
1255
+ ### Minor Changes
1256
+
1257
+ - a957942: ZERO-2909: Rename useDeleteCollectionItemQuery
414
1258
 
415
1259
  ## 1.52.0
416
1260
 
@@ -434,7 +1278,128 @@
434
1278
 
435
1279
  ### Minor Changes
436
1280
 
1281
+ - 90282b53: ZERO-2729: Audit packages for yarn and npm and also update app-template
1282
+ - 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
1283
+ - 5dfeea0: ZERO-2801: Revert ZERO-2801
1284
+ - a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
1285
+ - fda5b927: ZERO-2725: fix invalid import
1286
+ - 2d9b2b2: ZERO-2816: Add segment to headers
1287
+ - c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
1288
+ - d93a507: ZERO-2900: Fix pretty url rewrite
1289
+ - 8d9ac9a: ZERO-2794: Add field to order type
1290
+ - 70279e7: ZERO-2817: Add metrics endpoint in default middleware
1291
+ - 6c25f66: ZERO-2551: Check CACHE_HOST variable
1292
+ - bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
1293
+ - 3bf2dd9: ZERO-2551: Fix search page
1294
+ - e9541a1: ZERO-2816: Add headers to url
1295
+ - 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.
1296
+ - 9d94f7e: ZERO-2820: update parent pk usage for menu generator
1297
+ - 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
1298
+ - 64699d3: ZERO-2761: Fix invalid import for plugin module
1299
+ - 0d3a913e: ZERO-2725: Update decimal scale in Price component
1300
+ - 1448a96e: ZERO-2612: add errors type in CheckoutState
1301
+ - 1ec2e9d: ZERO-2895: Update app-fetch to include cookies in headers
1302
+ - d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
1303
+ - d3474c64: ZERO-2655: Add data source shipping option
1304
+ - 75080fd6: ZERO-2630: Add max limit to postcode area
1305
+ - 17f8752: ZERO-2816: Make the incoming currency lowercase
1306
+ - c45b62c: ZERO-2818: Add upload and download support for b2b package
1307
+ - 91265bba: ZERO-2551: Improve pretty url and caching performance
1308
+ - bbe18b9f: ZERO-2575: Fix build error
1309
+ - d4099960: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
1310
+ - 4920742: Disable getCachedTranslations
1311
+ - 12a873e: ZERO-2846:Edit the siteKey regex in the response from GetCaptcha
1312
+ - 7e56d6b: ZERO-2841: Update api tagTypes
1313
+ - 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
1314
+ - 98bb8dcd: ZERO-2706: Cache getTranlations method
1315
+ - 46b7aad7: ZERO-2775: Add condition and logger for menuitemmodel data
1316
+ - dcc8a150: ZERO-2694: added build step to RC branch pipeline
1317
+ - 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
1318
+ - fad27689: ZERO-2739: add gpay to payment plugin map
1319
+ - dff0d595: ZERO-2659: add formData support to proxy api requests
1320
+ - fdd0b41: ZERO-2706: Add optimized translation support
1321
+ - eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
1322
+ - f2c325c: ZERO-2838: Move file input component into @akinon/next
1323
+ - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
1324
+ - beb499e6: ZERO-2551: Add new tsconfig paths
1325
+ - 146ea391: ZERO-2774: Update imports
1326
+ - f2c92d5: ZERO-2816: Update cookie name
1327
+ - 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
1328
+ - c47be30d: ZERO-2744: Update Order and OrderItem types
1329
+ - e9a46acb: ZERO-2738: add CVC input to registered cards in Masterpass
1330
+ - f046f8e0: ZERO-2575: update version for react-number-format
1331
+ - b9273fd: ZERO-2889: add host headers to requests
1332
+ - 49eeebf: ZERO-2909: Add deleteCollectionItem query to wishlistApi
1333
+ - 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
1334
+ - c670bd4: ZERO-2900: Add middleware rewrite functionality
1335
+ - 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
1336
+ - 3d35f70: ZERO-2908: Add cookie to redirect url
1337
+
1338
+ ## 1.50.0-rc.1
1339
+
1340
+ ### Minor Changes
1341
+
1342
+ - 49eeebf: ZERO-2909: Add deleteCollectionItem query to wishlistApi
1343
+
1344
+ ## 1.50.0-rc.0
1345
+
1346
+ ### Minor Changes
1347
+
1348
+ - 90282b53: ZERO-2729: Audit packages for yarn and npm and also update app-template
1349
+ - 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
1350
+ - 5dfeea0: ZERO-2801: Revert ZERO-2801
1351
+ - a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
1352
+ - fda5b927: ZERO-2725: fix invalid import
1353
+ - 2d9b2b2: ZERO-2816: Add segment to headers
1354
+ - c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
1355
+ - d93a507: ZERO-2900: Fix pretty url rewrite
1356
+ - 8d9ac9a: ZERO-2794: Add field to order type
437
1357
  - eaf97d6: ZERO-2909: Add deleteCollectionItem query to wishlistApi
1358
+ - 70279e7: ZERO-2817: Add metrics endpoint in default middleware
1359
+ - 6c25f66: ZERO-2551: Check CACHE_HOST variable
1360
+ - bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
1361
+ - 3bf2dd9: ZERO-2551: Fix search page
1362
+ - e9541a1: ZERO-2816: Add headers to url
1363
+ - 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.
1364
+ - 9d94f7e: ZERO-2820: update parent pk usage for menu generator
1365
+ - 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
1366
+ - 64699d3: ZERO-2761: Fix invalid import for plugin module
1367
+ - 0d3a913e: ZERO-2725: Update decimal scale in Price component
1368
+ - 1448a96e: ZERO-2612: add errors type in CheckoutState
1369
+ - 1ec2e9d: ZERO-2895: Update app-fetch to include cookies in headers
1370
+ - d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
1371
+ - d3474c64: ZERO-2655: Add data source shipping option
1372
+ - 75080fd6: ZERO-2630: Add max limit to postcode area
1373
+ - 17f8752: ZERO-2816: Make the incoming currency lowercase
1374
+ - c45b62c: ZERO-2818: Add upload and download support for b2b package
1375
+ - 91265bba: ZERO-2551: Improve pretty url and caching performance
1376
+ - bbe18b9f: ZERO-2575: Fix build error
1377
+ - d4099960: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
1378
+ - 4920742: Disable getCachedTranslations
1379
+ - 12a873e: ZERO-2846:Edit the siteKey regex in the response from GetCaptcha
1380
+ - 7e56d6b: ZERO-2841: Update api tagTypes
1381
+ - 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
1382
+ - 98bb8dcd: ZERO-2706: Cache getTranlations method
1383
+ - 46b7aad7: ZERO-2775: Add condition and logger for menuitemmodel data
1384
+ - dcc8a150: ZERO-2694: added build step to RC branch pipeline
1385
+ - 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
1386
+ - fad27689: ZERO-2739: add gpay to payment plugin map
1387
+ - dff0d595: ZERO-2659: add formData support to proxy api requests
1388
+ - fdd0b41: ZERO-2706: Add optimized translation support
1389
+ - eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
1390
+ - f2c325c: ZERO-2838: Move file input component into @akinon/next
1391
+ - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
1392
+ - beb499e6: ZERO-2551: Add new tsconfig paths
1393
+ - 146ea391: ZERO-2774: Update imports
1394
+ - f2c92d5: ZERO-2816: Update cookie name
1395
+ - 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
1396
+ - c47be30d: ZERO-2744: Update Order and OrderItem types
1397
+ - e9a46acb: ZERO-2738: add CVC input to registered cards in Masterpass
1398
+ - f046f8e0: ZERO-2575: update version for react-number-format
1399
+ - b9273fd: ZERO-2889: add host headers to requests
1400
+ - 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
1401
+ - c670bd4: ZERO-2900: Add middleware rewrite functionality
1402
+ - 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
438
1403
 
439
1404
  ## 1.49.0
440
1405
 
@@ -460,7 +1425,126 @@
460
1425
 
461
1426
  ### Minor Changes
462
1427
 
1428
+ - 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
1429
+ - 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
1430
+ - a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
1431
+ - fda5b92: ZERO-2725: fix invalid import
1432
+ - 2d9b2b2: ZERO-2816: Add segment to headers
1433
+ - c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
1434
+ - 8d9ac9a: ZERO-2794: Add field to order type
1435
+ - 70279e7: ZERO-2817: Add metrics endpoint in default middleware
1436
+ - 6c25f66: ZERO-2551: Check CACHE_HOST variable
1437
+ - bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
1438
+ - 3bf2dd9: ZERO-2551: Fix search page
1439
+ - e9541a1: ZERO-2816: Add headers to url
1440
+ - 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.
1441
+ - 9d94f7e: ZERO-2820: update parent pk usage for menu generator
1442
+ - 64699d3: ZERO-2761: Fix invalid import for plugin module
1443
+ - 0d3a913: ZERO-2725: Update decimal scale in Price component
1444
+ - 1448a96e: ZERO-2612: add errors type in CheckoutState
1445
+ - d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
1446
+ - d3474c6: ZERO-2655: Add data source shipping option
1447
+ - 75080fd6: ZERO-2630: Add max limit to postcode area
1448
+ - 17f8752: ZERO-2816: Make the incoming currency lowercase
1449
+ - c45b62c: ZERO-2818: Add upload and download support for b2b package
1450
+ - 91265bba: ZERO-2551: Improve pretty url and caching performance
1451
+ - bbe18b9f: ZERO-2575: Fix build error
1452
+ - d409996: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
1453
+ - 4920742: Disable getCachedTranslations
1454
+ - 7e56d6b: ZERO-2841: Update api tagTypes
1455
+ - 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
1456
+ - 98bb8dc: ZERO-2706: Cache getTranlations method
1457
+ - 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
1458
+ - dcc8a15: ZERO-2694: added build step to RC branch pipeline
1459
+ - 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
1460
+ - fad2768: ZERO-2739: add gpay to payment plugin map
1461
+ - dff0d595: ZERO-2659: add formData support to proxy api requests
1462
+ - eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
1463
+ - f2c325c: ZERO-2838: Move file input component into @akinon/next
1464
+ - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
1465
+ - beb499e6: ZERO-2551: Add new tsconfig paths
1466
+ - 948eb42: ZERO-2852: Add out of stock endpoints
1467
+ - 146ea39: ZERO-2774: Update imports
1468
+ - f2c92d5: ZERO-2816: Update cookie name
1469
+ - 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
1470
+ - c47be30: ZERO-2744: Update Order and OrderItem types
1471
+ - e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
1472
+ - f046f8e0: ZERO-2575: update version for react-number-format
1473
+ - 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
1474
+ - 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
1475
+
1476
+ ## 1.45.0-rc.4
1477
+
1478
+ ### Minor Changes
1479
+
1480
+ - 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
1481
+
1482
+ ## 1.45.0-rc.3
1483
+
1484
+ ### Minor Changes
1485
+
1486
+ - 948eb42: ZERO-2852: Add out of stock endpoints
1487
+
1488
+ ## 1.45.0-rc.2
1489
+
1490
+ ### Minor Changes
1491
+
1492
+ - c45b62c: ZERO-2818: Add upload and download support for b2b package
1493
+ - f2c325c: ZERO-2838: Move file input component into @akinon/next
1494
+
1495
+ ## 1.45.0-rc.1
1496
+
1497
+ ### Minor Changes
1498
+
1499
+ - 7e56d6b: ZERO-2841: Update api tagTypes
1500
+
1501
+ ## 1.45.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
+ - a4c8d6a9: 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
+ - 70279e7: ZERO-2817: Add metrics endpoint in default middleware
1513
+ - 6c25f66: ZERO-2551: Check CACHE_HOST variable
1514
+ - bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
1515
+ - 3bf2dd9: ZERO-2551: Fix search page
1516
+ - e9541a1: ZERO-2816: Add headers to url
1517
+ - 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.
1518
+ - 9d94f7e: ZERO-2820: update parent pk usage for menu generator
1519
+ - 64699d3: ZERO-2761: Fix invalid import for plugin module
1520
+ - 0d3a913: ZERO-2725: Update decimal scale in Price component
1521
+ - 1448a96: ZERO-2612: add errors type in CheckoutState
463
1522
  - 2ab6e08: ZERO-2841: Update getBasketDetail query
1523
+ - d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
1524
+ - d3474c6: ZERO-2655: Add data source shipping option
1525
+ - 75080fd: ZERO-2630: Add max limit to postcode area
1526
+ - 17f8752: ZERO-2816: Make the incoming currency lowercase
1527
+ - 91265bb: ZERO-2551: Improve pretty url and caching performance
1528
+ - bbe18b9: ZERO-2575: Fix build error
1529
+ - d409996: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
1530
+ - 4920742: Disable getCachedTranslations
1531
+ - 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
1532
+ - 98bb8dc: ZERO-2706: Cache getTranlations method
1533
+ - 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
1534
+ - dcc8a15: ZERO-2694: added build step to RC branch pipeline
1535
+ - fad2768: ZERO-2739: add gpay to payment plugin map
1536
+ - dff0d59: ZERO-2659: add formData support to proxy api requests
1537
+ - eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
1538
+ - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
1539
+ - beb499e: ZERO-2551: Add new tsconfig paths
1540
+ - 146ea39: ZERO-2774: Update imports
1541
+ - f2c92d5: ZERO-2816: Update cookie name
1542
+ - 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
1543
+ - c47be30: ZERO-2744: Update Order and OrderItem types
1544
+ - e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
1545
+ - f046f8e0: ZERO-2575: update version for react-number-format
1546
+ - 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
1547
+ - 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
464
1548
 
465
1549
  ## 1.44.0
466
1550
 
@@ -468,7 +1552,201 @@
468
1552
 
469
1553
  ### Minor Changes
470
1554
 
1555
+ - 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
1556
+ - 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
1557
+ - a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
1558
+ - fda5b92: ZERO-2725: fix invalid import
1559
+ - 2d9b2b2: ZERO-2816: Add segment to headers
1560
+ - c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
1561
+ - 8d9ac9a: ZERO-2794: Add field to order type
1562
+ - 70279e7: ZERO-2817: Add metrics endpoint in default middleware
1563
+ - 6c25f66: ZERO-2551: Check CACHE_HOST variable
1564
+ - bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
1565
+ - 3bf2dd9: ZERO-2551: Fix search page
1566
+ - e9541a1: ZERO-2816: Add headers to url
1567
+ - 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.
1568
+ - 9d94f7e: ZERO-2820: update parent pk usage for menu generator
1569
+ - 64699d3: ZERO-2761: Fix invalid import for plugin module
1570
+ - 0d3a913: ZERO-2725: Update decimal scale in Price component
1571
+ - 1448a96: ZERO-2612: add errors type in CheckoutState
1572
+ - d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
1573
+ - d3474c6: ZERO-2655: Add data source shipping option
1574
+ - 75080fd: ZERO-2630: Add max limit to postcode area
1575
+ - 17f8752: ZERO-2816: Make the incoming currency lowercase
1576
+ - 91265bb: ZERO-2551: Improve pretty url and caching performance
1577
+ - bbe18b9: ZERO-2575: Fix build error
1578
+ - d409996: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
1579
+ - 4920742: Disable getCachedTranslations
1580
+ - 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
1581
+ - 98bb8dc: ZERO-2706: Cache getTranlations method
1582
+ - 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
1583
+ - dcc8a15: ZERO-2694: added build step to RC branch pipeline
1584
+ - fad2768: ZERO-2739: add gpay to payment plugin map
1585
+ - dff0d59: ZERO-2659: add formData support to proxy api requests
1586
+ - eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
1587
+ - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
1588
+ - beb499e: ZERO-2551: Add new tsconfig paths
1589
+ - 146ea39: ZERO-2774: Update imports
1590
+ - f2c92d5: ZERO-2816: Update cookie name
1591
+ - 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
1592
+ - c47be30: ZERO-2744: Update Order and OrderItem types
1593
+ - e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
1594
+ - f046f8e0: ZERO-2575: update version for react-number-format
1595
+ - 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
1596
+ - 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
1597
+
1598
+ ## 1.43.0-rc.15
1599
+
1600
+ ## 1.43.0-rc.14
1601
+
1602
+ ### Minor Changes
1603
+
1604
+ - 3bf2dd9: ZERO-2551: Fix search page
1605
+
1606
+ ## 1.43.0-rc.13
1607
+
1608
+ ### Minor Changes
1609
+
1610
+ - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
1611
+
1612
+ ## 1.43.0-rc.12
1613
+
1614
+ ### Minor Changes
1615
+
1616
+ - 4920742: Disable getCachedTranslations
1617
+
1618
+ ## 1.43.0-rc.11
1619
+
1620
+ ### Minor Changes
1621
+
1622
+ - 6c25f66: ZERO-2551: Check CACHE_HOST variable
1623
+
1624
+ ## 1.43.0-rc.10
1625
+
1626
+ ### Minor Changes
1627
+
1628
+ - d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
1629
+
1630
+ ## 1.43.0-rc.9
1631
+
1632
+ ### Minor Changes
1633
+
1634
+ - bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
1635
+
1636
+ ## 1.43.0-rc.8
1637
+
1638
+ ### Minor Changes
1639
+
1640
+ - 70279e7: ZERO-2817: Add metrics endpoint in default middleware
1641
+ - 9d94f7e: ZERO-2820: update parent pk usage for menu generator
1642
+
1643
+ ## 1.43.0-rc.7
1644
+
1645
+ ### Minor Changes
1646
+
1647
+ - 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
1648
+
1649
+ ## 1.43.0-rc.6
1650
+
1651
+ ### Minor Changes
1652
+
1653
+ - 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
1654
+ - 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
1655
+ - a4c8d6a: ZERO-2663: Fix the image url for gif and svgs and return them without options
1656
+ - fda5b92: ZERO-2725: fix invalid import
1657
+ - 2d9b2b2: ZERO-2816: Add segment to headers
1658
+ - c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
1659
+ - 8d9ac9a: ZERO-2794: Add field to order type
1660
+ - e9541a1: ZERO-2816: Add headers to url
1661
+ - 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.
1662
+ - 64699d3: ZERO-2761: Fix invalid import for plugin module
1663
+ - 0d3a913: ZERO-2725: Update decimal scale in Price component
1664
+ - 1448a96: ZERO-2612: add errors type in CheckoutState
1665
+ - d3474c6: ZERO-2655: Add data source shipping option
1666
+ - 75080fd: ZERO-2630: Add max limit to postcode area
1667
+ - 17f8752: ZERO-2816: Make the incoming currency lowercase
1668
+ - 91265bb: ZERO-2551: Improve pretty url and caching performance
1669
+ - bbe18b9: ZERO-2575: Fix build error
1670
+ - d409996: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
1671
+ - 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
1672
+ - 98bb8dc: ZERO-2706: Cache getTranlations method
1673
+ - 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
1674
+ - dcc8a15: ZERO-2694: added build step to RC branch pipeline
1675
+ - fad2768: ZERO-2739: add gpay to payment plugin map
1676
+ - dff0d59: ZERO-2659: add formData support to proxy api requests
1677
+ - eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
471
1678
  - 4a163f2: ZERO-2761: Add condition for basket summary
1679
+ - beb499e: ZERO-2551: Add new tsconfig paths
1680
+ - 146ea39: ZERO-2774: Update imports
1681
+ - f2c92d5: ZERO-2816: Update cookie name
1682
+ - c47be30: ZERO-2744: Update Order and OrderItem types
1683
+ - e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
1684
+ - f046f8e: ZERO-2575: update version for react-number-format
1685
+ - 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
1686
+ - 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
1687
+
1688
+ ## 1.43.0-rc.5
1689
+
1690
+ ### Minor Changes
1691
+
1692
+ - 17f8752: ZERO-2816: Make the incoming currency lowercase
1693
+
1694
+ ## 1.43.0-rc.4
1695
+
1696
+ ### Minor Changes
1697
+
1698
+ - 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
1699
+
1700
+ ## 1.43.0-rc.3
1701
+
1702
+ ### Minor Changes
1703
+
1704
+ - 64699d3: ZERO-2761: Fix invalid import for plugin module
1705
+
1706
+ ## 1.43.0-rc.2
1707
+
1708
+ ### Minor Changes
1709
+
1710
+ - f2c92d5: ZERO-2816: Update cookie name
1711
+
1712
+ ## 1.43.0-rc.1
1713
+
1714
+ ### Minor Changes
1715
+
1716
+ - eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
1717
+
1718
+ ## 1.43.0-rc.0
1719
+
1720
+ ### Minor Changes
1721
+
1722
+ - 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
1723
+ - 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
1724
+ - a4c8d6a: ZERO-2663: Fix the image url for gif and svgs and return them without options
1725
+ - fda5b92: ZERO-2725: fix invalid import
1726
+ - 2d9b2b2: ZERO-2816: Add segment to headers
1727
+ - c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
1728
+ - 8d9ac9a: ZERO-2794: Add field to order type
1729
+ - e9541a1: ZERO-2816: Add headers to url
1730
+ - 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.
1731
+ - 0d3a913: ZERO-2725: Update decimal scale in Price component
1732
+ - 1448a96: ZERO-2612: add errors type in CheckoutState
1733
+ - d3474c6: ZERO-2655: Add data source shipping option
1734
+ - 75080fd: ZERO-2630: Add max limit to postcode area
1735
+ - 91265bb: ZERO-2551: Improve pretty url and caching performance
1736
+ - bbe18b9: ZERO-2575: Fix build error
1737
+ - d409996: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
1738
+ - 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
1739
+ - 98bb8dc: ZERO-2706: Cache getTranlations method
1740
+ - 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
1741
+ - dcc8a15: ZERO-2694: added build step to RC branch pipeline
1742
+ - fad2768: ZERO-2739: add gpay to payment plugin map
1743
+ - dff0d59: ZERO-2659: add formData support to proxy api requests
1744
+ - beb499e: ZERO-2551: Add new tsconfig paths
1745
+ - 146ea39: ZERO-2774: Update imports
1746
+ - c47be30: ZERO-2744: Update Order and OrderItem types
1747
+ - e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
1748
+ - f046f8e: ZERO-2575: update version for react-number-format
1749
+ - 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
472
1750
 
473
1751
  ## 1.42.0
474
1752