@akinon/next 1.100.0 → 1.101.0-rc.73

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