@akinon/next 1.96.0-rc.57 → 1.96.0-snapshot-ZERO-35861-20250908151109

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