@akinon/next 1.102.0 → 1.103.0-rc.81

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