@akinon/next 1.100.0 → 1.101.0-rc.74

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