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