@akinon/next 1.95.0 → 1.96.0-rc.55

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