@akinon/next 1.96.0-rc.60 → 1.96.0

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