@akinon/next 1.101.0-rc.76 → 1.101.0-snapshot-ZERO-3615-20250924130435

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