@akinon/next 1.97.0-snapshot-ZERO-3634-20250918135053 → 1.98.0-rc.65

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