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