@akinon/next 1.102.0-rc.79 → 1.102.0

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