@akinon/next 1.103.0 → 1.104.0-rc.83

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