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