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