@akinon/next 1.94.0 → 1.95.0-snapshot-ZERO-3586-20250901132537

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