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