@akinon/next 1.98.0 → 1.99.0-rc.66

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