@akinon/next 1.102.0 → 1.103.0-rc.80

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