@akinon/next 1.98.0 → 1.99.0-rc.67

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