@akinon/next 1.107.0-rc.86 → 1.108.0-rc.0

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