@akinon/next 1.94.0 → 1.95.0-rc.54

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/CHANGELOG.md +1260 -49
  2. package/__tests__/next-config.test.ts +1 -10
  3. package/__tests__/redirect.test.ts +319 -0
  4. package/api/image-proxy.ts +75 -0
  5. package/api/similar-product-list.ts +84 -0
  6. package/api/similar-products.ts +120 -0
  7. package/components/accordion.tsx +20 -5
  8. package/components/file-input.tsx +65 -3
  9. package/components/input.tsx +2 -0
  10. package/components/link.tsx +16 -12
  11. package/components/modal.tsx +32 -16
  12. package/components/plugin-module.tsx +30 -3
  13. package/data/client/checkout.ts +5 -4
  14. package/data/server/basket.ts +72 -0
  15. package/data/server/category.ts +48 -28
  16. package/data/server/flatpage.ts +16 -12
  17. package/data/server/landingpage.ts +16 -12
  18. package/data/server/list.ts +23 -13
  19. package/data/server/product.ts +66 -39
  20. package/data/server/special-page.ts +16 -12
  21. package/data/urls.ts +5 -1
  22. package/hocs/server/with-segment-defaults.tsx +5 -2
  23. package/hooks/use-localization.ts +2 -3
  24. package/jest.config.js +7 -1
  25. package/lib/cache.ts +2 -0
  26. package/middlewares/checkout-provider.ts +1 -1
  27. package/middlewares/complete-gpay.ts +2 -1
  28. package/middlewares/complete-masterpass.ts +2 -1
  29. package/middlewares/default.ts +50 -13
  30. package/middlewares/locale.ts +9 -1
  31. package/middlewares/redirection-payment.ts +2 -1
  32. package/middlewares/saved-card-redirection.ts +2 -1
  33. package/middlewares/three-d-redirection.ts +2 -1
  34. package/middlewares/url-redirection.ts +9 -15
  35. package/package.json +3 -3
  36. package/plugins.d.ts +8 -0
  37. package/plugins.js +3 -1
  38. package/redux/middlewares/checkout.ts +5 -1
  39. package/sentry/index.ts +54 -17
  40. package/types/commerce/order.ts +1 -0
  41. package/types/index.ts +42 -1
  42. package/utils/app-fetch.ts +7 -2
  43. package/utils/index.ts +34 -10
  44. package/utils/redirect-ignore.ts +35 -0
  45. package/utils/redirect.ts +31 -6
  46. package/with-pz-config.js +1 -5
package/CHANGELOG.md CHANGED
@@ -1,5 +1,74 @@
1
1
  # @akinon/next
2
2
 
3
+ ## 1.95.0-rc.54
4
+
5
+ ### Minor Changes
6
+
7
+ - 5dfeea04a: ZERO-2801: Revert ZERO-2801
8
+ - 823d82f9: ZERO-3393: Enhance error handling in checkout middleware to ensure errors are checked for existence before processing
9
+ - 28c7ea79: ZERO-3427: Refactor redirect utility to handle undefined URL and improve locale handling
10
+ - e1aa030d: ZERO-3473: Refactor locale handling to prioritize cookie value for matched locale
11
+ - 63774a6a: ZERO-3351: Add commerce redirection ignore list functionality and related utility
12
+ - 2d9b2b2c9: ZERO-2816: Add segment to headers
13
+ - 5e1feca6: Revert "ZERO-3286: Add notFound handling for chunk URLs starting with \_next"
14
+ - 40a46853: ZERO-3182: Optimize basket update mutation with optimistic update
15
+ - 5f7edd6: ZERO-3571: Enhance Jest configuration by adding base directory resolution and module name mapping
16
+ - 68bbcb27: ZERO-3393: Fix error handling in checkout middleware to check for errors array length
17
+ - d8be48fb: ZERO-3422: Update fetch method to use dynamic request method in wallet complete redirection middleware
18
+ - b55acb76: ZERO-2577: Fix pagination bug and update usePagination hook and ensure pagination controls rendering correctly
19
+ - f49bb74f: ZERO-3097: Add setCookie to logging in payment redirection middlewares
20
+ - 0ad91bb: ZERO-3489: Improve error handling in data fetching across multiple pages and server functions
21
+ - 143be2b9: ZERO-3457: Crop styles are customizable and logic improved for rendering similar products modal
22
+ - e9541a13d: ZERO-2816: Add headers to url
23
+ - 9b7d0de6: ZERO-3393: Improve error handling in checkout middleware to support both object and array error formats
24
+ - 72fd4d67: ZERO-3084: Fix URL search parameters encoding in default middleware
25
+ - 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.
26
+ - a8539c8c: ZERO-3439: Enhance locale handling in middleware and redirect utility
27
+ - 16aff543: ZERO-3431: Add test script for redirect utility in package.json
28
+ - 64699d3ff: ZERO-2761: Fix invalid import for plugin module
29
+ - 9f8cd3bc: ZERO-3449: AI Search Active Filters & Crop Style changes have been implemented
30
+ - e974d8e8: ZERO-3406: Fix rc build
31
+ - 89ce46f: ZERO-3493: return 404 status code for pz-not-found pages
32
+ - 8645d90: ZERO-3574:Refactor redirect tests: streamline mock setup, enhance locale handling, and improve URL path resolution logic
33
+ - 7eb51ca9: ZERO-3424 :Update package versions
34
+ - 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
35
+ - 8b1d24eb: ZERO-3422: Update fetch method to use dynamic request method in wallet complete redirection middleware
36
+ - d552629f: ZERO-3182: Refactor basketApi to use invalidatesTags and comment out onQueryStarted logic
37
+ - 17f87524e: ZERO-2816: Make the incoming currency lowercase
38
+ - 65d3b862: ZERO-3054: Update headers in appFetch
39
+ - c39c7000: ZERO-3420: Refactor Modal component
40
+ - bbe18b9ff: ZERO-2575: Fix build error
41
+ - 35dfb8f8: ZERO-3363: Refactor URL handling in checkout and redirection middlewares to use url.origin instead of process.env.NEXT_PUBLIC_URL
42
+ - 4920742c2: Disable getCachedTranslations
43
+ - b6e5b624: ZERO-3257: Enhance locale middleware to redirect using existing or default locale and support 303 status for POST requests
44
+ - 0de55738: ZERO-3418: Update remotePatterns hostname to allow all subdomains
45
+ - 7e56d6b6b: ZERO-2841: Update api tagTypes
46
+ - d99a6a7d: ZERO-3457: Fixed the settings prop and made sure everything is customizable.
47
+ - 9dc7298a: ZERO-3416: Refactor Accordion component to enhance props and improve styling flexibility
48
+ - 33377cfd: ZERO-3267: Refactor import statement for ROUTES in error-page component
49
+ - 43c182ee: ZERO-3054: Update Redis variable checks to conditionally include CACHE_SECRET
50
+ - c480272: ZERO-3531: Refactor checkoutApi: Remove unnecessary invalidatesTags property from POST request from sample products
51
+ - b00a90b1: ZERO-3436: Preserve query params on redirect
52
+ - facf1ada: ZERO-3445: Add SameSite and Secure attributes
53
+ - 26b2d0b: ZERO-3571: Remove test script execution from prebuild and simplify Jest module name mapping
54
+ - eeb20bea: Revert "ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing"
55
+ - 99b6e7b9: ZERO-3421: Enhance Sentry error handling by adding network error detection logic and refining initialization options
56
+ - 3bf63c8a: ZERO-3286: Add notFound handling for chunk URLs starting with \_next
57
+ - 9be2c081: ZERO-3243: Improve basket update query handling with optimistic updates
58
+ - f7fd459b: ZERO-3445: Refactor setCookie function to include domain handling and improve cookie string construction
59
+ - 4de5303c: ZERO-2504: add cookie filter to api client request
60
+ - dc678c3: ZERO-3523: Enhance redirect tests with dynamic locale handling and settings integration
61
+ - f2c92d5c7: ZERO-2816: Update cookie name
62
+ - a420947d: ZERO-3517: Fix optional chaining for rawData in error logging for category data handlers
63
+ - 7bd3d9928: ZERO-2801: Refactor locale middleware to handle single locale configuration
64
+ - acd2afd: ZERO-3431: Fix import statement for findBaseDir in next-config test
65
+ - 2d3f1788: ZERO-3417: Enhance FileInput component with additional props for customization
66
+ - fdd255ee: ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing
67
+ - 49eeebfa: ZERO-2909: Add deleteCollectionItem query to wishlistApi
68
+ - 3f9b8d7e7: ZERO-2761: Update plugins.js for akinon-next
69
+ - cbdb5c14: ZERO-3448: fix set cookie domain handling for subdomain locale strategy
70
+ - 0e82301: ZERO-3531: Add saveSampleProducts endpoint
71
+
3
72
  ## 1.94.0
4
73
 
5
74
  ### Minor Changes
@@ -22,32 +91,149 @@
22
91
  ### Minor Changes
23
92
 
24
93
  - 185396f: ZERO-3569: Refactor logging in cache handler to use console_log instead of logger
25
- - 0bdab12: ZERO-3569: Refactor cache handler to improve Redis connection management and logging
94
+
95
+ ## 1.93.0-rc.47
96
+
97
+ ### Minor Changes
98
+
26
99
  - 3e4aadc: ZERO-3569: Fix import statement for logger in cache handler
27
100
 
101
+ ## 1.93.0-rc.46
102
+
103
+ ### Minor Changes
104
+
105
+ - 5dfeea04: ZERO-2801: Revert ZERO-2801
106
+ - 823d82f9: ZERO-3393: Enhance error handling in checkout middleware to ensure errors are checked for existence before processing
107
+ - 28c7ea79: ZERO-3427: Refactor redirect utility to handle undefined URL and improve locale handling
108
+ - e1aa030d: ZERO-3473: Refactor locale handling to prioritize cookie value for matched locale
109
+ - 6e6b0a9e: ZERO-3422: Add pz-flow-payment package
110
+ - 63774a6a: ZERO-3351: Add commerce redirection ignore list functionality and related utility
111
+ - 2d9b2b2c9: ZERO-2816: Add segment to headers
112
+ - 5e1feca6: Revert "ZERO-3286: Add notFound handling for chunk URLs starting with \_next"
113
+ - 40a46853: ZERO-3182: Optimize basket update mutation with optimistic update
114
+ - 5f7edd6c: ZERO-3571: Enhance Jest configuration by adding base directory resolution and module name mapping
115
+ - 68bbcb27: ZERO-3393: Fix error handling in checkout middleware to check for errors array length
116
+ - d8be48fb: ZERO-3422: Update fetch method to use dynamic request method in wallet complete redirection middleware
117
+ - b55acb76: ZERO-2577: Fix pagination bug and update usePagination hook and ensure pagination controls rendering correctly
118
+ - f49bb74f: ZERO-3097: Add setCookie to logging in payment redirection middlewares
119
+ - 0ad91bbd: ZERO-3489: Improve error handling in data fetching across multiple pages and server functions
120
+ - 143be2b9: ZERO-3457: Crop styles are customizable and logic improved for rendering similar products modal
121
+ - e9541a13d: ZERO-2816: Add headers to url
122
+ - 9b7d0de6: ZERO-3393: Improve error handling in checkout middleware to support both object and array error formats
123
+ - 72fd4d67: ZERO-3084: Fix URL search parameters encoding in default middleware
124
+ - 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.
125
+ - a8539c8c: ZERO-3439: Enhance locale handling in middleware and redirect utility
126
+ - 16aff543: ZERO-3431: Add test script for redirect utility in package.json
127
+ - 64699d3ff: ZERO-2761: Fix invalid import for plugin module
128
+ - 9f8cd3bc: ZERO-3449: AI Search Active Filters & Crop Style changes have been implemented
129
+ - e974d8e8: ZERO-3406: Fix rc build
130
+ - 89ce46fc: ZERO-3493: return 404 status code for pz-not-found pages
131
+ - 7eb51ca9: ZERO-3424 :Update package versions
132
+ - c806fad7: ZERO-3422: Add Flow Payment plugin to the defined plugins list
133
+ - 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
134
+ - 8b1d24eb: ZERO-3422: Update fetch method to use dynamic request method in wallet complete redirection middleware
135
+ - d552629f: ZERO-3182: Refactor basketApi to use invalidatesTags and comment out onQueryStarted logic
136
+ - 17f87524e: ZERO-2816: Make the incoming currency lowercase
137
+ - 65d3b862: ZERO-3054: Update headers in appFetch
138
+ - 0abde6bb: ZERO-3422: Update fetch method to use dynamic request method in wallet complete redirection middleware
139
+ - 72ad7bb1: ZERO-3422: Add Flow Payment to the list of available plugins
140
+ - c39c7000: ZERO-3420: Refactor Modal component
141
+ - e7cd3a5e: ZERO-3435: Add Accept-Language to requestHeaders
142
+ - bbe18b9ff: ZERO-2575: Fix build error
143
+ - 17bfadc4: ZERO-3275: Disable OpenTelemetry monitoring in production environment
144
+ - 35dfb8f8: ZERO-3363: Refactor URL handling in checkout and redirection middlewares to use url.origin instead of process.env.NEXT_PUBLIC_URL
145
+ - 4920742c2: Disable getCachedTranslations
146
+ - b6e5b624: ZERO-3257: Enhance locale middleware to redirect using existing or default locale and support 303 status for POST requests
147
+ - 0de55738: ZERO-3418: Update remotePatterns hostname to allow all subdomains
148
+ - 7e56d6b6b: ZERO-2841: Update api tagTypes
149
+ - dfaceffd: ZERO-3356: Add useLoyaltyAvailability hook and update checkout state management
150
+ - 86642cfa: ZERO-3531: Add saveSampleProducts endpoint and update URLs in checkout
151
+ - d99a6a7d: ZERO-3457: Fixed the settings prop and made sure everything is customizable.
152
+ - 9dc7298a: ZERO-3416: Refactor Accordion component to enhance props and improve styling flexibility
153
+ - 33377cfd: ZERO-3267: Refactor import statement for ROUTES in error-page component
154
+ - 0bdab120: ZERO-3569: Refactor cache handler to improve Redis connection management and logging
155
+ - 43c182ee: ZERO-3054: Update Redis variable checks to conditionally include CACHE_SECRET
156
+ - c480272c: ZERO-3531: Refactor checkoutApi: Remove unnecessary invalidatesTags property from POST request from sample products
157
+ - b00a90b1: ZERO-3436: Preserve query params on redirect
158
+ - facf1ada: ZERO-3445: Add SameSite and Secure attributes
159
+ - 485e8ef8: ZERO-3422: Refactor parameter handling in wallet complete redirection middleware to use forEach
160
+ - 26b2d0b7: ZERO-3571: Remove test script execution from prebuild and simplify Jest module name mapping
161
+ - eeb20bea: Revert "ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing"
162
+ - 99b6e7b9: ZERO-3421: Enhance Sentry error handling by adding network error detection logic and refining initialization options
163
+ - 3bf63c8a: ZERO-3286: Add notFound handling for chunk URLs starting with \_next
164
+ - 9be2c081: ZERO-3243: Improve basket update query handling with optimistic updates
165
+ - f7fd459b: ZERO-3445: Refactor setCookie function to include domain handling and improve cookie string construction
166
+ - 4de5303c: ZERO-2504: add cookie filter to api client request
167
+ - dc678c31: ZERO-3523: Enhance redirect tests with dynamic locale handling and settings integration
168
+ - f2c92d5c7: ZERO-2816: Update cookie name
169
+ - a420947d: ZERO-3517: Fix optional chaining for rawData in error logging for category data handlers
170
+ - 7bd3d9928: ZERO-2801: Refactor locale middleware to handle single locale configuration
171
+ - acd2afdf: ZERO-3431: Fix import statement for findBaseDir in next-config test
172
+ - 2d3f1788: ZERO-3417: Enhance FileInput component with additional props for customization
173
+ - fdd255ee: ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing
174
+ - b434ac89: ZERO-3545: Update fetchCheckout API URL to include page parameter
175
+ - 49eeebfa: ZERO-2909: Add deleteCollectionItem query to wishlistApi
176
+ - 3f9b8d7e7: ZERO-2761: Update plugins.js for akinon-next
177
+ - fee608dd: ZERO-3422: Refactor body handling in wallet complete redirection middleware
178
+ - cbdb5c14: ZERO-3448: fix set cookie domain handling for subdomain locale strategy
179
+ - 0e823010: ZERO-3531: Add saveSampleProducts endpoint
180
+
28
181
  ## 1.92.0
29
182
 
30
183
  ## 1.91.0
31
184
 
32
185
  ### Minor Changes
33
186
 
34
- - d8fad39: ZERO-3370: include plugins test to build stage
35
187
  - 2552486: ZERO-3391: Add subdomain support to setLocale function
36
- - f8e4cac: ZERO-3343: restrict root hostname to only locale subdomains
37
- - 832bee3: ZERO-3343: add domain to cookie for subdomain locale strategy
38
- - 28a59d4: ZERO-3400: refactor cookie domain logic using fallback host
39
- - 8feabe9: ZERO-3343: add custom NextAuth options support
40
- - bf354de: ZERO-3321: add babel compiler for akinon/next test
41
- - 448adef: ZERO-3321: move csp test to akinon-next
42
- - 6c3629c: ZERO-3321: fix jest tests in akinon-next for standalone projects
43
- - 6bc260b: ZERO-3295: update default tailwind content list
188
+
189
+ ## 1.91.0-rc.1
190
+
191
+ ## 1.91.0-rc.0
192
+
193
+ ### Minor Changes
194
+
195
+ - 5dfeea04: ZERO-2801: Revert ZERO-2801
196
+ - 823d82f: ZERO-3393: Enhance error handling in checkout middleware to ensure errors are checked for existence before processing
197
+ - 63774a6a: ZERO-3351: Add commerce redirection ignore list functionality and related utility
198
+ - 2d9b2b2c: ZERO-2816: Add segment to headers
199
+ - 5e1feca6: Revert "ZERO-3286: Add notFound handling for chunk URLs starting with \_next"
200
+ - d8fad39: ZERO-3370: include plugins test to build stage
201
+ - 40a46853: ZERO-3182: Optimize basket update mutation with optimistic update
202
+ - 68bbcb2: ZERO-3393: Fix error handling in checkout middleware to check for errors array length
203
+ - f49bb74f: ZERO-3097: Add setCookie to logging in payment redirection middlewares
204
+ - e9541a13: ZERO-2816: Add headers to url
205
+ - 9b7d0de: ZERO-3393: Improve error handling in checkout middleware to support both object and array error formats
206
+ - 72fd4d67: ZERO-3084: Fix URL search parameters encoding in default middleware
207
+ - 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.
208
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
209
+ - e974d8e: ZERO-3406: Fix rc build
210
+ - bf354de4: ZERO-3321: add babel compiler for akinon/next test
211
+ - 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
212
+ - d552629f: ZERO-3182: Refactor basketApi to use invalidatesTags and comment out onQueryStarted logic
213
+ - 448adefb: ZERO-3321: move csp test to akinon-next
214
+ - 17f87524: ZERO-2816: Make the incoming currency lowercase
215
+ - 65d3b862: ZERO-3054: Update headers in appFetch
216
+ - bbe18b9f: ZERO-2575: Fix build error
217
+ - 17bfadc4: ZERO-3275: Disable OpenTelemetry monitoring in production environment
218
+ - 4920742c: Disable getCachedTranslations
219
+ - b6e5b624: ZERO-3257: Enhance locale middleware to redirect using existing or default locale and support 303 status for POST requests
220
+ - 6c3629c2: ZERO-3321: fix jest tests in akinon-next for standalone projects
221
+ - 7e56d6b6: ZERO-2841: Update api tagTypes
222
+ - dfaceff: ZERO-3356: Add useLoyaltyAvailability hook and update checkout state management
223
+ - 33377cfd: ZERO-3267: Refactor import statement for ROUTES in error-page component
224
+ - 43c182ee: ZERO-3054: Update Redis variable checks to conditionally include CACHE_SECRET
44
225
  - 943a239: ZERO-3370: add allowJs in akinon-next test tsconfig
45
- - 068dc39: ZERO-3343: update get-root-hostname logic
46
- - 942490f: ZERO-3295: move third party tailwind content list to akinon-next
47
- - b6d5bda: ZERO-3343: update changeset config
48
- - acf0320: ZERO-3321: remove babel config
49
- - 387356b: ZERO-3323: Refactor locale filtering logic in URL matcher regex
50
- - b2ee69b: ZERO-3321: delete unnecessary files
226
+ - eeb20bea: Revert "ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing"
227
+ - 3bf63c8a: ZERO-3286: Add notFound handling for chunk URLs starting with \_next
228
+ - 9be2c081: ZERO-3243: Improve basket update query handling with optimistic updates
229
+ - f2c92d5c: ZERO-2816: Update cookie name
230
+ - 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
231
+ - fdd255ee: ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing
232
+ - acf03209: ZERO-3321: remove babel config
233
+ - 387356b6: ZERO-3323: Refactor locale filtering logic in URL matcher regex
234
+ - 49eeebfa: ZERO-2909: Add deleteCollectionItem query to wishlistApi
235
+ - 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
236
+ - b2ee69b9: ZERO-3321: delete unnecessary files
51
237
  - 0cabbda: ZERO-3370: replace inline monorepo check with reusable utility
52
238
 
53
239
  ## 1.90.0
@@ -108,13 +294,217 @@
108
294
 
109
295
  ### Minor Changes
110
296
 
111
- - 2e0b7ff: ZERO-3226: Refactor checkoutApi to simplify request body structure by removing device_info parameter
112
- - 778aabf: ZERO-3163: Add frontend ID header to authentication requests and forgot password mutation
113
- - c0fef07: ZERO-3197: Refetch payment options after loyalty usage
114
- - 2d2ab44: ZERO-3226: Add device_info param to WalletPaymentPage request
115
- - 0200d56: ZERO-3163: Add frontendIds property to Settings interface
116
- - 7d1b5af: ZERO-3206: Encode search parameters in product data URL
117
- - aa05ed7: ZERO-3170: Add commerceRedirectionIgnoreList to settings and update URL redirection middleware
297
+ - ef75c03: ZERO-3267: Update error-page component to use ROUTES for link navigation
298
+
299
+ ## 1.82.0-rc.20
300
+
301
+ ### Minor Changes
302
+
303
+ - e5529cd: ZERO-3267: Update error-page component to use root path for links instead of ROUTES
304
+
305
+ ## 1.82.0-rc.19
306
+
307
+ ### Minor Changes
308
+
309
+ - 33377cf: ZERO-3267: Refactor import statement for ROUTES in error-page component
310
+
311
+ ## 1.82.0-rc.18
312
+
313
+ ### Minor Changes
314
+
315
+ - e4761d2: Refactor import statement for ROUTES in error-page component
316
+
317
+ ## 1.82.0-rc.17
318
+
319
+ ### Minor Changes
320
+
321
+ - e2c6d426: ZERO-2935: Add @sentry/nextjs dependency to akinon-next and remove from projectzeronext
322
+ - 70bc0aed: ZERO-3284: Set tracesSampleRate in Sentry configuration
323
+
324
+ ## 1.82.0-rc.16
325
+
326
+ ### Minor Changes
327
+
328
+ - 757ee539: ZERO-3207: Add SMS send & verify endpoints with state management
329
+ - 6f506af: ZERO-3229: Implement mini basket query for basket total quantity
330
+ - 5dfeea04: ZERO-2801: Revert ZERO-2801
331
+ - 2d9b2b2c: ZERO-2816: Add segment to headers
332
+ - 5e1feca: Revert "ZERO-3286: Add notFound handling for chunk URLs starting with \_next"
333
+ - c0c1962: ZERO-3258: Add new API endpoints for fetching Bukalemun image URL and bundle product data
334
+ - 40a46853: ZERO-3182: Optimize basket update mutation with optimistic update
335
+ - f49bb74f: ZERO-3097: Add setCookie to logging in payment redirection middlewares
336
+ - 0e05135: ZERO-3244: Encode URL search parameters
337
+ - e9541a13: ZERO-2816: Add headers to url
338
+ - 4d3deb4f: ZERO-2935: sentry 8 upgrade
339
+ - 72fd4d67: ZERO-3084: Fix URL search parameters encoding in default middleware
340
+ - 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.
341
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
342
+ - 9abd011: ZERO-3267: Refactor error handling in ErrorPage component to set error details in Sentry scope
343
+ - 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
344
+ - d552629: ZERO-3182: Refactor basketApi to use invalidatesTags and comment out onQueryStarted logic
345
+ - c3b2f3f: ZERO-3267: Enable sentry client errors and filter them by log type
346
+ - 17f87524: ZERO-2816: Make the incoming currency lowercase
347
+ - 65d3b862: ZERO-3054: Update headers in appFetch
348
+ - bbe18b9f: ZERO-2575: Fix build error
349
+ - 17bfadc: ZERO-3275: Disable OpenTelemetry monitoring in production environment
350
+ - 4920742c: Disable getCachedTranslations
351
+ - b6e5b62: ZERO-3257: Enhance locale middleware to redirect using existing or default locale and support 303 status for POST requests
352
+ - ac65ca9: ZERO-3269: Enhance locale handling by adding Subdomain strategy and updating related functions
353
+ - 7e56d6b6: ZERO-2841: Update api tagTypes
354
+ - 43c182ee: ZERO-3054: Update Redis variable checks to conditionally include CACHE_SECRET
355
+ - 2d305aaf: ZERO-2935: Update Sentry configuration: remove hideSourceMaps option and add it to withPzConfig
356
+ - eeb20bea: Revert "ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing"
357
+ - 3bf63c8: ZERO-3286: Add notFound handling for chunk URLs starting with \_next
358
+ - 9be2c08: ZERO-3243: Improve basket update query handling with optimistic updates
359
+ - f2c92d5c: ZERO-2816: Update cookie name
360
+ - 2f3588f: ZERO-3287: Add user session handling in authentication flow
361
+ - 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
362
+ - fdd255ee: ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing
363
+ - 0b1bd07: ZERO-3240: Remove unused preOrderMiddleware
364
+ - 49eeebfa: ZERO-2909: Add deleteCollectionItem query to wishlistApi
365
+ - 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
366
+
367
+ ## 1.82.0-rc.15
368
+
369
+ ### Minor Changes
370
+
371
+ - 2f3588fb: ZERO-3287: Add user session handling in authentication flow
372
+
373
+ ## 1.82.0-rc.14
374
+
375
+ ### Minor Changes
376
+
377
+ - 5e1feca: Revert "ZERO-3286: Add notFound handling for chunk URLs starting with \_next"
378
+
379
+ ## 1.82.0-rc.13
380
+
381
+ ### Minor Changes
382
+
383
+ - 3bf63c8: ZERO-3286: Add notFound handling for chunk URLs starting with \_next
384
+
385
+ ## 1.82.0-rc.12
386
+
387
+ ### Minor Changes
388
+
389
+ - ac65ca9: ZERO-3269: Enhance locale handling by adding Subdomain strategy and updating related functions
390
+
391
+ ## 1.82.0-rc.11
392
+
393
+ ## 1.82.0-rc.10
394
+
395
+ ## 1.82.0-rc.9
396
+
397
+ ### Minor Changes
398
+
399
+ - 9abd011: ZERO-3267: Refactor error handling in ErrorPage component to set error details in Sentry scope
400
+
401
+ ## 1.82.0-rc.8
402
+
403
+ ### Minor Changes
404
+
405
+ - 17bfadc: ZERO-3275: Disable OpenTelemetry monitoring in production environment
406
+
407
+ ## 1.82.0-rc.7
408
+
409
+ ### Minor Changes
410
+
411
+ - c3b2f3f: ZERO-3267: Enable sentry client errors and filter them by log type
412
+
413
+ ## 1.82.0-rc.6
414
+
415
+ ### Minor Changes
416
+
417
+ - 0b1bd07f: ZERO-3240: Remove unused preOrderMiddleware
418
+
419
+ ## 1.82.0-rc.5
420
+
421
+ ### Minor Changes
422
+
423
+ - 6f506afc: ZERO-3229: Implement mini basket query for basket total quantity
424
+ - c0c19629: ZERO-3258: Add new API endpoints for fetching Bukalemun image URL and bundle product data
425
+ - 9be2c081: ZERO-3243: Improve basket update query handling with optimistic updates
426
+
427
+ ## 1.82.0-rc.4
428
+
429
+ ### Minor Changes
430
+
431
+ - b6e5b624: ZERO-3257: Enhance locale middleware to redirect using existing or default locale and support 303 status for POST requests
432
+
433
+ ## 1.82.0-rc.3
434
+
435
+ ## 1.82.0-rc.2
436
+
437
+ ### Minor Changes
438
+
439
+ - 757ee539: ZERO-3207: Add SMS send & verify endpoints with state management
440
+ - 5dfeea04: ZERO-2801: Revert ZERO-2801
441
+ - 2d9b2b2c: ZERO-2816: Add segment to headers
442
+ - 40a46853: ZERO-3182: Optimize basket update mutation with optimistic update
443
+ - f49bb74f: ZERO-3097: Add setCookie to logging in payment redirection middlewares
444
+ - 0e051352: ZERO-3244: Encode URL search parameters
445
+ - e9541a13: ZERO-2816: Add headers to url
446
+ - 4d3deb4f: ZERO-2935: sentry 8 upgrade
447
+ - 72fd4d67: ZERO-3084: Fix URL search parameters encoding in default middleware
448
+ - 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.
449
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
450
+ - 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
451
+ - d552629f: ZERO-3182: Refactor basketApi to use invalidatesTags and comment out onQueryStarted logic
452
+ - 17f87524: ZERO-2816: Make the incoming currency lowercase
453
+ - 65d3b862: ZERO-3054: Update headers in appFetch
454
+ - bbe18b9f: ZERO-2575: Fix build error
455
+ - 4920742c: Disable getCachedTranslations
456
+ - 7e56d6b6: ZERO-2841: Update api tagTypes
457
+ - 43c182ee: ZERO-3054: Update Redis variable checks to conditionally include CACHE_SECRET
458
+ - 2d305aaf: ZERO-2935: Update Sentry configuration: remove hideSourceMaps option and add it to withPzConfig
459
+ - eeb20bea: Revert "ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing"
460
+ - f2c92d5c: ZERO-2816: Update cookie name
461
+ - 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
462
+ - fdd255ee: ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing
463
+ - 49eeebfa: ZERO-2909: Add deleteCollectionItem query to wishlistApi
464
+ - 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
465
+
466
+ ## 1.82.0-rc.1
467
+
468
+ ### Minor Changes
469
+
470
+ - 0e051352: ZERO-3244: Encode URL search parameters
471
+
472
+ ## 1.82.0-rc.0
473
+
474
+ ### Minor Changes
475
+
476
+ - 2e0b7ffd: ZERO-3226: Refactor checkoutApi to simplify request body structure by removing device_info parameter
477
+ - 757ee539: ZERO-3207: Add SMS send & verify endpoints with state management
478
+ - 778aabf8: ZERO-3163: Add frontend ID header to authentication requests and forgot password mutation
479
+ - c0fef075: ZERO-3197: Refetch payment options after loyalty usage
480
+ - 5dfeea04: ZERO-2801: Revert ZERO-2801
481
+ - 2d9b2b2c: ZERO-2816: Add segment to headers
482
+ - 40a46853: ZERO-3182: Optimize basket update mutation with optimistic update
483
+ - 2d2ab446: ZERO-3226: Add device_info param to WalletPaymentPage request
484
+ - f49bb74f: ZERO-3097: Add setCookie to logging in payment redirection middlewares
485
+ - e9541a13: ZERO-2816: Add headers to url
486
+ - 4d3deb4f: ZERO-2935: sentry 8 upgrade
487
+ - 72fd4d67: ZERO-3084: Fix URL search parameters encoding in default middleware
488
+ - 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.
489
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
490
+ - 0200d568: ZERO-3163: Add frontendIds property to Settings interface
491
+ - 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
492
+ - d552629f: ZERO-3182: Refactor basketApi to use invalidatesTags and comment out onQueryStarted logic
493
+ - 17f87524: ZERO-2816: Make the incoming currency lowercase
494
+ - 65d3b862: ZERO-3054: Update headers in appFetch
495
+ - bbe18b9f: ZERO-2575: Fix build error
496
+ - 4920742c: Disable getCachedTranslations
497
+ - 7e56d6b6: ZERO-2841: Update api tagTypes
498
+ - 7d1b5af1: ZERO-3206: Encode search parameters in product data URL
499
+ - 43c182ee: ZERO-3054: Update Redis variable checks to conditionally include CACHE_SECRET
500
+ - 2d305aaf: ZERO-2935: Update Sentry configuration: remove hideSourceMaps option and add it to withPzConfig
501
+ - eeb20bea: Revert "ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing"
502
+ - f2c92d5c: ZERO-2816: Update cookie name
503
+ - 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
504
+ - fdd255ee: ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing
505
+ - aa05ed79: ZERO-3170: Add commerceRedirectionIgnoreList to settings and update URL redirection middleware
506
+ - 49eeebfa: ZERO-2909: Add deleteCollectionItem query to wishlistApi
507
+ - 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
118
508
 
119
509
  ## 1.81.0
120
510
 
@@ -134,7 +524,116 @@
134
524
 
135
525
  ### Minor Changes
136
526
 
137
- - 59fa21c: ZERO-3149: Add name-based mechanism for Redux middleware override
527
+ - 778aabf8: ZERO-3163: Add frontend ID header to authentication requests and forgot password mutation
528
+ - 5dfeea04: ZERO-2801: Revert ZERO-2801
529
+ - 2d9b2b2c: ZERO-2816: Add segment to headers
530
+ - fd4b74e9: ZERO-3126: add reset checkout state query
531
+ - f49bb74f: ZERO-3097: Add setCookie to logging in payment redirection middlewares
532
+ - e9541a13: ZERO-2816: Add headers to url
533
+ - 4d3deb4f: ZERO-2935: sentry 8 upgrade
534
+ - 72fd4d67: ZERO-3084: Fix URL search parameters encoding in default middleware
535
+ - 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.
536
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
537
+ - 0200d568: ZERO-3163: Add frontendIds property to Settings interface
538
+ - 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
539
+ - 17f87524: ZERO-2816: Make the incoming currency lowercase
540
+ - 65d3b862: ZERO-3054: Update headers in appFetch
541
+ - bbe18b9f: ZERO-2575: Fix build error
542
+ - 4920742c: Disable getCachedTranslations
543
+ - 7e56d6b6: ZERO-2841: Update api tagTypes
544
+ - 43c182ee: ZERO-3054: Update Redis variable checks to conditionally include CACHE_SECRET
545
+ - 2d305aaf: ZERO-2935: Update Sentry configuration: remove hideSourceMaps option and add it to withPzConfig
546
+ - 4cc22c7c: ZERO-3125: replace X-Frame-Options with CSP frame-ancestors
547
+ - eeb20bea: Revert "ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing"
548
+ - 6a0a0807: ZERO-3112: Update button
549
+ - f2c92d5c: ZERO-2816: Update cookie name
550
+ - 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
551
+ - fdd255ee: ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing
552
+ - 49eeebfa: ZERO-2909: Add deleteCollectionItem query to wishlistApi
553
+ - 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
554
+ - 7ab9e2fd: ZERO-3166: add tamara payment package
555
+
556
+ ## 1.79.0-rc.6
557
+
558
+ ### Minor Changes
559
+
560
+ - 0200d568: ZERO-3163: Add frontendIds property to Settings interface
561
+
562
+ ## 1.79.0-rc.5
563
+
564
+ ### Minor Changes
565
+
566
+ - 778aabf8: ZERO-3163: Add frontend ID header to authentication requests and forgot password mutation
567
+
568
+ ## 1.79.0-rc.4
569
+
570
+ ## 1.79.0-rc.3
571
+
572
+ ### Minor Changes
573
+
574
+ - 5dfeea04: ZERO-2801: Revert ZERO-2801
575
+ - 2d9b2b2c: ZERO-2816: Add segment to headers
576
+ - fd4b74e9: ZERO-3126: add reset checkout state query
577
+ - f49bb74f: ZERO-3097: Add setCookie to logging in payment redirection middlewares
578
+ - e9541a13: ZERO-2816: Add headers to url
579
+ - 4d3deb4f: ZERO-2935: sentry 8 upgrade
580
+ - 72fd4d67: ZERO-3084: Fix URL search parameters encoding in default middleware
581
+ - 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.
582
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
583
+ - 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
584
+ - 17f87524: ZERO-2816: Make the incoming currency lowercase
585
+ - 65d3b862: ZERO-3054: Update headers in appFetch
586
+ - bbe18b9f: ZERO-2575: Fix build error
587
+ - 4920742c: Disable getCachedTranslations
588
+ - 7e56d6b6: ZERO-2841: Update api tagTypes
589
+ - 43c182ee: ZERO-3054: Update Redis variable checks to conditionally include CACHE_SECRET
590
+ - 2d305aaf: ZERO-2935: Update Sentry configuration: remove hideSourceMaps option and add it to withPzConfig
591
+ - 4cc22c7c: ZERO-3125: replace X-Frame-Options with CSP frame-ancestors
592
+ - eeb20bea: Revert "ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing"
593
+ - 6a0a0807: ZERO-3112: Update button
594
+ - f2c92d5c: ZERO-2816: Update cookie name
595
+ - 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
596
+ - fdd255ee: ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing
597
+ - 59fa21ce: ZERO-3149: Add name-based mechanism for Redux middleware override
598
+ - 49eeebfa: ZERO-2909: Add deleteCollectionItem query to wishlistApi
599
+ - 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
600
+
601
+ ## 1.79.0-rc.2
602
+
603
+ ## 1.79.0-rc.1
604
+
605
+ ### Minor Changes
606
+
607
+ - 4cc22c7c: ZERO-3125: replace X-Frame-Options with CSP frame-ancestors
608
+
609
+ ## 1.79.0-rc.0
610
+
611
+ ### Minor Changes
612
+
613
+ - 5dfeea04: ZERO-2801: Revert ZERO-2801
614
+ - 2d9b2b2c: ZERO-2816: Add segment to headers
615
+ - fd4b74e9: ZERO-3126: add reset checkout state query
616
+ - f49bb74f: ZERO-3097: Add setCookie to logging in payment redirection middlewares
617
+ - e9541a13: ZERO-2816: Add headers to url
618
+ - 4d3deb4f: ZERO-2935: sentry 8 upgrade
619
+ - 72fd4d67: ZERO-3084: Fix URL search parameters encoding in default middleware
620
+ - 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.
621
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
622
+ - 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
623
+ - 17f87524: ZERO-2816: Make the incoming currency lowercase
624
+ - 65d3b862: ZERO-3054: Update headers in appFetch
625
+ - bbe18b9f: ZERO-2575: Fix build error
626
+ - 4920742c: Disable getCachedTranslations
627
+ - 7e56d6b6: ZERO-2841: Update api tagTypes
628
+ - 43c182ee: ZERO-3054: Update Redis variable checks to conditionally include CACHE_SECRET
629
+ - 2d305aaf: ZERO-2935: Update Sentry configuration: remove hideSourceMaps option and add it to withPzConfig
630
+ - eeb20bea: Revert "ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing"
631
+ - 6a0a0807: ZERO-3112: Update button
632
+ - f2c92d5c: ZERO-2816: Update cookie name
633
+ - 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
634
+ - fdd255ee: ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing
635
+ - 49eeebfa: ZERO-2909: Add deleteCollectionItem query to wishlistApi
636
+ - 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
138
637
 
139
638
  ## 1.78.0
140
639
 
@@ -206,6 +705,52 @@
206
705
  ### Minor Changes
207
706
 
208
707
  - f34454a: ZERO-2953: Add hepsipay payment method
708
+ - 3bfa12a: ZERO-3003:Add fetchLoyaltyData and setLoyaltyData requests to RTK
709
+ - 4d3deb4: ZERO-2935: sentry 8 upgrade
710
+ - 3010514: ZERO-3011:add shipping_option_operator and custom filter to getOrders
711
+ - 9a50730: ZERO-3015: Add currency parameter to getOrders query
712
+ - ca774b3: ZERO-3002:add register with loyalty url
713
+ - 56cdddc: ZERO-0000: SHOP-78125: Change unpaid_amount with total_amount_with_interest
714
+ - 3344bca: ZERO-3013: Enable web vitals tracking in settings.js
715
+
716
+ ## 1.71.0-rc.7
717
+
718
+ ## 1.71.0-rc.6
719
+
720
+ ### Minor Changes
721
+
722
+ - f34454a: ZERO-2953: Add hepsipay payment method
723
+
724
+ ## 1.71.0-rc.5
725
+
726
+ ## 1.71.0-rc.4
727
+
728
+ ## 1.71.0-rc.3
729
+
730
+ ### Minor Changes
731
+
732
+ - 3344bca: ZERO-3013: Enable web vitals tracking in settings.js
733
+
734
+ ## 1.71.0-rc.2
735
+
736
+ ### Minor Changes
737
+
738
+ - 56cdddc: ZERO-0000: SHOP-78125: Change unpaid_amount with total_amount_with_interest
739
+
740
+ ## 1.71.0-rc.1
741
+
742
+ ### Minor Changes
743
+
744
+ - 9a50730: ZERO-3015: Add currency parameter to getOrders query
745
+
746
+ ## 1.71.0-rc.0
747
+
748
+ ### Minor Changes
749
+
750
+ - 3bfa12a: ZERO-3003:Add fetchLoyaltyData and setLoyaltyData requests to RTK
751
+ - 4d3deb4: ZERO-2935: sentry 8 upgrade
752
+ - 3010514: ZERO-3011:add shipping_option_operator and custom filter to getOrders
753
+ - ca774b3: ZERO-3002:add register with loyalty url
209
754
 
210
755
  ## 1.70.0
211
756
 
@@ -217,12 +762,72 @@
217
762
 
218
763
  ### Minor Changes
219
764
 
765
+ - 3bfa12a: ZERO-3003:Add fetchLoyaltyData and setLoyaltyData requests to RTK
766
+ - 4d3deb4: ZERO-2935: sentry 8 upgrade
767
+ - 3010514: ZERO-3011:add shipping_option_operator and custom filter to getOrders
768
+ - ca774b3: ZERO-3002:add register with loyalty url
769
+ - f046f8e: ZERO-2575: update version for react-number-format
770
+
771
+ ## 1.69.0-rc.8
772
+
773
+ ### Minor Changes
774
+
775
+ - 3010514: ZERO-3011:add shipping_option_operator and custom filter to getOrders
776
+ - ca774b3: ZERO-3002:add register with loyalty url
777
+
778
+ ## 1.69.0-rc.7
779
+
780
+ ### Minor Changes
781
+
782
+ - 3bfa12a: ZERO-3003:Add fetchLoyaltyData and setLoyaltyData requests to RTK
783
+
784
+ ## 1.69.0-rc.6
785
+
786
+ ### Minor Changes
787
+
788
+ - 4d3deb4: ZERO-2935: sentry 8 upgrade
220
789
  - 063da74: ZERO-3010: Remove pz-iyzico-saved-card package
221
790
  - 72da021: ZERO-3010: Remove unused code in pretty-url.tsx
222
791
  - 5632a99: ZERO-3010: Remove iyzicoSavedCardReducer from reducers
223
792
  - cbdb0c8: ZERO-3010: Move pretty url page into project
224
793
  - 80c869b: ZERO-3010: Remove savedCardMiddleware from redux middlewares
225
794
 
795
+ ## 1.69.0-rc.5
796
+
797
+ ### Minor Changes
798
+
799
+ - 80c869b: ZERO-3010: Remove savedCardMiddleware from redux middlewares
800
+
801
+ ## 1.69.0-rc.4
802
+
803
+ ### Minor Changes
804
+
805
+ - 063da74: ZERO-3010: Remove pz-iyzico-saved-card package
806
+
807
+ ## 1.69.0-rc.3
808
+
809
+ ### Minor Changes
810
+
811
+ - cbdb0c8: ZERO-3010: Move pretty url page into project
812
+
813
+ ## 1.69.0-rc.2
814
+
815
+ ### Minor Changes
816
+
817
+ - 5632a99: ZERO-3010: Remove iyzicoSavedCardReducer from reducers
818
+
819
+ ## 1.69.0-rc.1
820
+
821
+ ### Minor Changes
822
+
823
+ - 72da021: ZERO-3010: Remove unused code in pretty-url.tsx
824
+
825
+ ## 1.69.0-rc.0
826
+
827
+ ### Minor Changes
828
+
829
+ - 4d3deb4: ZERO-2935: sentry 8 upgrade
830
+
226
831
  ## 1.68.0
227
832
 
228
833
  ### Minor Changes
@@ -332,57 +937,350 @@
332
937
 
333
938
  ### Minor Changes
334
939
 
335
- - d93a507: ZERO-2900: Fix pretty url rewrite
336
- - 674badc: ZERO-2912: Fix selected payment option view to handle null values
337
- - 207ac6e: ZERO-2917: Add OrderSelectionPage endpoint
338
- - b9273fd: ZERO-2889: add host headers to requests
339
- - c670bd4: ZERO-2900: Add middleware rewrite functionality
940
+ - c416d18: ZERO-2915: Add delivery option null check for setAddress
941
+ - 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
942
+ - 5dfeea0: ZERO-2801: Revert ZERO-2801
943
+ - a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
944
+ - fda5b927: ZERO-2725: fix invalid import
945
+ - 2d9b2b2c: ZERO-2816: Add segment to headers
946
+ - c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
947
+ - 6c25f66: ZERO-2551: Check CACHE_HOST variable
948
+ - bc2b4117: ZERO-2825: Add attribute-based shipping options to checkout page
949
+ - 3bf2dd9: ZERO-2551: Fix search page
950
+ - e9541a13: ZERO-2816: Add headers to url
951
+ - 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.
952
+ - 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
953
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
954
+ - 0d3a913e: ZERO-2725: Update decimal scale in Price component
955
+ - 7b05522: ZERO-2905: Fix resend and close button in otp package
956
+ - d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
957
+ - d3474c64: ZERO-2655: Add data source shipping option
958
+ - 17f87524: ZERO-2816: Make the incoming currency lowercase
959
+ - 29ead87: ZERO-2905: Fix resend and close button in otp package
960
+ - c45b62c: ZERO-2818: Add upload and download support for b2b package
961
+ - 91265bba: ZERO-2551: Improve pretty url and caching performance
962
+ - bbe18b9f: ZERO-2575: Fix build error
963
+ - d4099960: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
964
+ - 4920742: Disable getCachedTranslations
965
+ - 12a873e: ZERO-2846:Edit the siteKey regex in the response from GetCaptcha
966
+ - 7e56d6b: ZERO-2841: Update api tagTypes
967
+ - 94b69285: ZERO-2551: Add cache handler check in url-redirection middleware
968
+ - 98bb8dcd: ZERO-2706: Cache getTranlations method
969
+ - dcc8a150: ZERO-2694: added build step to RC branch pipeline
970
+ - 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
971
+ - fad27689: ZERO-2739: add gpay to payment plugin map
972
+ - dff0d595: ZERO-2659: add formData support to proxy api requests
973
+ - fdd0b41: ZERO-2706: Add optimized translation support
974
+ - f2c325c: ZERO-2838: Move file input component into @akinon/next
975
+ - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
976
+ - beb499e6: ZERO-2551: Add new tsconfig paths
977
+ - f2c92d5c: ZERO-2816: Update cookie name
978
+ - 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
979
+ - f3d076b: ZERO-2864: create tabby extension plugin
980
+ - f046f8e0: ZERO-2575: update version for react-number-format
981
+ - 49eeebf: ZERO-2909: Add deleteCollectionItem query to wishlistApi
982
+ - 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
983
+ - 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
340
984
 
341
- ## 1.55.0
985
+ ## 1.56.0-rc.7
986
+
987
+ ## 1.56.0-rc.6
342
988
 
343
989
  ### Minor Changes
344
990
 
345
- - 1448a96: ZERO-2612: add errors type in CheckoutState
346
- - 75080fd: ZERO-2630: Add max limit to postcode area
347
- - eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
991
+ - f3d076b: ZERO-2864: create tabby extension plugin
348
992
 
349
- ## 1.54.0
993
+ ## 1.56.0-rc.5
350
994
 
351
995
  ### Minor Changes
352
996
 
353
- - 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
354
- - c47be30: ZERO-2744: Update Order and OrderItem types
355
- - e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
997
+ - c416d18: ZERO-2915: Add delivery option null check for setAddress
356
998
 
357
- ## 1.53.0
999
+ ## 1.56.0-rc.4
358
1000
 
359
1001
  ### Minor Changes
360
1002
 
361
- - a957942: ZERO-2909: Rename useDeleteCollectionItemQuery
1003
+ - 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
1004
+ - 5dfeea0: ZERO-2801: Revert ZERO-2801
1005
+ - a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
1006
+ - fda5b927: ZERO-2725: fix invalid import
1007
+ - 2d9b2b2c: ZERO-2816: Add segment to headers
1008
+ - c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
1009
+ - d93a507: ZERO-2900: Fix pretty url rewrite
1010
+ - 6c25f66: ZERO-2551: Check CACHE_HOST variable
1011
+ - bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
1012
+ - 3bf2dd9: ZERO-2551: Fix search page
1013
+ - e9541a13: ZERO-2816: Add headers to url
1014
+ - 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.
1015
+ - 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
1016
+ - 64699d3: ZERO-2761: Fix invalid import for plugin module
1017
+ - 0d3a913e: ZERO-2725: Update decimal scale in Price component
1018
+ - 7b05522: ZERO-2905: Fix resend and close button in otp package
1019
+ - d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
1020
+ - d3474c64: ZERO-2655: Add data source shipping option
1021
+ - 17f8752: ZERO-2816: Make the incoming currency lowercase
1022
+ - 29ead87: ZERO-2905: Fix resend and close button in otp package
1023
+ - c45b62c: ZERO-2818: Add upload and download support for b2b package
1024
+ - 91265bba: ZERO-2551: Improve pretty url and caching performance
1025
+ - bbe18b9f: ZERO-2575: Fix build error
1026
+ - d4099960: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
1027
+ - 4920742: Disable getCachedTranslations
1028
+ - 12a873e: ZERO-2846:Edit the siteKey regex in the response from GetCaptcha
1029
+ - 674badc: ZERO-2912: Fix selected payment option view to handle null values
1030
+ - 7e56d6b: ZERO-2841: Update api tagTypes
1031
+ - 94b69285: ZERO-2551: Add cache handler check in url-redirection middleware
1032
+ - 98bb8dcd: ZERO-2706: Cache getTranlations method
1033
+ - 207ac6e: ZERO-2917: Add OrderSelectionPage endpoint
1034
+ - dcc8a150: ZERO-2694: added build step to RC branch pipeline
1035
+ - 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
1036
+ - fad27689: ZERO-2739: add gpay to payment plugin map
1037
+ - dff0d595: ZERO-2659: add formData support to proxy api requests
1038
+ - fdd0b41: ZERO-2706: Add optimized translation support
1039
+ - f2c325c: ZERO-2838: Move file input component into @akinon/next
1040
+ - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
1041
+ - beb499e6: ZERO-2551: Add new tsconfig paths
1042
+ - f2c92d5c: ZERO-2816: Update cookie name
1043
+ - 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
1044
+ - f046f8e0: ZERO-2575: update version for react-number-format
1045
+ - b9273fd: ZERO-2889: add host headers to requests
1046
+ - 49eeebf: ZERO-2909: Add deleteCollectionItem query to wishlistApi
1047
+ - 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
1048
+ - c670bd4: ZERO-2900: Add middleware rewrite functionality
1049
+ - 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
362
1050
 
363
- ## 1.52.0
1051
+ ## 1.56.0-rc.3
364
1052
 
365
1053
  ### Minor Changes
366
1054
 
367
- - d8dd8dc: ZERO-2729: Audit packages for yarn and npm and also update app-template
368
- - 8d9ac9a: ZERO-2794: Add field to order type
369
- - 016d379: ZERO-2729: Update packages and force update dependencies using resolutions
370
- - 146ea39: ZERO-2774: Update imports
1055
+ - 674badc: ZERO-2912: Fix selected payment option view to handle null values
371
1056
 
372
- ## 1.51.0
1057
+ ## 1.56.0-rc.2
373
1058
 
374
1059
  ### Minor Changes
375
1060
 
376
- - 70279e7: ZERO-2817: Add metrics endpoint in default middleware
377
- - 9d94f7e: ZERO-2820: update parent pk usage for menu generator
378
- - 1ec2e9d: ZERO-2895: Update app-fetch to include cookies in headers
379
- - 3d35f70: ZERO-2908: Add cookie to redirect url
1061
+ - 7b05522: ZERO-2905: Fix resend and close button in otp package
1062
+ - 29ead87: ZERO-2905: Fix resend and close button in otp package
1063
+
1064
+ ## 1.56.0-rc.1
1065
+
1066
+ ### Minor Changes
1067
+
1068
+ - 207ac6e: ZERO-2917: Add OrderSelectionPage endpoint
1069
+
1070
+ ## 1.56.0-rc.0
1071
+
1072
+ ### Minor Changes
1073
+
1074
+ - 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
1075
+ - 5dfeea0: ZERO-2801: Revert ZERO-2801
1076
+ - a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
1077
+ - fda5b927: ZERO-2725: fix invalid import
1078
+ - 2d9b2b2c: ZERO-2816: Add segment to headers
1079
+ - c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
1080
+ - d93a507: ZERO-2900: Fix pretty url rewrite
1081
+ - 6c25f666: ZERO-2551: Check CACHE_HOST variable
1082
+ - bc2b4117: ZERO-2825: Add attribute-based shipping options to checkout page
1083
+ - 3bf2dd94: ZERO-2551: Fix search page
1084
+ - e9541a13: ZERO-2816: Add headers to url
1085
+ - 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.
1086
+ - 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
1087
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
1088
+ - 0d3a913e: ZERO-2725: Update decimal scale in Price component
1089
+ - d6edb1d0: ZERO-2551: Fix searchparams handling for list and other routes
1090
+ - d3474c64: ZERO-2655: Add data source shipping option
1091
+ - 17f87524: ZERO-2816: Make the incoming currency lowercase
1092
+ - c45b62c9: ZERO-2818: Add upload and download support for b2b package
1093
+ - 91265bba: ZERO-2551: Improve pretty url and caching performance
1094
+ - bbe18b9f: ZERO-2575: Fix build error
1095
+ - d4099960: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
1096
+ - 4920742c: Disable getCachedTranslations
1097
+ - 12a873e: ZERO-2846:Edit the siteKey regex in the response from GetCaptcha
1098
+ - 7e56d6b6: ZERO-2841: Update api tagTypes
1099
+ - 94b69285: ZERO-2551: Add cache handler check in url-redirection middleware
1100
+ - 98bb8dcd: ZERO-2706: Cache getTranlations method
1101
+ - dcc8a150: ZERO-2694: added build step to RC branch pipeline
1102
+ - 8f47ccae: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
1103
+ - fad27689: ZERO-2739: add gpay to payment plugin map
1104
+ - dff0d595: ZERO-2659: add formData support to proxy api requests
1105
+ - fdd0b41: ZERO-2706: Add optimized translation support
1106
+ - f2c325c1: ZERO-2838: Move file input component into @akinon/next
1107
+ - 9e25a64b: ZERO-2835: Update category page layout with breadcrumb
1108
+ - beb499e6: ZERO-2551: Add new tsconfig paths
1109
+ - f2c92d5c: ZERO-2816: Update cookie name
1110
+ - 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
1111
+ - f046f8e0: ZERO-2575: update version for react-number-format
1112
+ - b9273fd3: ZERO-2889: add host headers to requests
1113
+ - 49eeebf: ZERO-2909: Add deleteCollectionItem query to wishlistApi
1114
+ - 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
1115
+ - c670bd48: ZERO-2900: Add middleware rewrite functionality
1116
+ - 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
1117
+
1118
+ ## 1.55.0
1119
+
1120
+ ### Minor Changes
1121
+
1122
+ - 1448a96: ZERO-2612: add errors type in CheckoutState
1123
+ - 75080fd: ZERO-2630: Add max limit to postcode area
1124
+ - eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
1125
+
1126
+ ## 1.54.0
1127
+
1128
+ ### Minor Changes
1129
+
1130
+ - 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
1131
+ - c47be30: ZERO-2744: Update Order and OrderItem types
1132
+ - e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
1133
+
1134
+ ## 1.53.0
1135
+
1136
+ ### Minor Changes
1137
+
1138
+ - a957942: ZERO-2909: Rename useDeleteCollectionItemQuery
1139
+
1140
+ ## 1.52.0
1141
+
1142
+ ### Minor Changes
1143
+
1144
+ - d8dd8dc: ZERO-2729: Audit packages for yarn and npm and also update app-template
1145
+ - 8d9ac9a: ZERO-2794: Add field to order type
1146
+ - 016d379: ZERO-2729: Update packages and force update dependencies using resolutions
1147
+ - 146ea39: ZERO-2774: Update imports
1148
+
1149
+ ## 1.51.0
1150
+
1151
+ ### Minor Changes
1152
+
1153
+ - 70279e7: ZERO-2817: Add metrics endpoint in default middleware
1154
+ - 9d94f7e: ZERO-2820: update parent pk usage for menu generator
1155
+ - 1ec2e9d: ZERO-2895: Update app-fetch to include cookies in headers
1156
+ - 3d35f70: ZERO-2908: Add cookie to redirect url
380
1157
 
381
1158
  ## 1.50.0
382
1159
 
383
1160
  ### Minor Changes
384
1161
 
1162
+ - 90282b53: ZERO-2729: Audit packages for yarn and npm and also update app-template
1163
+ - 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
1164
+ - 5dfeea0: ZERO-2801: Revert ZERO-2801
1165
+ - a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
1166
+ - fda5b927: ZERO-2725: fix invalid import
1167
+ - 2d9b2b2: ZERO-2816: Add segment to headers
1168
+ - c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
1169
+ - d93a507: ZERO-2900: Fix pretty url rewrite
1170
+ - 8d9ac9a: ZERO-2794: Add field to order type
1171
+ - 70279e7: ZERO-2817: Add metrics endpoint in default middleware
1172
+ - 6c25f66: ZERO-2551: Check CACHE_HOST variable
1173
+ - bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
1174
+ - 3bf2dd9: ZERO-2551: Fix search page
1175
+ - e9541a1: ZERO-2816: Add headers to url
1176
+ - 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.
1177
+ - 9d94f7e: ZERO-2820: update parent pk usage for menu generator
1178
+ - 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
1179
+ - 64699d3: ZERO-2761: Fix invalid import for plugin module
1180
+ - 0d3a913e: ZERO-2725: Update decimal scale in Price component
1181
+ - 1448a96e: ZERO-2612: add errors type in CheckoutState
1182
+ - 1ec2e9d: ZERO-2895: Update app-fetch to include cookies in headers
1183
+ - d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
1184
+ - d3474c64: ZERO-2655: Add data source shipping option
1185
+ - 75080fd6: ZERO-2630: Add max limit to postcode area
1186
+ - 17f8752: ZERO-2816: Make the incoming currency lowercase
1187
+ - c45b62c: ZERO-2818: Add upload and download support for b2b package
1188
+ - 91265bba: ZERO-2551: Improve pretty url and caching performance
1189
+ - bbe18b9f: ZERO-2575: Fix build error
1190
+ - d4099960: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
1191
+ - 4920742: Disable getCachedTranslations
1192
+ - 12a873e: ZERO-2846:Edit the siteKey regex in the response from GetCaptcha
1193
+ - 7e56d6b: ZERO-2841: Update api tagTypes
1194
+ - 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
1195
+ - 98bb8dcd: ZERO-2706: Cache getTranlations method
1196
+ - 46b7aad7: ZERO-2775: Add condition and logger for menuitemmodel data
1197
+ - dcc8a150: ZERO-2694: added build step to RC branch pipeline
1198
+ - 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
1199
+ - fad27689: ZERO-2739: add gpay to payment plugin map
1200
+ - dff0d595: ZERO-2659: add formData support to proxy api requests
1201
+ - fdd0b41: ZERO-2706: Add optimized translation support
1202
+ - eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
1203
+ - f2c325c: ZERO-2838: Move file input component into @akinon/next
1204
+ - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
1205
+ - beb499e6: ZERO-2551: Add new tsconfig paths
1206
+ - 146ea391: ZERO-2774: Update imports
1207
+ - f2c92d5: ZERO-2816: Update cookie name
1208
+ - 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
1209
+ - c47be30d: ZERO-2744: Update Order and OrderItem types
1210
+ - e9a46acb: ZERO-2738: add CVC input to registered cards in Masterpass
1211
+ - f046f8e0: ZERO-2575: update version for react-number-format
1212
+ - b9273fd: ZERO-2889: add host headers to requests
1213
+ - 49eeebf: ZERO-2909: Add deleteCollectionItem query to wishlistApi
1214
+ - 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
1215
+ - c670bd4: ZERO-2900: Add middleware rewrite functionality
1216
+ - 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
1217
+ - 3d35f70: ZERO-2908: Add cookie to redirect url
1218
+
1219
+ ## 1.50.0-rc.1
1220
+
1221
+ ### Minor Changes
1222
+
1223
+ - 49eeebf: ZERO-2909: Add deleteCollectionItem query to wishlistApi
1224
+
1225
+ ## 1.50.0-rc.0
1226
+
1227
+ ### Minor Changes
1228
+
1229
+ - 90282b53: ZERO-2729: Audit packages for yarn and npm and also update app-template
1230
+ - 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
1231
+ - 5dfeea0: ZERO-2801: Revert ZERO-2801
1232
+ - a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
1233
+ - fda5b927: ZERO-2725: fix invalid import
1234
+ - 2d9b2b2: ZERO-2816: Add segment to headers
1235
+ - c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
1236
+ - d93a507: ZERO-2900: Fix pretty url rewrite
1237
+ - 8d9ac9a: ZERO-2794: Add field to order type
385
1238
  - eaf97d6: ZERO-2909: Add deleteCollectionItem query to wishlistApi
1239
+ - 70279e7: ZERO-2817: Add metrics endpoint in default middleware
1240
+ - 6c25f66: ZERO-2551: Check CACHE_HOST variable
1241
+ - bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
1242
+ - 3bf2dd9: ZERO-2551: Fix search page
1243
+ - e9541a1: ZERO-2816: Add headers to url
1244
+ - 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.
1245
+ - 9d94f7e: ZERO-2820: update parent pk usage for menu generator
1246
+ - 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
1247
+ - 64699d3: ZERO-2761: Fix invalid import for plugin module
1248
+ - 0d3a913e: ZERO-2725: Update decimal scale in Price component
1249
+ - 1448a96e: ZERO-2612: add errors type in CheckoutState
1250
+ - 1ec2e9d: ZERO-2895: Update app-fetch to include cookies in headers
1251
+ - d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
1252
+ - d3474c64: ZERO-2655: Add data source shipping option
1253
+ - 75080fd6: ZERO-2630: Add max limit to postcode area
1254
+ - 17f8752: ZERO-2816: Make the incoming currency lowercase
1255
+ - c45b62c: ZERO-2818: Add upload and download support for b2b package
1256
+ - 91265bba: ZERO-2551: Improve pretty url and caching performance
1257
+ - bbe18b9f: ZERO-2575: Fix build error
1258
+ - d4099960: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
1259
+ - 4920742: Disable getCachedTranslations
1260
+ - 12a873e: ZERO-2846:Edit the siteKey regex in the response from GetCaptcha
1261
+ - 7e56d6b: ZERO-2841: Update api tagTypes
1262
+ - 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
1263
+ - 98bb8dcd: ZERO-2706: Cache getTranlations method
1264
+ - 46b7aad7: ZERO-2775: Add condition and logger for menuitemmodel data
1265
+ - dcc8a150: ZERO-2694: added build step to RC branch pipeline
1266
+ - 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
1267
+ - fad27689: ZERO-2739: add gpay to payment plugin map
1268
+ - dff0d595: ZERO-2659: add formData support to proxy api requests
1269
+ - fdd0b41: ZERO-2706: Add optimized translation support
1270
+ - eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
1271
+ - f2c325c: ZERO-2838: Move file input component into @akinon/next
1272
+ - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
1273
+ - beb499e6: ZERO-2551: Add new tsconfig paths
1274
+ - 146ea391: ZERO-2774: Update imports
1275
+ - f2c92d5: ZERO-2816: Update cookie name
1276
+ - 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
1277
+ - c47be30d: ZERO-2744: Update Order and OrderItem types
1278
+ - e9a46acb: ZERO-2738: add CVC input to registered cards in Masterpass
1279
+ - f046f8e0: ZERO-2575: update version for react-number-format
1280
+ - b9273fd: ZERO-2889: add host headers to requests
1281
+ - 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
1282
+ - c670bd4: ZERO-2900: Add middleware rewrite functionality
1283
+ - 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
386
1284
 
387
1285
  ## 1.49.0
388
1286
 
@@ -408,7 +1306,126 @@
408
1306
 
409
1307
  ### Minor Changes
410
1308
 
1309
+ - 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
1310
+ - 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
1311
+ - a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
1312
+ - fda5b92: ZERO-2725: fix invalid import
1313
+ - 2d9b2b2: ZERO-2816: Add segment to headers
1314
+ - c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
1315
+ - 8d9ac9a: ZERO-2794: Add field to order type
1316
+ - 70279e7: ZERO-2817: Add metrics endpoint in default middleware
1317
+ - 6c25f66: ZERO-2551: Check CACHE_HOST variable
1318
+ - bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
1319
+ - 3bf2dd9: ZERO-2551: Fix search page
1320
+ - e9541a1: ZERO-2816: Add headers to url
1321
+ - c53ef7b9: ZERO-2668: The Link component has been updated to improve the logic for handling href values. Previously, if the href was not a string or started with 'http', it would return the href as is. Now, if the href is not provided, it will default to '#' to prevent any potential errors. Additionally, if the href is a string and does not start with 'http', it will be formatted with the locale and pathname, based on the localeUrlStrategy and defaultLocaleValue. This ensures that the correct href is generated based on the localization settings.
1322
+ - 9d94f7e: ZERO-2820: update parent pk usage for menu generator
1323
+ - 64699d3: ZERO-2761: Fix invalid import for plugin module
1324
+ - 0d3a913: ZERO-2725: Update decimal scale in Price component
1325
+ - 1448a96e: ZERO-2612: add errors type in CheckoutState
1326
+ - d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
1327
+ - d3474c6: ZERO-2655: Add data source shipping option
1328
+ - 75080fd6: ZERO-2630: Add max limit to postcode area
1329
+ - 17f8752: ZERO-2816: Make the incoming currency lowercase
1330
+ - c45b62c: ZERO-2818: Add upload and download support for b2b package
1331
+ - 91265bba: ZERO-2551: Improve pretty url and caching performance
1332
+ - bbe18b9f: ZERO-2575: Fix build error
1333
+ - d409996: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
1334
+ - 4920742: Disable getCachedTranslations
1335
+ - 7e56d6b: ZERO-2841: Update api tagTypes
1336
+ - 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
1337
+ - 98bb8dc: ZERO-2706: Cache getTranlations method
1338
+ - 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
1339
+ - dcc8a15: ZERO-2694: added build step to RC branch pipeline
1340
+ - 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
1341
+ - fad2768: ZERO-2739: add gpay to payment plugin map
1342
+ - dff0d595: ZERO-2659: add formData support to proxy api requests
1343
+ - eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
1344
+ - f2c325c: ZERO-2838: Move file input component into @akinon/next
1345
+ - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
1346
+ - beb499e6: ZERO-2551: Add new tsconfig paths
1347
+ - 948eb42: ZERO-2852: Add out of stock endpoints
1348
+ - 146ea39: ZERO-2774: Update imports
1349
+ - f2c92d5: ZERO-2816: Update cookie name
1350
+ - 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
1351
+ - c47be30: ZERO-2744: Update Order and OrderItem types
1352
+ - e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
1353
+ - f046f8e0: ZERO-2575: update version for react-number-format
1354
+ - 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
1355
+ - 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
1356
+
1357
+ ## 1.45.0-rc.4
1358
+
1359
+ ### Minor Changes
1360
+
1361
+ - 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
1362
+
1363
+ ## 1.45.0-rc.3
1364
+
1365
+ ### Minor Changes
1366
+
1367
+ - 948eb42: ZERO-2852: Add out of stock endpoints
1368
+
1369
+ ## 1.45.0-rc.2
1370
+
1371
+ ### Minor Changes
1372
+
1373
+ - c45b62c: ZERO-2818: Add upload and download support for b2b package
1374
+ - f2c325c: ZERO-2838: Move file input component into @akinon/next
1375
+
1376
+ ## 1.45.0-rc.1
1377
+
1378
+ ### Minor Changes
1379
+
1380
+ - 7e56d6b: ZERO-2841: Update api tagTypes
1381
+
1382
+ ## 1.45.0-rc.0
1383
+
1384
+ ### Minor Changes
1385
+
1386
+ - 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
1387
+ - 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
1388
+ - a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
1389
+ - fda5b92: ZERO-2725: fix invalid import
1390
+ - 2d9b2b2: ZERO-2816: Add segment to headers
1391
+ - c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
1392
+ - 8d9ac9a: ZERO-2794: Add field to order type
1393
+ - 70279e7: ZERO-2817: Add metrics endpoint in default middleware
1394
+ - 6c25f66: ZERO-2551: Check CACHE_HOST variable
1395
+ - bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
1396
+ - 3bf2dd9: ZERO-2551: Fix search page
1397
+ - e9541a1: ZERO-2816: Add headers to url
1398
+ - 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.
1399
+ - 9d94f7e: ZERO-2820: update parent pk usage for menu generator
1400
+ - 64699d3: ZERO-2761: Fix invalid import for plugin module
1401
+ - 0d3a913: ZERO-2725: Update decimal scale in Price component
1402
+ - 1448a96: ZERO-2612: add errors type in CheckoutState
411
1403
  - 2ab6e08: ZERO-2841: Update getBasketDetail query
1404
+ - d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
1405
+ - d3474c6: ZERO-2655: Add data source shipping option
1406
+ - 75080fd: ZERO-2630: Add max limit to postcode area
1407
+ - 17f8752: ZERO-2816: Make the incoming currency lowercase
1408
+ - 91265bb: ZERO-2551: Improve pretty url and caching performance
1409
+ - bbe18b9: ZERO-2575: Fix build error
1410
+ - d409996: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
1411
+ - 4920742: Disable getCachedTranslations
1412
+ - 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
1413
+ - 98bb8dc: ZERO-2706: Cache getTranlations method
1414
+ - 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
1415
+ - dcc8a15: ZERO-2694: added build step to RC branch pipeline
1416
+ - fad2768: ZERO-2739: add gpay to payment plugin map
1417
+ - dff0d59: ZERO-2659: add formData support to proxy api requests
1418
+ - eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
1419
+ - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
1420
+ - beb499e: ZERO-2551: Add new tsconfig paths
1421
+ - 146ea39: ZERO-2774: Update imports
1422
+ - f2c92d5: ZERO-2816: Update cookie name
1423
+ - 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
1424
+ - c47be30: ZERO-2744: Update Order and OrderItem types
1425
+ - e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
1426
+ - f046f8e0: ZERO-2575: update version for react-number-format
1427
+ - 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
1428
+ - 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
412
1429
 
413
1430
  ## 1.44.0
414
1431
 
@@ -416,7 +1433,201 @@
416
1433
 
417
1434
  ### Minor Changes
418
1435
 
1436
+ - 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
1437
+ - 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
1438
+ - a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
1439
+ - fda5b92: ZERO-2725: fix invalid import
1440
+ - 2d9b2b2: ZERO-2816: Add segment to headers
1441
+ - c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
1442
+ - 8d9ac9a: ZERO-2794: Add field to order type
1443
+ - 70279e7: ZERO-2817: Add metrics endpoint in default middleware
1444
+ - 6c25f66: ZERO-2551: Check CACHE_HOST variable
1445
+ - bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
1446
+ - 3bf2dd9: ZERO-2551: Fix search page
1447
+ - e9541a1: ZERO-2816: Add headers to url
1448
+ - 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.
1449
+ - 9d94f7e: ZERO-2820: update parent pk usage for menu generator
1450
+ - 64699d3: ZERO-2761: Fix invalid import for plugin module
1451
+ - 0d3a913: ZERO-2725: Update decimal scale in Price component
1452
+ - 1448a96: ZERO-2612: add errors type in CheckoutState
1453
+ - d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
1454
+ - d3474c6: ZERO-2655: Add data source shipping option
1455
+ - 75080fd: ZERO-2630: Add max limit to postcode area
1456
+ - 17f8752: ZERO-2816: Make the incoming currency lowercase
1457
+ - 91265bb: ZERO-2551: Improve pretty url and caching performance
1458
+ - bbe18b9: ZERO-2575: Fix build error
1459
+ - d409996: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
1460
+ - 4920742: Disable getCachedTranslations
1461
+ - 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
1462
+ - 98bb8dc: ZERO-2706: Cache getTranlations method
1463
+ - 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
1464
+ - dcc8a15: ZERO-2694: added build step to RC branch pipeline
1465
+ - fad2768: ZERO-2739: add gpay to payment plugin map
1466
+ - dff0d59: ZERO-2659: add formData support to proxy api requests
1467
+ - eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
1468
+ - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
1469
+ - beb499e: ZERO-2551: Add new tsconfig paths
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.43.0-rc.15
1480
+
1481
+ ## 1.43.0-rc.14
1482
+
1483
+ ### Minor Changes
1484
+
1485
+ - 3bf2dd9: ZERO-2551: Fix search page
1486
+
1487
+ ## 1.43.0-rc.13
1488
+
1489
+ ### Minor Changes
1490
+
1491
+ - 9e25a64: ZERO-2835: Update category page layout with breadcrumb
1492
+
1493
+ ## 1.43.0-rc.12
1494
+
1495
+ ### Minor Changes
1496
+
1497
+ - 4920742: Disable getCachedTranslations
1498
+
1499
+ ## 1.43.0-rc.11
1500
+
1501
+ ### Minor Changes
1502
+
1503
+ - 6c25f66: ZERO-2551: Check CACHE_HOST variable
1504
+
1505
+ ## 1.43.0-rc.10
1506
+
1507
+ ### Minor Changes
1508
+
1509
+ - d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
1510
+
1511
+ ## 1.43.0-rc.9
1512
+
1513
+ ### Minor Changes
1514
+
1515
+ - bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
1516
+
1517
+ ## 1.43.0-rc.8
1518
+
1519
+ ### Minor Changes
1520
+
1521
+ - 70279e7: ZERO-2817: Add metrics endpoint in default middleware
1522
+ - 9d94f7e: ZERO-2820: update parent pk usage for menu generator
1523
+
1524
+ ## 1.43.0-rc.7
1525
+
1526
+ ### Minor Changes
1527
+
1528
+ - 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
1529
+
1530
+ ## 1.43.0-rc.6
1531
+
1532
+ ### Minor Changes
1533
+
1534
+ - 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
1535
+ - 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
1536
+ - a4c8d6a: ZERO-2663: Fix the image url for gif and svgs and return them without options
1537
+ - fda5b92: ZERO-2725: fix invalid import
1538
+ - 2d9b2b2: ZERO-2816: Add segment to headers
1539
+ - c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
1540
+ - 8d9ac9a: ZERO-2794: Add field to order type
1541
+ - e9541a1: ZERO-2816: Add headers to url
1542
+ - 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.
1543
+ - 64699d3: ZERO-2761: Fix invalid import for plugin module
1544
+ - 0d3a913: ZERO-2725: Update decimal scale in Price component
1545
+ - 1448a96: ZERO-2612: add errors type in CheckoutState
1546
+ - d3474c6: ZERO-2655: Add data source shipping option
1547
+ - 75080fd: ZERO-2630: Add max limit to postcode area
1548
+ - 17f8752: ZERO-2816: Make the incoming currency lowercase
1549
+ - 91265bb: ZERO-2551: Improve pretty url and caching performance
1550
+ - bbe18b9: ZERO-2575: Fix build error
1551
+ - d409996: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
1552
+ - 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
1553
+ - 98bb8dc: ZERO-2706: Cache getTranlations method
1554
+ - 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
1555
+ - dcc8a15: ZERO-2694: added build step to RC branch pipeline
1556
+ - fad2768: ZERO-2739: add gpay to payment plugin map
1557
+ - dff0d59: ZERO-2659: add formData support to proxy api requests
1558
+ - eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
419
1559
  - 4a163f2: ZERO-2761: Add condition for basket summary
1560
+ - beb499e: ZERO-2551: Add new tsconfig paths
1561
+ - 146ea39: ZERO-2774: Update imports
1562
+ - f2c92d5: ZERO-2816: Update cookie name
1563
+ - c47be30: ZERO-2744: Update Order and OrderItem types
1564
+ - e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
1565
+ - f046f8e: ZERO-2575: update version for react-number-format
1566
+ - 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
1567
+ - 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
1568
+
1569
+ ## 1.43.0-rc.5
1570
+
1571
+ ### Minor Changes
1572
+
1573
+ - 17f8752: ZERO-2816: Make the incoming currency lowercase
1574
+
1575
+ ## 1.43.0-rc.4
1576
+
1577
+ ### Minor Changes
1578
+
1579
+ - 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
1580
+
1581
+ ## 1.43.0-rc.3
1582
+
1583
+ ### Minor Changes
1584
+
1585
+ - 64699d3: ZERO-2761: Fix invalid import for plugin module
1586
+
1587
+ ## 1.43.0-rc.2
1588
+
1589
+ ### Minor Changes
1590
+
1591
+ - f2c92d5: ZERO-2816: Update cookie name
1592
+
1593
+ ## 1.43.0-rc.1
1594
+
1595
+ ### Minor Changes
1596
+
1597
+ - eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
1598
+
1599
+ ## 1.43.0-rc.0
1600
+
1601
+ ### Minor Changes
1602
+
1603
+ - 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
1604
+ - 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
1605
+ - a4c8d6a: ZERO-2663: Fix the image url for gif and svgs and return them without options
1606
+ - fda5b92: ZERO-2725: fix invalid import
1607
+ - 2d9b2b2: ZERO-2816: Add segment to headers
1608
+ - c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
1609
+ - 8d9ac9a: ZERO-2794: Add field to order type
1610
+ - e9541a1: ZERO-2816: Add headers to url
1611
+ - 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.
1612
+ - 0d3a913: ZERO-2725: Update decimal scale in Price component
1613
+ - 1448a96: ZERO-2612: add errors type in CheckoutState
1614
+ - d3474c6: ZERO-2655: Add data source shipping option
1615
+ - 75080fd: ZERO-2630: Add max limit to postcode area
1616
+ - 91265bb: ZERO-2551: Improve pretty url and caching performance
1617
+ - bbe18b9: ZERO-2575: Fix build error
1618
+ - d409996: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
1619
+ - 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
1620
+ - 98bb8dc: ZERO-2706: Cache getTranlations method
1621
+ - 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
1622
+ - dcc8a15: ZERO-2694: added build step to RC branch pipeline
1623
+ - fad2768: ZERO-2739: add gpay to payment plugin map
1624
+ - dff0d59: ZERO-2659: add formData support to proxy api requests
1625
+ - beb499e: ZERO-2551: Add new tsconfig paths
1626
+ - 146ea39: ZERO-2774: Update imports
1627
+ - c47be30: ZERO-2744: Update Order and OrderItem types
1628
+ - e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
1629
+ - f046f8e: ZERO-2575: update version for react-number-format
1630
+ - 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
420
1631
 
421
1632
  ## 1.42.0
422
1633