@akinon/next 1.99.0-rc.70 → 1.99.0-snapshot-ZERO-3640-20250919140935

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