@akinon/next 1.105.0 → 1.106.0-rc.85
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.
- package/CHANGELOG.md +1308 -35
- package/__tests__/next-config.test.ts +1 -10
- package/__tests__/redirect.test.ts +319 -0
- package/api/image-proxy.ts +75 -0
- package/api/similar-product-list.ts +84 -0
- package/api/similar-products.ts +120 -0
- package/bin/pz-prebuild.js +1 -0
- package/components/accordion.tsx +20 -5
- package/components/file-input.tsx +65 -3
- package/components/input.tsx +2 -0
- package/components/link.tsx +16 -12
- package/data/client/checkout.ts +4 -2
- package/data/server/basket.ts +72 -0
- package/data/server/category.ts +44 -24
- package/data/server/flatpage.ts +16 -12
- package/data/server/landingpage.ts +16 -12
- package/data/server/list.ts +23 -13
- package/data/server/special-page.ts +16 -12
- package/data/urls.ts +5 -1
- package/hocs/server/with-segment-defaults.tsx +5 -2
- package/hooks/use-localization.ts +2 -3
- package/middlewares/complete-gpay.ts +2 -1
- package/middlewares/complete-masterpass.ts +2 -1
- package/middlewares/locale.ts +9 -1
- package/middlewares/redirection-payment.ts +2 -1
- package/middlewares/saved-card-redirection.ts +2 -1
- package/middlewares/three-d-redirection.ts +2 -1
- package/package.json +2 -2
- package/plugins.d.ts +8 -5
- package/redux/middlewares/checkout.ts +5 -1
- package/types/commerce/order.ts +1 -0
- package/types/index.ts +17 -1
- package/utils/app-fetch.ts +7 -2
- package/utils/redirect.ts +22 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,67 @@
|
|
|
1
1
|
# @akinon/next
|
|
2
2
|
|
|
3
|
+
## 1.106.0-rc.85
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 4ca44c78: ZERO-3634: add register_consumer_card
|
|
8
|
+
- 5dfeea04: ZERO-2801: Revert ZERO-2801
|
|
9
|
+
- 823d82f9: ZERO-3393: Enhance error handling in checkout middleware to ensure errors are checked for existence before processing
|
|
10
|
+
- 28c7ea79: ZERO-3427: Refactor redirect utility to handle undefined URL and improve locale handling
|
|
11
|
+
- e1aa030d: ZERO-3473: Refactor locale handling to prioritize cookie value for matched locale
|
|
12
|
+
- 2d9b2b2c9: ZERO-2816: Add segment to headers
|
|
13
|
+
- 5e1feca6: Revert "ZERO-3286: Add notFound handling for chunk URLs starting with \_next"
|
|
14
|
+
- 40a46853: ZERO-3182: Optimize basket update mutation with optimistic update
|
|
15
|
+
- 68bbcb27: ZERO-3393: Fix error handling in checkout middleware to check for errors array length
|
|
16
|
+
- d8be48fb: ZERO-3422: Update fetch method to use dynamic request method in wallet complete redirection middleware
|
|
17
|
+
- b55acb76: ZERO-2577: Fix pagination bug and update usePagination hook and ensure pagination controls rendering correctly
|
|
18
|
+
- f49bb74f: ZERO-3097: Add setCookie to logging in payment redirection middlewares
|
|
19
|
+
- 0ad91bbd: ZERO-3489: Improve error handling in data fetching across multiple pages and server functions
|
|
20
|
+
- 143be2b9: ZERO-3457: Crop styles are customizable and logic improved for rendering similar products modal
|
|
21
|
+
- e9541a13d: ZERO-2816: Add headers to url
|
|
22
|
+
- 9b7d0de6: ZERO-3393: Improve error handling in checkout middleware to support both object and array error formats
|
|
23
|
+
- 72fd4d67: ZERO-3084: Fix URL search parameters encoding in default middleware
|
|
24
|
+
- 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.
|
|
25
|
+
- a8539c8c: ZERO-3439: Enhance locale handling in middleware and redirect utility
|
|
26
|
+
- 16aff543: ZERO-3431: Add test script for redirect utility in package.json
|
|
27
|
+
- 64699d3ff: ZERO-2761: Fix invalid import for plugin module
|
|
28
|
+
- 9f8cd3bc: ZERO-3449: AI Search Active Filters & Crop Style changes have been implemented
|
|
29
|
+
- e974d8e8: ZERO-3406: Fix rc build
|
|
30
|
+
- 89ce46fc: ZERO-3493: return 404 status code for pz-not-found pages
|
|
31
|
+
- 8645d90b: ZERO-3574:Refactor redirect tests: streamline mock setup, enhance locale handling, and improve URL path resolution logic
|
|
32
|
+
- 7eb51ca9: ZERO-3424 :Update package versions
|
|
33
|
+
- 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
|
|
34
|
+
- 8b1d24eb: ZERO-3422: Update fetch method to use dynamic request method in wallet complete redirection middleware
|
|
35
|
+
- d552629f: ZERO-3182: Refactor basketApi to use invalidatesTags and comment out onQueryStarted logic
|
|
36
|
+
- 17f87524e: ZERO-2816: Make the incoming currency lowercase
|
|
37
|
+
- 65d3b862: ZERO-3054: Update headers in appFetch
|
|
38
|
+
- bbe18b9ff: ZERO-2575: Fix build error
|
|
39
|
+
- 4920742c2: Disable getCachedTranslations
|
|
40
|
+
- b6e5b624: ZERO-3257: Enhance locale middleware to redirect using existing or default locale and support 303 status for POST requests
|
|
41
|
+
- 7e56d6b6b: ZERO-2841: Update api tagTypes
|
|
42
|
+
- d99a6a7d: ZERO-3457: Fixed the settings prop and made sure everything is customizable.
|
|
43
|
+
- 9dc7298a: ZERO-3416: Refactor Accordion component to enhance props and improve styling flexibility
|
|
44
|
+
- 33377cfd: ZERO-3267: Refactor import statement for ROUTES in error-page component
|
|
45
|
+
- 43c182ee: ZERO-3054: Update Redis variable checks to conditionally include CACHE_SECRET
|
|
46
|
+
- c480272c: ZERO-3531: Refactor checkoutApi: Remove unnecessary invalidatesTags property from POST request from sample products
|
|
47
|
+
- facf1ada: ZERO-3445: Add SameSite and Secure attributes
|
|
48
|
+
- eeb20bea: Revert "ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing"
|
|
49
|
+
- 5b500797: ZERO-3634: iyzico saved card
|
|
50
|
+
- 3bf63c8a: ZERO-3286: Add notFound handling for chunk URLs starting with \_next
|
|
51
|
+
- 9be2c081: ZERO-3243: Improve basket update query handling with optimistic updates
|
|
52
|
+
- f7fd459b: ZERO-3445: Refactor setCookie function to include domain handling and improve cookie string construction
|
|
53
|
+
- 4de5303c: ZERO-2504: add cookie filter to api client request
|
|
54
|
+
- dc678c31: ZERO-3523: Enhance redirect tests with dynamic locale handling and settings integration
|
|
55
|
+
- f2c92d5c7: ZERO-2816: Update cookie name
|
|
56
|
+
- 7bd3d9928: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
57
|
+
- acd2afdf: ZERO-3431: Fix import statement for findBaseDir in next-config test
|
|
58
|
+
- 2d3f1788: ZERO-3417: Enhance FileInput component with additional props for customization
|
|
59
|
+
- fdd255ee: ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing
|
|
60
|
+
- 49eeebfa: ZERO-2909: Add deleteCollectionItem query to wishlistApi
|
|
61
|
+
- 3f9b8d7e7: ZERO-2761: Update plugins.js for akinon-next
|
|
62
|
+
- 33d4d0c: ZERO-3615: remove custom not found
|
|
63
|
+
- 0e823010: ZERO-3531: Add saveSampleProducts endpoint
|
|
64
|
+
|
|
3
65
|
## 1.105.0
|
|
4
66
|
|
|
5
67
|
### Minor Changes
|
|
@@ -68,7 +130,76 @@
|
|
|
68
130
|
### Minor Changes
|
|
69
131
|
|
|
70
132
|
- af5c93a: ZERO-3617: Add pre-order middleware instruction file
|
|
71
|
-
|
|
133
|
+
|
|
134
|
+
## 1.96.0-rc.57
|
|
135
|
+
|
|
136
|
+
## 1.96.0-rc.56
|
|
137
|
+
|
|
138
|
+
## 1.96.0-rc.55
|
|
139
|
+
|
|
140
|
+
### Minor Changes
|
|
141
|
+
|
|
142
|
+
- 5dfeea04a: ZERO-2801: Revert ZERO-2801
|
|
143
|
+
- 823d82f9: ZERO-3393: Enhance error handling in checkout middleware to ensure errors are checked for existence before processing
|
|
144
|
+
- 28c7ea79: ZERO-3427: Refactor redirect utility to handle undefined URL and improve locale handling
|
|
145
|
+
- e1aa030d: ZERO-3473: Refactor locale handling to prioritize cookie value for matched locale
|
|
146
|
+
- 63774a6a: ZERO-3351: Add commerce redirection ignore list functionality and related utility
|
|
147
|
+
- 2d9b2b2c9: ZERO-2816: Add segment to headers
|
|
148
|
+
- 5e1feca6: Revert "ZERO-3286: Add notFound handling for chunk URLs starting with \_next"
|
|
149
|
+
- 40a46853: ZERO-3182: Optimize basket update mutation with optimistic update
|
|
150
|
+
- 5f7edd6: ZERO-3571: Enhance Jest configuration by adding base directory resolution and module name mapping
|
|
151
|
+
- 68bbcb27: ZERO-3393: Fix error handling in checkout middleware to check for errors array length
|
|
152
|
+
- d8be48fb: ZERO-3422: Update fetch method to use dynamic request method in wallet complete redirection middleware
|
|
153
|
+
- b55acb76: ZERO-2577: Fix pagination bug and update usePagination hook and ensure pagination controls rendering correctly
|
|
154
|
+
- f49bb74f: ZERO-3097: Add setCookie to logging in payment redirection middlewares
|
|
155
|
+
- 0ad91bb: ZERO-3489: Improve error handling in data fetching across multiple pages and server functions
|
|
156
|
+
- 143be2b9: ZERO-3457: Crop styles are customizable and logic improved for rendering similar products modal
|
|
157
|
+
- e9541a13d: ZERO-2816: Add headers to url
|
|
158
|
+
- 9b7d0de6: ZERO-3393: Improve error handling in checkout middleware to support both object and array error formats
|
|
159
|
+
- 72fd4d67: ZERO-3084: Fix URL search parameters encoding in default middleware
|
|
160
|
+
- 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.
|
|
161
|
+
- a8539c8c: ZERO-3439: Enhance locale handling in middleware and redirect utility
|
|
162
|
+
- 16aff543: ZERO-3431: Add test script for redirect utility in package.json
|
|
163
|
+
- 64699d3ff: ZERO-2761: Fix invalid import for plugin module
|
|
164
|
+
- 9f8cd3bc: ZERO-3449: AI Search Active Filters & Crop Style changes have been implemented
|
|
165
|
+
- e974d8e8: ZERO-3406: Fix rc build
|
|
166
|
+
- 89ce46fc: ZERO-3493: return 404 status code for pz-not-found pages
|
|
167
|
+
- 8645d90: ZERO-3574:Refactor redirect tests: streamline mock setup, enhance locale handling, and improve URL path resolution logic
|
|
168
|
+
- 7eb51ca9: ZERO-3424 :Update package versions
|
|
169
|
+
- 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
|
|
170
|
+
- 8b1d24eb: ZERO-3422: Update fetch method to use dynamic request method in wallet complete redirection middleware
|
|
171
|
+
- d552629f: ZERO-3182: Refactor basketApi to use invalidatesTags and comment out onQueryStarted logic
|
|
172
|
+
- 17f87524e: ZERO-2816: Make the incoming currency lowercase
|
|
173
|
+
- 65d3b862: ZERO-3054: Update headers in appFetch
|
|
174
|
+
- c39c7000: ZERO-3420: Refactor Modal component
|
|
175
|
+
- bbe18b9ff: ZERO-2575: Fix build error
|
|
176
|
+
- 4920742c2: Disable getCachedTranslations
|
|
177
|
+
- b6e5b624: ZERO-3257: Enhance locale middleware to redirect using existing or default locale and support 303 status for POST requests
|
|
178
|
+
- 0de55738: ZERO-3418: Update remotePatterns hostname to allow all subdomains
|
|
179
|
+
- 7e56d6b6b: ZERO-2841: Update api tagTypes
|
|
180
|
+
- d99a6a7d: ZERO-3457: Fixed the settings prop and made sure everything is customizable.
|
|
181
|
+
- 9dc7298a: ZERO-3416: Refactor Accordion component to enhance props and improve styling flexibility
|
|
182
|
+
- 33377cfd: ZERO-3267: Refactor import statement for ROUTES in error-page component
|
|
183
|
+
- 43c182ee: ZERO-3054: Update Redis variable checks to conditionally include CACHE_SECRET
|
|
184
|
+
- c480272: ZERO-3531: Refactor checkoutApi: Remove unnecessary invalidatesTags property from POST request from sample products
|
|
185
|
+
- b00a90b1: ZERO-3436: Preserve query params on redirect
|
|
186
|
+
- facf1ada: ZERO-3445: Add SameSite and Secure attributes
|
|
187
|
+
- 26b2d0b: ZERO-3571: Remove test script execution from prebuild and simplify Jest module name mapping
|
|
188
|
+
- eeb20bea: Revert "ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing"
|
|
189
|
+
- 3bf63c8a: ZERO-3286: Add notFound handling for chunk URLs starting with \_next
|
|
190
|
+
- 9be2c081: ZERO-3243: Improve basket update query handling with optimistic updates
|
|
191
|
+
- f7fd459b: ZERO-3445: Refactor setCookie function to include domain handling and improve cookie string construction
|
|
192
|
+
- 4de5303c: ZERO-2504: add cookie filter to api client request
|
|
193
|
+
- dc678c3: ZERO-3523: Enhance redirect tests with dynamic locale handling and settings integration
|
|
194
|
+
- f2c92d5c7: ZERO-2816: Update cookie name
|
|
195
|
+
- a420947d: ZERO-3517: Fix optional chaining for rawData in error logging for category data handlers
|
|
196
|
+
- 7bd3d9928: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
197
|
+
- acd2afdf: ZERO-3431: Fix import statement for findBaseDir in next-config test
|
|
198
|
+
- 2d3f1788: ZERO-3417: Enhance FileInput component with additional props for customization
|
|
199
|
+
- fdd255ee: ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing
|
|
200
|
+
- 49eeebfa: ZERO-2909: Add deleteCollectionItem query to wishlistApi
|
|
201
|
+
- 3f9b8d7e7: ZERO-2761: Update plugins.js for akinon-next
|
|
202
|
+
- 0e82301: ZERO-3531: Add saveSampleProducts endpoint
|
|
72
203
|
|
|
73
204
|
## 1.95.0
|
|
74
205
|
|
|
@@ -100,32 +231,149 @@
|
|
|
100
231
|
### Minor Changes
|
|
101
232
|
|
|
102
233
|
- 185396f: ZERO-3569: Refactor logging in cache handler to use console_log instead of logger
|
|
103
|
-
|
|
234
|
+
|
|
235
|
+
## 1.93.0-rc.47
|
|
236
|
+
|
|
237
|
+
### Minor Changes
|
|
238
|
+
|
|
104
239
|
- 3e4aadc: ZERO-3569: Fix import statement for logger in cache handler
|
|
105
240
|
|
|
241
|
+
## 1.93.0-rc.46
|
|
242
|
+
|
|
243
|
+
### Minor Changes
|
|
244
|
+
|
|
245
|
+
- 5dfeea04: ZERO-2801: Revert ZERO-2801
|
|
246
|
+
- 823d82f9: ZERO-3393: Enhance error handling in checkout middleware to ensure errors are checked for existence before processing
|
|
247
|
+
- 28c7ea79: ZERO-3427: Refactor redirect utility to handle undefined URL and improve locale handling
|
|
248
|
+
- e1aa030d: ZERO-3473: Refactor locale handling to prioritize cookie value for matched locale
|
|
249
|
+
- 6e6b0a9e: ZERO-3422: Add pz-flow-payment package
|
|
250
|
+
- 63774a6a: ZERO-3351: Add commerce redirection ignore list functionality and related utility
|
|
251
|
+
- 2d9b2b2c9: ZERO-2816: Add segment to headers
|
|
252
|
+
- 5e1feca6: Revert "ZERO-3286: Add notFound handling for chunk URLs starting with \_next"
|
|
253
|
+
- 40a46853: ZERO-3182: Optimize basket update mutation with optimistic update
|
|
254
|
+
- 5f7edd6c: ZERO-3571: Enhance Jest configuration by adding base directory resolution and module name mapping
|
|
255
|
+
- 68bbcb27: ZERO-3393: Fix error handling in checkout middleware to check for errors array length
|
|
256
|
+
- d8be48fb: ZERO-3422: Update fetch method to use dynamic request method in wallet complete redirection middleware
|
|
257
|
+
- b55acb76: ZERO-2577: Fix pagination bug and update usePagination hook and ensure pagination controls rendering correctly
|
|
258
|
+
- f49bb74f: ZERO-3097: Add setCookie to logging in payment redirection middlewares
|
|
259
|
+
- 0ad91bbd: ZERO-3489: Improve error handling in data fetching across multiple pages and server functions
|
|
260
|
+
- 143be2b9: ZERO-3457: Crop styles are customizable and logic improved for rendering similar products modal
|
|
261
|
+
- e9541a13d: ZERO-2816: Add headers to url
|
|
262
|
+
- 9b7d0de6: ZERO-3393: Improve error handling in checkout middleware to support both object and array error formats
|
|
263
|
+
- 72fd4d67: ZERO-3084: Fix URL search parameters encoding in default middleware
|
|
264
|
+
- 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.
|
|
265
|
+
- a8539c8c: ZERO-3439: Enhance locale handling in middleware and redirect utility
|
|
266
|
+
- 16aff543: ZERO-3431: Add test script for redirect utility in package.json
|
|
267
|
+
- 64699d3ff: ZERO-2761: Fix invalid import for plugin module
|
|
268
|
+
- 9f8cd3bc: ZERO-3449: AI Search Active Filters & Crop Style changes have been implemented
|
|
269
|
+
- e974d8e8: ZERO-3406: Fix rc build
|
|
270
|
+
- 89ce46fc: ZERO-3493: return 404 status code for pz-not-found pages
|
|
271
|
+
- 7eb51ca9: ZERO-3424 :Update package versions
|
|
272
|
+
- c806fad7: ZERO-3422: Add Flow Payment plugin to the defined plugins list
|
|
273
|
+
- 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
|
|
274
|
+
- 8b1d24eb: ZERO-3422: Update fetch method to use dynamic request method in wallet complete redirection middleware
|
|
275
|
+
- d552629f: ZERO-3182: Refactor basketApi to use invalidatesTags and comment out onQueryStarted logic
|
|
276
|
+
- 17f87524e: ZERO-2816: Make the incoming currency lowercase
|
|
277
|
+
- 65d3b862: ZERO-3054: Update headers in appFetch
|
|
278
|
+
- 0abde6bb: ZERO-3422: Update fetch method to use dynamic request method in wallet complete redirection middleware
|
|
279
|
+
- 72ad7bb1: ZERO-3422: Add Flow Payment to the list of available plugins
|
|
280
|
+
- c39c7000: ZERO-3420: Refactor Modal component
|
|
281
|
+
- e7cd3a5e: ZERO-3435: Add Accept-Language to requestHeaders
|
|
282
|
+
- bbe18b9ff: ZERO-2575: Fix build error
|
|
283
|
+
- 17bfadc4: ZERO-3275: Disable OpenTelemetry monitoring in production environment
|
|
284
|
+
- 35dfb8f8: ZERO-3363: Refactor URL handling in checkout and redirection middlewares to use url.origin instead of process.env.NEXT_PUBLIC_URL
|
|
285
|
+
- 4920742c2: Disable getCachedTranslations
|
|
286
|
+
- b6e5b624: ZERO-3257: Enhance locale middleware to redirect using existing or default locale and support 303 status for POST requests
|
|
287
|
+
- 0de55738: ZERO-3418: Update remotePatterns hostname to allow all subdomains
|
|
288
|
+
- 7e56d6b6b: ZERO-2841: Update api tagTypes
|
|
289
|
+
- dfaceffd: ZERO-3356: Add useLoyaltyAvailability hook and update checkout state management
|
|
290
|
+
- 86642cfa: ZERO-3531: Add saveSampleProducts endpoint and update URLs in checkout
|
|
291
|
+
- d99a6a7d: ZERO-3457: Fixed the settings prop and made sure everything is customizable.
|
|
292
|
+
- 9dc7298a: ZERO-3416: Refactor Accordion component to enhance props and improve styling flexibility
|
|
293
|
+
- 33377cfd: ZERO-3267: Refactor import statement for ROUTES in error-page component
|
|
294
|
+
- 0bdab120: ZERO-3569: Refactor cache handler to improve Redis connection management and logging
|
|
295
|
+
- 43c182ee: ZERO-3054: Update Redis variable checks to conditionally include CACHE_SECRET
|
|
296
|
+
- c480272c: ZERO-3531: Refactor checkoutApi: Remove unnecessary invalidatesTags property from POST request from sample products
|
|
297
|
+
- b00a90b1: ZERO-3436: Preserve query params on redirect
|
|
298
|
+
- facf1ada: ZERO-3445: Add SameSite and Secure attributes
|
|
299
|
+
- 485e8ef8: ZERO-3422: Refactor parameter handling in wallet complete redirection middleware to use forEach
|
|
300
|
+
- 26b2d0b7: ZERO-3571: Remove test script execution from prebuild and simplify Jest module name mapping
|
|
301
|
+
- eeb20bea: Revert "ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing"
|
|
302
|
+
- 99b6e7b9: ZERO-3421: Enhance Sentry error handling by adding network error detection logic and refining initialization options
|
|
303
|
+
- 3bf63c8a: ZERO-3286: Add notFound handling for chunk URLs starting with \_next
|
|
304
|
+
- 9be2c081: ZERO-3243: Improve basket update query handling with optimistic updates
|
|
305
|
+
- f7fd459b: ZERO-3445: Refactor setCookie function to include domain handling and improve cookie string construction
|
|
306
|
+
- 4de5303c: ZERO-2504: add cookie filter to api client request
|
|
307
|
+
- dc678c31: ZERO-3523: Enhance redirect tests with dynamic locale handling and settings integration
|
|
308
|
+
- f2c92d5c7: ZERO-2816: Update cookie name
|
|
309
|
+
- a420947d: ZERO-3517: Fix optional chaining for rawData in error logging for category data handlers
|
|
310
|
+
- 7bd3d9928: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
311
|
+
- acd2afdf: ZERO-3431: Fix import statement for findBaseDir in next-config test
|
|
312
|
+
- 2d3f1788: ZERO-3417: Enhance FileInput component with additional props for customization
|
|
313
|
+
- fdd255ee: ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing
|
|
314
|
+
- b434ac89: ZERO-3545: Update fetchCheckout API URL to include page parameter
|
|
315
|
+
- 49eeebfa: ZERO-2909: Add deleteCollectionItem query to wishlistApi
|
|
316
|
+
- 3f9b8d7e7: ZERO-2761: Update plugins.js for akinon-next
|
|
317
|
+
- fee608dd: ZERO-3422: Refactor body handling in wallet complete redirection middleware
|
|
318
|
+
- cbdb5c14: ZERO-3448: fix set cookie domain handling for subdomain locale strategy
|
|
319
|
+
- 0e823010: ZERO-3531: Add saveSampleProducts endpoint
|
|
320
|
+
|
|
106
321
|
## 1.92.0
|
|
107
322
|
|
|
108
323
|
## 1.91.0
|
|
109
324
|
|
|
110
325
|
### Minor Changes
|
|
111
326
|
|
|
112
|
-
- d8fad39: ZERO-3370: include plugins test to build stage
|
|
113
327
|
- 2552486: ZERO-3391: Add subdomain support to setLocale function
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
-
|
|
328
|
+
|
|
329
|
+
## 1.91.0-rc.1
|
|
330
|
+
|
|
331
|
+
## 1.91.0-rc.0
|
|
332
|
+
|
|
333
|
+
### Minor Changes
|
|
334
|
+
|
|
335
|
+
- 5dfeea04: ZERO-2801: Revert ZERO-2801
|
|
336
|
+
- 823d82f: ZERO-3393: Enhance error handling in checkout middleware to ensure errors are checked for existence before processing
|
|
337
|
+
- 63774a6a: ZERO-3351: Add commerce redirection ignore list functionality and related utility
|
|
338
|
+
- 2d9b2b2c: ZERO-2816: Add segment to headers
|
|
339
|
+
- 5e1feca6: Revert "ZERO-3286: Add notFound handling for chunk URLs starting with \_next"
|
|
340
|
+
- d8fad39: ZERO-3370: include plugins test to build stage
|
|
341
|
+
- 40a46853: ZERO-3182: Optimize basket update mutation with optimistic update
|
|
342
|
+
- 68bbcb2: ZERO-3393: Fix error handling in checkout middleware to check for errors array length
|
|
343
|
+
- f49bb74f: ZERO-3097: Add setCookie to logging in payment redirection middlewares
|
|
344
|
+
- e9541a13: ZERO-2816: Add headers to url
|
|
345
|
+
- 9b7d0de: ZERO-3393: Improve error handling in checkout middleware to support both object and array error formats
|
|
346
|
+
- 72fd4d67: ZERO-3084: Fix URL search parameters encoding in default middleware
|
|
347
|
+
- c53ef7b9: ZERO-2668: The Link component has been updated to improve the logic for handling href values. Previously, if the href was not a string or started with 'http', it would return the href as is. Now, if the href is not provided, it will default to '#' to prevent any potential errors. Additionally, if the href is a string and does not start with 'http', it will be formatted with the locale and pathname, based on the localeUrlStrategy and defaultLocaleValue. This ensures that the correct href is generated based on the localization settings.
|
|
348
|
+
- 64699d3f: ZERO-2761: Fix invalid import for plugin module
|
|
349
|
+
- e974d8e: ZERO-3406: Fix rc build
|
|
350
|
+
- bf354de4: ZERO-3321: add babel compiler for akinon/next test
|
|
351
|
+
- 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
|
|
352
|
+
- d552629f: ZERO-3182: Refactor basketApi to use invalidatesTags and comment out onQueryStarted logic
|
|
353
|
+
- 448adefb: ZERO-3321: move csp test to akinon-next
|
|
354
|
+
- 17f87524: ZERO-2816: Make the incoming currency lowercase
|
|
355
|
+
- 65d3b862: ZERO-3054: Update headers in appFetch
|
|
356
|
+
- bbe18b9f: ZERO-2575: Fix build error
|
|
357
|
+
- 17bfadc4: ZERO-3275: Disable OpenTelemetry monitoring in production environment
|
|
358
|
+
- 4920742c: Disable getCachedTranslations
|
|
359
|
+
- b6e5b624: ZERO-3257: Enhance locale middleware to redirect using existing or default locale and support 303 status for POST requests
|
|
360
|
+
- 6c3629c2: ZERO-3321: fix jest tests in akinon-next for standalone projects
|
|
361
|
+
- 7e56d6b6: ZERO-2841: Update api tagTypes
|
|
362
|
+
- dfaceff: ZERO-3356: Add useLoyaltyAvailability hook and update checkout state management
|
|
363
|
+
- 33377cfd: ZERO-3267: Refactor import statement for ROUTES in error-page component
|
|
364
|
+
- 43c182ee: ZERO-3054: Update Redis variable checks to conditionally include CACHE_SECRET
|
|
122
365
|
- 943a239: ZERO-3370: add allowJs in akinon-next test tsconfig
|
|
123
|
-
-
|
|
124
|
-
-
|
|
125
|
-
-
|
|
126
|
-
-
|
|
127
|
-
-
|
|
128
|
-
-
|
|
366
|
+
- eeb20bea: Revert "ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing"
|
|
367
|
+
- 3bf63c8a: ZERO-3286: Add notFound handling for chunk URLs starting with \_next
|
|
368
|
+
- 9be2c081: ZERO-3243: Improve basket update query handling with optimistic updates
|
|
369
|
+
- f2c92d5c: ZERO-2816: Update cookie name
|
|
370
|
+
- 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
371
|
+
- fdd255ee: ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing
|
|
372
|
+
- acf03209: ZERO-3321: remove babel config
|
|
373
|
+
- 387356b6: ZERO-3323: Refactor locale filtering logic in URL matcher regex
|
|
374
|
+
- 49eeebfa: ZERO-2909: Add deleteCollectionItem query to wishlistApi
|
|
375
|
+
- 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
|
|
376
|
+
- b2ee69b9: ZERO-3321: delete unnecessary files
|
|
129
377
|
- 0cabbda: ZERO-3370: replace inline monorepo check with reusable utility
|
|
130
378
|
|
|
131
379
|
## 1.90.0
|
|
@@ -186,13 +434,217 @@
|
|
|
186
434
|
|
|
187
435
|
### Minor Changes
|
|
188
436
|
|
|
189
|
-
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
-
|
|
437
|
+
- ef75c03: ZERO-3267: Update error-page component to use ROUTES for link navigation
|
|
438
|
+
|
|
439
|
+
## 1.82.0-rc.20
|
|
440
|
+
|
|
441
|
+
### Minor Changes
|
|
442
|
+
|
|
443
|
+
- e5529cd: ZERO-3267: Update error-page component to use root path for links instead of ROUTES
|
|
444
|
+
|
|
445
|
+
## 1.82.0-rc.19
|
|
446
|
+
|
|
447
|
+
### Minor Changes
|
|
448
|
+
|
|
449
|
+
- 33377cf: ZERO-3267: Refactor import statement for ROUTES in error-page component
|
|
450
|
+
|
|
451
|
+
## 1.82.0-rc.18
|
|
452
|
+
|
|
453
|
+
### Minor Changes
|
|
454
|
+
|
|
455
|
+
- e4761d2: Refactor import statement for ROUTES in error-page component
|
|
456
|
+
|
|
457
|
+
## 1.82.0-rc.17
|
|
458
|
+
|
|
459
|
+
### Minor Changes
|
|
460
|
+
|
|
461
|
+
- e2c6d426: ZERO-2935: Add @sentry/nextjs dependency to akinon-next and remove from projectzeronext
|
|
462
|
+
- 70bc0aed: ZERO-3284: Set tracesSampleRate in Sentry configuration
|
|
463
|
+
|
|
464
|
+
## 1.82.0-rc.16
|
|
465
|
+
|
|
466
|
+
### Minor Changes
|
|
467
|
+
|
|
468
|
+
- 757ee539: ZERO-3207: Add SMS send & verify endpoints with state management
|
|
469
|
+
- 6f506af: ZERO-3229: Implement mini basket query for basket total quantity
|
|
470
|
+
- 5dfeea04: ZERO-2801: Revert ZERO-2801
|
|
471
|
+
- 2d9b2b2c: ZERO-2816: Add segment to headers
|
|
472
|
+
- 5e1feca: Revert "ZERO-3286: Add notFound handling for chunk URLs starting with \_next"
|
|
473
|
+
- c0c1962: ZERO-3258: Add new API endpoints for fetching Bukalemun image URL and bundle product data
|
|
474
|
+
- 40a46853: ZERO-3182: Optimize basket update mutation with optimistic update
|
|
475
|
+
- f49bb74f: ZERO-3097: Add setCookie to logging in payment redirection middlewares
|
|
476
|
+
- 0e05135: ZERO-3244: Encode URL search parameters
|
|
477
|
+
- e9541a13: ZERO-2816: Add headers to url
|
|
478
|
+
- 4d3deb4f: ZERO-2935: sentry 8 upgrade
|
|
479
|
+
- 72fd4d67: ZERO-3084: Fix URL search parameters encoding in default middleware
|
|
480
|
+
- 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.
|
|
481
|
+
- 64699d3f: ZERO-2761: Fix invalid import for plugin module
|
|
482
|
+
- 9abd011: ZERO-3267: Refactor error handling in ErrorPage component to set error details in Sentry scope
|
|
483
|
+
- 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
|
|
484
|
+
- d552629: ZERO-3182: Refactor basketApi to use invalidatesTags and comment out onQueryStarted logic
|
|
485
|
+
- c3b2f3f: ZERO-3267: Enable sentry client errors and filter them by log type
|
|
486
|
+
- 17f87524: ZERO-2816: Make the incoming currency lowercase
|
|
487
|
+
- 65d3b862: ZERO-3054: Update headers in appFetch
|
|
488
|
+
- bbe18b9f: ZERO-2575: Fix build error
|
|
489
|
+
- 17bfadc: ZERO-3275: Disable OpenTelemetry monitoring in production environment
|
|
490
|
+
- 4920742c: Disable getCachedTranslations
|
|
491
|
+
- b6e5b62: ZERO-3257: Enhance locale middleware to redirect using existing or default locale and support 303 status for POST requests
|
|
492
|
+
- ac65ca9: ZERO-3269: Enhance locale handling by adding Subdomain strategy and updating related functions
|
|
493
|
+
- 7e56d6b6: ZERO-2841: Update api tagTypes
|
|
494
|
+
- 43c182ee: ZERO-3054: Update Redis variable checks to conditionally include CACHE_SECRET
|
|
495
|
+
- 2d305aaf: ZERO-2935: Update Sentry configuration: remove hideSourceMaps option and add it to withPzConfig
|
|
496
|
+
- eeb20bea: Revert "ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing"
|
|
497
|
+
- 3bf63c8: ZERO-3286: Add notFound handling for chunk URLs starting with \_next
|
|
498
|
+
- 9be2c08: ZERO-3243: Improve basket update query handling with optimistic updates
|
|
499
|
+
- f2c92d5c: ZERO-2816: Update cookie name
|
|
500
|
+
- 2f3588f: ZERO-3287: Add user session handling in authentication flow
|
|
501
|
+
- 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
502
|
+
- fdd255ee: ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing
|
|
503
|
+
- 0b1bd07: ZERO-3240: Remove unused preOrderMiddleware
|
|
504
|
+
- 49eeebfa: ZERO-2909: Add deleteCollectionItem query to wishlistApi
|
|
505
|
+
- 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
|
|
506
|
+
|
|
507
|
+
## 1.82.0-rc.15
|
|
508
|
+
|
|
509
|
+
### Minor Changes
|
|
510
|
+
|
|
511
|
+
- 2f3588fb: ZERO-3287: Add user session handling in authentication flow
|
|
512
|
+
|
|
513
|
+
## 1.82.0-rc.14
|
|
514
|
+
|
|
515
|
+
### Minor Changes
|
|
516
|
+
|
|
517
|
+
- 5e1feca: Revert "ZERO-3286: Add notFound handling for chunk URLs starting with \_next"
|
|
518
|
+
|
|
519
|
+
## 1.82.0-rc.13
|
|
520
|
+
|
|
521
|
+
### Minor Changes
|
|
522
|
+
|
|
523
|
+
- 3bf63c8: ZERO-3286: Add notFound handling for chunk URLs starting with \_next
|
|
524
|
+
|
|
525
|
+
## 1.82.0-rc.12
|
|
526
|
+
|
|
527
|
+
### Minor Changes
|
|
528
|
+
|
|
529
|
+
- ac65ca9: ZERO-3269: Enhance locale handling by adding Subdomain strategy and updating related functions
|
|
530
|
+
|
|
531
|
+
## 1.82.0-rc.11
|
|
532
|
+
|
|
533
|
+
## 1.82.0-rc.10
|
|
534
|
+
|
|
535
|
+
## 1.82.0-rc.9
|
|
536
|
+
|
|
537
|
+
### Minor Changes
|
|
538
|
+
|
|
539
|
+
- 9abd011: ZERO-3267: Refactor error handling in ErrorPage component to set error details in Sentry scope
|
|
540
|
+
|
|
541
|
+
## 1.82.0-rc.8
|
|
542
|
+
|
|
543
|
+
### Minor Changes
|
|
544
|
+
|
|
545
|
+
- 17bfadc: ZERO-3275: Disable OpenTelemetry monitoring in production environment
|
|
546
|
+
|
|
547
|
+
## 1.82.0-rc.7
|
|
548
|
+
|
|
549
|
+
### Minor Changes
|
|
550
|
+
|
|
551
|
+
- c3b2f3f: ZERO-3267: Enable sentry client errors and filter them by log type
|
|
552
|
+
|
|
553
|
+
## 1.82.0-rc.6
|
|
554
|
+
|
|
555
|
+
### Minor Changes
|
|
556
|
+
|
|
557
|
+
- 0b1bd07f: ZERO-3240: Remove unused preOrderMiddleware
|
|
558
|
+
|
|
559
|
+
## 1.82.0-rc.5
|
|
560
|
+
|
|
561
|
+
### Minor Changes
|
|
562
|
+
|
|
563
|
+
- 6f506afc: ZERO-3229: Implement mini basket query for basket total quantity
|
|
564
|
+
- c0c19629: ZERO-3258: Add new API endpoints for fetching Bukalemun image URL and bundle product data
|
|
565
|
+
- 9be2c081: ZERO-3243: Improve basket update query handling with optimistic updates
|
|
566
|
+
|
|
567
|
+
## 1.82.0-rc.4
|
|
568
|
+
|
|
569
|
+
### Minor Changes
|
|
570
|
+
|
|
571
|
+
- b6e5b624: ZERO-3257: Enhance locale middleware to redirect using existing or default locale and support 303 status for POST requests
|
|
572
|
+
|
|
573
|
+
## 1.82.0-rc.3
|
|
574
|
+
|
|
575
|
+
## 1.82.0-rc.2
|
|
576
|
+
|
|
577
|
+
### Minor Changes
|
|
578
|
+
|
|
579
|
+
- 757ee539: ZERO-3207: Add SMS send & verify endpoints with state management
|
|
580
|
+
- 5dfeea04: ZERO-2801: Revert ZERO-2801
|
|
581
|
+
- 2d9b2b2c: ZERO-2816: Add segment to headers
|
|
582
|
+
- 40a46853: ZERO-3182: Optimize basket update mutation with optimistic update
|
|
583
|
+
- f49bb74f: ZERO-3097: Add setCookie to logging in payment redirection middlewares
|
|
584
|
+
- 0e051352: ZERO-3244: Encode URL search parameters
|
|
585
|
+
- e9541a13: ZERO-2816: Add headers to url
|
|
586
|
+
- 4d3deb4f: ZERO-2935: sentry 8 upgrade
|
|
587
|
+
- 72fd4d67: ZERO-3084: Fix URL search parameters encoding in default middleware
|
|
588
|
+
- c53ef7b9: ZERO-2668: The Link component has been updated to improve the logic for handling href values. Previously, if the href was not a string or started with 'http', it would return the href as is. Now, if the href is not provided, it will default to '#' to prevent any potential errors. Additionally, if the href is a string and does not start with 'http', it will be formatted with the locale and pathname, based on the localeUrlStrategy and defaultLocaleValue. This ensures that the correct href is generated based on the localization settings.
|
|
589
|
+
- 64699d3f: ZERO-2761: Fix invalid import for plugin module
|
|
590
|
+
- 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
|
|
591
|
+
- d552629f: ZERO-3182: Refactor basketApi to use invalidatesTags and comment out onQueryStarted logic
|
|
592
|
+
- 17f87524: ZERO-2816: Make the incoming currency lowercase
|
|
593
|
+
- 65d3b862: ZERO-3054: Update headers in appFetch
|
|
594
|
+
- bbe18b9f: ZERO-2575: Fix build error
|
|
595
|
+
- 4920742c: Disable getCachedTranslations
|
|
596
|
+
- 7e56d6b6: ZERO-2841: Update api tagTypes
|
|
597
|
+
- 43c182ee: ZERO-3054: Update Redis variable checks to conditionally include CACHE_SECRET
|
|
598
|
+
- 2d305aaf: ZERO-2935: Update Sentry configuration: remove hideSourceMaps option and add it to withPzConfig
|
|
599
|
+
- eeb20bea: Revert "ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing"
|
|
600
|
+
- f2c92d5c: ZERO-2816: Update cookie name
|
|
601
|
+
- 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
602
|
+
- fdd255ee: ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing
|
|
603
|
+
- 49eeebfa: ZERO-2909: Add deleteCollectionItem query to wishlistApi
|
|
604
|
+
- 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
|
|
605
|
+
|
|
606
|
+
## 1.82.0-rc.1
|
|
607
|
+
|
|
608
|
+
### Minor Changes
|
|
609
|
+
|
|
610
|
+
- 0e051352: ZERO-3244: Encode URL search parameters
|
|
611
|
+
|
|
612
|
+
## 1.82.0-rc.0
|
|
613
|
+
|
|
614
|
+
### Minor Changes
|
|
615
|
+
|
|
616
|
+
- 2e0b7ffd: ZERO-3226: Refactor checkoutApi to simplify request body structure by removing device_info parameter
|
|
617
|
+
- 757ee539: ZERO-3207: Add SMS send & verify endpoints with state management
|
|
618
|
+
- 778aabf8: ZERO-3163: Add frontend ID header to authentication requests and forgot password mutation
|
|
619
|
+
- c0fef075: ZERO-3197: Refetch payment options after loyalty usage
|
|
620
|
+
- 5dfeea04: ZERO-2801: Revert ZERO-2801
|
|
621
|
+
- 2d9b2b2c: ZERO-2816: Add segment to headers
|
|
622
|
+
- 40a46853: ZERO-3182: Optimize basket update mutation with optimistic update
|
|
623
|
+
- 2d2ab446: ZERO-3226: Add device_info param to WalletPaymentPage request
|
|
624
|
+
- f49bb74f: ZERO-3097: Add setCookie to logging in payment redirection middlewares
|
|
625
|
+
- e9541a13: ZERO-2816: Add headers to url
|
|
626
|
+
- 4d3deb4f: ZERO-2935: sentry 8 upgrade
|
|
627
|
+
- 72fd4d67: ZERO-3084: Fix URL search parameters encoding in default middleware
|
|
628
|
+
- 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.
|
|
629
|
+
- 64699d3f: ZERO-2761: Fix invalid import for plugin module
|
|
630
|
+
- 0200d568: ZERO-3163: Add frontendIds property to Settings interface
|
|
631
|
+
- 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
|
|
632
|
+
- d552629f: ZERO-3182: Refactor basketApi to use invalidatesTags and comment out onQueryStarted logic
|
|
633
|
+
- 17f87524: ZERO-2816: Make the incoming currency lowercase
|
|
634
|
+
- 65d3b862: ZERO-3054: Update headers in appFetch
|
|
635
|
+
- bbe18b9f: ZERO-2575: Fix build error
|
|
636
|
+
- 4920742c: Disable getCachedTranslations
|
|
637
|
+
- 7e56d6b6: ZERO-2841: Update api tagTypes
|
|
638
|
+
- 7d1b5af1: ZERO-3206: Encode search parameters in product data URL
|
|
639
|
+
- 43c182ee: ZERO-3054: Update Redis variable checks to conditionally include CACHE_SECRET
|
|
640
|
+
- 2d305aaf: ZERO-2935: Update Sentry configuration: remove hideSourceMaps option and add it to withPzConfig
|
|
641
|
+
- eeb20bea: Revert "ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing"
|
|
642
|
+
- f2c92d5c: ZERO-2816: Update cookie name
|
|
643
|
+
- 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
644
|
+
- fdd255ee: ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing
|
|
645
|
+
- aa05ed79: ZERO-3170: Add commerceRedirectionIgnoreList to settings and update URL redirection middleware
|
|
646
|
+
- 49eeebfa: ZERO-2909: Add deleteCollectionItem query to wishlistApi
|
|
647
|
+
- 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
|
|
196
648
|
|
|
197
649
|
## 1.81.0
|
|
198
650
|
|
|
@@ -212,7 +664,116 @@
|
|
|
212
664
|
|
|
213
665
|
### Minor Changes
|
|
214
666
|
|
|
215
|
-
-
|
|
667
|
+
- 778aabf8: ZERO-3163: Add frontend ID header to authentication requests and forgot password mutation
|
|
668
|
+
- 5dfeea04: ZERO-2801: Revert ZERO-2801
|
|
669
|
+
- 2d9b2b2c: ZERO-2816: Add segment to headers
|
|
670
|
+
- fd4b74e9: ZERO-3126: add reset checkout state query
|
|
671
|
+
- f49bb74f: ZERO-3097: Add setCookie to logging in payment redirection middlewares
|
|
672
|
+
- e9541a13: ZERO-2816: Add headers to url
|
|
673
|
+
- 4d3deb4f: ZERO-2935: sentry 8 upgrade
|
|
674
|
+
- 72fd4d67: ZERO-3084: Fix URL search parameters encoding in default middleware
|
|
675
|
+
- 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.
|
|
676
|
+
- 64699d3f: ZERO-2761: Fix invalid import for plugin module
|
|
677
|
+
- 0200d568: ZERO-3163: Add frontendIds property to Settings interface
|
|
678
|
+
- 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
|
|
679
|
+
- 17f87524: ZERO-2816: Make the incoming currency lowercase
|
|
680
|
+
- 65d3b862: ZERO-3054: Update headers in appFetch
|
|
681
|
+
- bbe18b9f: ZERO-2575: Fix build error
|
|
682
|
+
- 4920742c: Disable getCachedTranslations
|
|
683
|
+
- 7e56d6b6: ZERO-2841: Update api tagTypes
|
|
684
|
+
- 43c182ee: ZERO-3054: Update Redis variable checks to conditionally include CACHE_SECRET
|
|
685
|
+
- 2d305aaf: ZERO-2935: Update Sentry configuration: remove hideSourceMaps option and add it to withPzConfig
|
|
686
|
+
- 4cc22c7c: ZERO-3125: replace X-Frame-Options with CSP frame-ancestors
|
|
687
|
+
- eeb20bea: Revert "ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing"
|
|
688
|
+
- 6a0a0807: ZERO-3112: Update button
|
|
689
|
+
- f2c92d5c: ZERO-2816: Update cookie name
|
|
690
|
+
- 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
691
|
+
- fdd255ee: ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing
|
|
692
|
+
- 49eeebfa: ZERO-2909: Add deleteCollectionItem query to wishlistApi
|
|
693
|
+
- 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
|
|
694
|
+
- 7ab9e2fd: ZERO-3166: add tamara payment package
|
|
695
|
+
|
|
696
|
+
## 1.79.0-rc.6
|
|
697
|
+
|
|
698
|
+
### Minor Changes
|
|
699
|
+
|
|
700
|
+
- 0200d568: ZERO-3163: Add frontendIds property to Settings interface
|
|
701
|
+
|
|
702
|
+
## 1.79.0-rc.5
|
|
703
|
+
|
|
704
|
+
### Minor Changes
|
|
705
|
+
|
|
706
|
+
- 778aabf8: ZERO-3163: Add frontend ID header to authentication requests and forgot password mutation
|
|
707
|
+
|
|
708
|
+
## 1.79.0-rc.4
|
|
709
|
+
|
|
710
|
+
## 1.79.0-rc.3
|
|
711
|
+
|
|
712
|
+
### Minor Changes
|
|
713
|
+
|
|
714
|
+
- 5dfeea04: ZERO-2801: Revert ZERO-2801
|
|
715
|
+
- 2d9b2b2c: ZERO-2816: Add segment to headers
|
|
716
|
+
- fd4b74e9: ZERO-3126: add reset checkout state query
|
|
717
|
+
- f49bb74f: ZERO-3097: Add setCookie to logging in payment redirection middlewares
|
|
718
|
+
- e9541a13: ZERO-2816: Add headers to url
|
|
719
|
+
- 4d3deb4f: ZERO-2935: sentry 8 upgrade
|
|
720
|
+
- 72fd4d67: ZERO-3084: Fix URL search parameters encoding in default middleware
|
|
721
|
+
- 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.
|
|
722
|
+
- 64699d3f: ZERO-2761: Fix invalid import for plugin module
|
|
723
|
+
- 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
|
|
724
|
+
- 17f87524: ZERO-2816: Make the incoming currency lowercase
|
|
725
|
+
- 65d3b862: ZERO-3054: Update headers in appFetch
|
|
726
|
+
- bbe18b9f: ZERO-2575: Fix build error
|
|
727
|
+
- 4920742c: Disable getCachedTranslations
|
|
728
|
+
- 7e56d6b6: ZERO-2841: Update api tagTypes
|
|
729
|
+
- 43c182ee: ZERO-3054: Update Redis variable checks to conditionally include CACHE_SECRET
|
|
730
|
+
- 2d305aaf: ZERO-2935: Update Sentry configuration: remove hideSourceMaps option and add it to withPzConfig
|
|
731
|
+
- 4cc22c7c: ZERO-3125: replace X-Frame-Options with CSP frame-ancestors
|
|
732
|
+
- eeb20bea: Revert "ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing"
|
|
733
|
+
- 6a0a0807: ZERO-3112: Update button
|
|
734
|
+
- f2c92d5c: ZERO-2816: Update cookie name
|
|
735
|
+
- 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
736
|
+
- fdd255ee: ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing
|
|
737
|
+
- 59fa21ce: ZERO-3149: Add name-based mechanism for Redux middleware override
|
|
738
|
+
- 49eeebfa: ZERO-2909: Add deleteCollectionItem query to wishlistApi
|
|
739
|
+
- 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
|
|
740
|
+
|
|
741
|
+
## 1.79.0-rc.2
|
|
742
|
+
|
|
743
|
+
## 1.79.0-rc.1
|
|
744
|
+
|
|
745
|
+
### Minor Changes
|
|
746
|
+
|
|
747
|
+
- 4cc22c7c: ZERO-3125: replace X-Frame-Options with CSP frame-ancestors
|
|
748
|
+
|
|
749
|
+
## 1.79.0-rc.0
|
|
750
|
+
|
|
751
|
+
### Minor Changes
|
|
752
|
+
|
|
753
|
+
- 5dfeea04: ZERO-2801: Revert ZERO-2801
|
|
754
|
+
- 2d9b2b2c: ZERO-2816: Add segment to headers
|
|
755
|
+
- fd4b74e9: ZERO-3126: add reset checkout state query
|
|
756
|
+
- f49bb74f: ZERO-3097: Add setCookie to logging in payment redirection middlewares
|
|
757
|
+
- e9541a13: ZERO-2816: Add headers to url
|
|
758
|
+
- 4d3deb4f: ZERO-2935: sentry 8 upgrade
|
|
759
|
+
- 72fd4d67: ZERO-3084: Fix URL search parameters encoding in default middleware
|
|
760
|
+
- 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.
|
|
761
|
+
- 64699d3f: ZERO-2761: Fix invalid import for plugin module
|
|
762
|
+
- 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
|
|
763
|
+
- 17f87524: ZERO-2816: Make the incoming currency lowercase
|
|
764
|
+
- 65d3b862: ZERO-3054: Update headers in appFetch
|
|
765
|
+
- bbe18b9f: ZERO-2575: Fix build error
|
|
766
|
+
- 4920742c: Disable getCachedTranslations
|
|
767
|
+
- 7e56d6b6: ZERO-2841: Update api tagTypes
|
|
768
|
+
- 43c182ee: ZERO-3054: Update Redis variable checks to conditionally include CACHE_SECRET
|
|
769
|
+
- 2d305aaf: ZERO-2935: Update Sentry configuration: remove hideSourceMaps option and add it to withPzConfig
|
|
770
|
+
- eeb20bea: Revert "ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing"
|
|
771
|
+
- 6a0a0807: ZERO-3112: Update button
|
|
772
|
+
- f2c92d5c: ZERO-2816: Update cookie name
|
|
773
|
+
- 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
774
|
+
- fdd255ee: ZERO-3054: Refactor cache handler to use custom Redis handler and implement key hashing
|
|
775
|
+
- 49eeebfa: ZERO-2909: Add deleteCollectionItem query to wishlistApi
|
|
776
|
+
- 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
|
|
216
777
|
|
|
217
778
|
## 1.78.0
|
|
218
779
|
|
|
@@ -284,6 +845,52 @@
|
|
|
284
845
|
### Minor Changes
|
|
285
846
|
|
|
286
847
|
- f34454a: ZERO-2953: Add hepsipay payment method
|
|
848
|
+
- 3bfa12a: ZERO-3003:Add fetchLoyaltyData and setLoyaltyData requests to RTK
|
|
849
|
+
- 4d3deb4: ZERO-2935: sentry 8 upgrade
|
|
850
|
+
- 3010514: ZERO-3011:add shipping_option_operator and custom filter to getOrders
|
|
851
|
+
- 9a50730: ZERO-3015: Add currency parameter to getOrders query
|
|
852
|
+
- ca774b3: ZERO-3002:add register with loyalty url
|
|
853
|
+
- 56cdddc: ZERO-0000: SHOP-78125: Change unpaid_amount with total_amount_with_interest
|
|
854
|
+
- 3344bca: ZERO-3013: Enable web vitals tracking in settings.js
|
|
855
|
+
|
|
856
|
+
## 1.71.0-rc.7
|
|
857
|
+
|
|
858
|
+
## 1.71.0-rc.6
|
|
859
|
+
|
|
860
|
+
### Minor Changes
|
|
861
|
+
|
|
862
|
+
- f34454a: ZERO-2953: Add hepsipay payment method
|
|
863
|
+
|
|
864
|
+
## 1.71.0-rc.5
|
|
865
|
+
|
|
866
|
+
## 1.71.0-rc.4
|
|
867
|
+
|
|
868
|
+
## 1.71.0-rc.3
|
|
869
|
+
|
|
870
|
+
### Minor Changes
|
|
871
|
+
|
|
872
|
+
- 3344bca: ZERO-3013: Enable web vitals tracking in settings.js
|
|
873
|
+
|
|
874
|
+
## 1.71.0-rc.2
|
|
875
|
+
|
|
876
|
+
### Minor Changes
|
|
877
|
+
|
|
878
|
+
- 56cdddc: ZERO-0000: SHOP-78125: Change unpaid_amount with total_amount_with_interest
|
|
879
|
+
|
|
880
|
+
## 1.71.0-rc.1
|
|
881
|
+
|
|
882
|
+
### Minor Changes
|
|
883
|
+
|
|
884
|
+
- 9a50730: ZERO-3015: Add currency parameter to getOrders query
|
|
885
|
+
|
|
886
|
+
## 1.71.0-rc.0
|
|
887
|
+
|
|
888
|
+
### Minor Changes
|
|
889
|
+
|
|
890
|
+
- 3bfa12a: ZERO-3003:Add fetchLoyaltyData and setLoyaltyData requests to RTK
|
|
891
|
+
- 4d3deb4: ZERO-2935: sentry 8 upgrade
|
|
892
|
+
- 3010514: ZERO-3011:add shipping_option_operator and custom filter to getOrders
|
|
893
|
+
- ca774b3: ZERO-3002:add register with loyalty url
|
|
287
894
|
|
|
288
895
|
## 1.70.0
|
|
289
896
|
|
|
@@ -295,12 +902,72 @@
|
|
|
295
902
|
|
|
296
903
|
### Minor Changes
|
|
297
904
|
|
|
905
|
+
- 3bfa12a: ZERO-3003:Add fetchLoyaltyData and setLoyaltyData requests to RTK
|
|
906
|
+
- 4d3deb4: ZERO-2935: sentry 8 upgrade
|
|
907
|
+
- 3010514: ZERO-3011:add shipping_option_operator and custom filter to getOrders
|
|
908
|
+
- ca774b3: ZERO-3002:add register with loyalty url
|
|
909
|
+
- f046f8e: ZERO-2575: update version for react-number-format
|
|
910
|
+
|
|
911
|
+
## 1.69.0-rc.8
|
|
912
|
+
|
|
913
|
+
### Minor Changes
|
|
914
|
+
|
|
915
|
+
- 3010514: ZERO-3011:add shipping_option_operator and custom filter to getOrders
|
|
916
|
+
- ca774b3: ZERO-3002:add register with loyalty url
|
|
917
|
+
|
|
918
|
+
## 1.69.0-rc.7
|
|
919
|
+
|
|
920
|
+
### Minor Changes
|
|
921
|
+
|
|
922
|
+
- 3bfa12a: ZERO-3003:Add fetchLoyaltyData and setLoyaltyData requests to RTK
|
|
923
|
+
|
|
924
|
+
## 1.69.0-rc.6
|
|
925
|
+
|
|
926
|
+
### Minor Changes
|
|
927
|
+
|
|
928
|
+
- 4d3deb4: ZERO-2935: sentry 8 upgrade
|
|
298
929
|
- 063da74: ZERO-3010: Remove pz-iyzico-saved-card package
|
|
299
930
|
- 72da021: ZERO-3010: Remove unused code in pretty-url.tsx
|
|
300
931
|
- 5632a99: ZERO-3010: Remove iyzicoSavedCardReducer from reducers
|
|
301
932
|
- cbdb0c8: ZERO-3010: Move pretty url page into project
|
|
302
933
|
- 80c869b: ZERO-3010: Remove savedCardMiddleware from redux middlewares
|
|
303
934
|
|
|
935
|
+
## 1.69.0-rc.5
|
|
936
|
+
|
|
937
|
+
### Minor Changes
|
|
938
|
+
|
|
939
|
+
- 80c869b: ZERO-3010: Remove savedCardMiddleware from redux middlewares
|
|
940
|
+
|
|
941
|
+
## 1.69.0-rc.4
|
|
942
|
+
|
|
943
|
+
### Minor Changes
|
|
944
|
+
|
|
945
|
+
- 063da74: ZERO-3010: Remove pz-iyzico-saved-card package
|
|
946
|
+
|
|
947
|
+
## 1.69.0-rc.3
|
|
948
|
+
|
|
949
|
+
### Minor Changes
|
|
950
|
+
|
|
951
|
+
- cbdb0c8: ZERO-3010: Move pretty url page into project
|
|
952
|
+
|
|
953
|
+
## 1.69.0-rc.2
|
|
954
|
+
|
|
955
|
+
### Minor Changes
|
|
956
|
+
|
|
957
|
+
- 5632a99: ZERO-3010: Remove iyzicoSavedCardReducer from reducers
|
|
958
|
+
|
|
959
|
+
## 1.69.0-rc.1
|
|
960
|
+
|
|
961
|
+
### Minor Changes
|
|
962
|
+
|
|
963
|
+
- 72da021: ZERO-3010: Remove unused code in pretty-url.tsx
|
|
964
|
+
|
|
965
|
+
## 1.69.0-rc.0
|
|
966
|
+
|
|
967
|
+
### Minor Changes
|
|
968
|
+
|
|
969
|
+
- 4d3deb4: ZERO-2935: sentry 8 upgrade
|
|
970
|
+
|
|
304
971
|
## 1.68.0
|
|
305
972
|
|
|
306
973
|
### Minor Changes
|
|
@@ -410,33 +1077,205 @@
|
|
|
410
1077
|
|
|
411
1078
|
### Minor Changes
|
|
412
1079
|
|
|
1080
|
+
- c416d18: ZERO-2915: Add delivery option null check for setAddress
|
|
1081
|
+
- 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
|
|
1082
|
+
- 5dfeea0: ZERO-2801: Revert ZERO-2801
|
|
1083
|
+
- a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
|
|
1084
|
+
- fda5b927: ZERO-2725: fix invalid import
|
|
1085
|
+
- 2d9b2b2c: ZERO-2816: Add segment to headers
|
|
1086
|
+
- c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
1087
|
+
- 6c25f66: ZERO-2551: Check CACHE_HOST variable
|
|
1088
|
+
- bc2b4117: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
1089
|
+
- 3bf2dd9: ZERO-2551: Fix search page
|
|
1090
|
+
- e9541a13: ZERO-2816: Add headers to url
|
|
1091
|
+
- 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.
|
|
1092
|
+
- 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
|
|
1093
|
+
- 64699d3f: ZERO-2761: Fix invalid import for plugin module
|
|
1094
|
+
- 0d3a913e: ZERO-2725: Update decimal scale in Price component
|
|
1095
|
+
- 7b05522: ZERO-2905: Fix resend and close button in otp package
|
|
1096
|
+
- d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
|
|
1097
|
+
- d3474c64: ZERO-2655: Add data source shipping option
|
|
1098
|
+
- 17f87524: ZERO-2816: Make the incoming currency lowercase
|
|
1099
|
+
- 29ead87: ZERO-2905: Fix resend and close button in otp package
|
|
1100
|
+
- c45b62c: ZERO-2818: Add upload and download support for b2b package
|
|
1101
|
+
- 91265bba: ZERO-2551: Improve pretty url and caching performance
|
|
1102
|
+
- bbe18b9f: ZERO-2575: Fix build error
|
|
1103
|
+
- d4099960: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
|
|
1104
|
+
- 4920742: Disable getCachedTranslations
|
|
1105
|
+
- 12a873e: ZERO-2846:Edit the siteKey regex in the response from GetCaptcha
|
|
1106
|
+
- 7e56d6b: ZERO-2841: Update api tagTypes
|
|
1107
|
+
- 94b69285: ZERO-2551: Add cache handler check in url-redirection middleware
|
|
1108
|
+
- 98bb8dcd: ZERO-2706: Cache getTranlations method
|
|
1109
|
+
- dcc8a150: ZERO-2694: added build step to RC branch pipeline
|
|
1110
|
+
- 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
|
|
1111
|
+
- fad27689: ZERO-2739: add gpay to payment plugin map
|
|
1112
|
+
- dff0d595: ZERO-2659: add formData support to proxy api requests
|
|
1113
|
+
- fdd0b41: ZERO-2706: Add optimized translation support
|
|
1114
|
+
- f2c325c: ZERO-2838: Move file input component into @akinon/next
|
|
1115
|
+
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
1116
|
+
- beb499e6: ZERO-2551: Add new tsconfig paths
|
|
1117
|
+
- f2c92d5c: ZERO-2816: Update cookie name
|
|
1118
|
+
- 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
1119
|
+
- f3d076b: ZERO-2864: create tabby extension plugin
|
|
1120
|
+
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
1121
|
+
- 49eeebf: ZERO-2909: Add deleteCollectionItem query to wishlistApi
|
|
1122
|
+
- 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
1123
|
+
- 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
|
|
1124
|
+
|
|
1125
|
+
## 1.56.0-rc.7
|
|
1126
|
+
|
|
1127
|
+
## 1.56.0-rc.6
|
|
1128
|
+
|
|
1129
|
+
### Minor Changes
|
|
1130
|
+
|
|
1131
|
+
- f3d076b: ZERO-2864: create tabby extension plugin
|
|
1132
|
+
|
|
1133
|
+
## 1.56.0-rc.5
|
|
1134
|
+
|
|
1135
|
+
### Minor Changes
|
|
1136
|
+
|
|
1137
|
+
- c416d18: ZERO-2915: Add delivery option null check for setAddress
|
|
1138
|
+
|
|
1139
|
+
## 1.56.0-rc.4
|
|
1140
|
+
|
|
1141
|
+
### Minor Changes
|
|
1142
|
+
|
|
1143
|
+
- 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
|
|
1144
|
+
- 5dfeea0: ZERO-2801: Revert ZERO-2801
|
|
1145
|
+
- a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
|
|
1146
|
+
- fda5b927: ZERO-2725: fix invalid import
|
|
1147
|
+
- 2d9b2b2c: ZERO-2816: Add segment to headers
|
|
1148
|
+
- c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
413
1149
|
- d93a507: ZERO-2900: Fix pretty url rewrite
|
|
1150
|
+
- 6c25f66: ZERO-2551: Check CACHE_HOST variable
|
|
1151
|
+
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
1152
|
+
- 3bf2dd9: ZERO-2551: Fix search page
|
|
1153
|
+
- e9541a13: ZERO-2816: Add headers to url
|
|
1154
|
+
- 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.
|
|
1155
|
+
- 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
|
|
1156
|
+
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
1157
|
+
- 0d3a913e: ZERO-2725: Update decimal scale in Price component
|
|
1158
|
+
- 7b05522: ZERO-2905: Fix resend and close button in otp package
|
|
1159
|
+
- d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
|
|
1160
|
+
- d3474c64: ZERO-2655: Add data source shipping option
|
|
1161
|
+
- 17f8752: ZERO-2816: Make the incoming currency lowercase
|
|
1162
|
+
- 29ead87: ZERO-2905: Fix resend and close button in otp package
|
|
1163
|
+
- c45b62c: ZERO-2818: Add upload and download support for b2b package
|
|
1164
|
+
- 91265bba: ZERO-2551: Improve pretty url and caching performance
|
|
1165
|
+
- bbe18b9f: ZERO-2575: Fix build error
|
|
1166
|
+
- d4099960: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
|
|
1167
|
+
- 4920742: Disable getCachedTranslations
|
|
1168
|
+
- 12a873e: ZERO-2846:Edit the siteKey regex in the response from GetCaptcha
|
|
414
1169
|
- 674badc: ZERO-2912: Fix selected payment option view to handle null values
|
|
1170
|
+
- 7e56d6b: ZERO-2841: Update api tagTypes
|
|
1171
|
+
- 94b69285: ZERO-2551: Add cache handler check in url-redirection middleware
|
|
1172
|
+
- 98bb8dcd: ZERO-2706: Cache getTranlations method
|
|
415
1173
|
- 207ac6e: ZERO-2917: Add OrderSelectionPage endpoint
|
|
1174
|
+
- dcc8a150: ZERO-2694: added build step to RC branch pipeline
|
|
1175
|
+
- 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
|
|
1176
|
+
- fad27689: ZERO-2739: add gpay to payment plugin map
|
|
1177
|
+
- dff0d595: ZERO-2659: add formData support to proxy api requests
|
|
1178
|
+
- fdd0b41: ZERO-2706: Add optimized translation support
|
|
1179
|
+
- f2c325c: ZERO-2838: Move file input component into @akinon/next
|
|
1180
|
+
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
1181
|
+
- beb499e6: ZERO-2551: Add new tsconfig paths
|
|
1182
|
+
- f2c92d5c: ZERO-2816: Update cookie name
|
|
1183
|
+
- 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
1184
|
+
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
416
1185
|
- b9273fd: ZERO-2889: add host headers to requests
|
|
1186
|
+
- 49eeebf: ZERO-2909: Add deleteCollectionItem query to wishlistApi
|
|
1187
|
+
- 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
417
1188
|
- c670bd4: ZERO-2900: Add middleware rewrite functionality
|
|
1189
|
+
- 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
|
|
418
1190
|
|
|
419
|
-
## 1.
|
|
1191
|
+
## 1.56.0-rc.3
|
|
420
1192
|
|
|
421
1193
|
### Minor Changes
|
|
422
1194
|
|
|
423
|
-
-
|
|
424
|
-
- 75080fd: ZERO-2630: Add max limit to postcode area
|
|
425
|
-
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
1195
|
+
- 674badc: ZERO-2912: Fix selected payment option view to handle null values
|
|
426
1196
|
|
|
427
|
-
## 1.
|
|
1197
|
+
## 1.56.0-rc.2
|
|
428
1198
|
|
|
429
1199
|
### Minor Changes
|
|
430
1200
|
|
|
431
|
-
-
|
|
432
|
-
-
|
|
433
|
-
- e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
1201
|
+
- 7b05522: ZERO-2905: Fix resend and close button in otp package
|
|
1202
|
+
- 29ead87: ZERO-2905: Fix resend and close button in otp package
|
|
434
1203
|
|
|
435
|
-
## 1.
|
|
1204
|
+
## 1.56.0-rc.1
|
|
436
1205
|
|
|
437
1206
|
### Minor Changes
|
|
438
1207
|
|
|
439
|
-
-
|
|
1208
|
+
- 207ac6e: ZERO-2917: Add OrderSelectionPage endpoint
|
|
1209
|
+
|
|
1210
|
+
## 1.56.0-rc.0
|
|
1211
|
+
|
|
1212
|
+
### Minor Changes
|
|
1213
|
+
|
|
1214
|
+
- 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
|
|
1215
|
+
- 5dfeea0: ZERO-2801: Revert ZERO-2801
|
|
1216
|
+
- a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
|
|
1217
|
+
- fda5b927: ZERO-2725: fix invalid import
|
|
1218
|
+
- 2d9b2b2c: ZERO-2816: Add segment to headers
|
|
1219
|
+
- c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
1220
|
+
- d93a507: ZERO-2900: Fix pretty url rewrite
|
|
1221
|
+
- 6c25f666: ZERO-2551: Check CACHE_HOST variable
|
|
1222
|
+
- bc2b4117: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
1223
|
+
- 3bf2dd94: ZERO-2551: Fix search page
|
|
1224
|
+
- e9541a13: ZERO-2816: Add headers to url
|
|
1225
|
+
- 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.
|
|
1226
|
+
- 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
|
|
1227
|
+
- 64699d3f: ZERO-2761: Fix invalid import for plugin module
|
|
1228
|
+
- 0d3a913e: ZERO-2725: Update decimal scale in Price component
|
|
1229
|
+
- d6edb1d0: ZERO-2551: Fix searchparams handling for list and other routes
|
|
1230
|
+
- d3474c64: ZERO-2655: Add data source shipping option
|
|
1231
|
+
- 17f87524: ZERO-2816: Make the incoming currency lowercase
|
|
1232
|
+
- c45b62c9: ZERO-2818: Add upload and download support for b2b package
|
|
1233
|
+
- 91265bba: ZERO-2551: Improve pretty url and caching performance
|
|
1234
|
+
- bbe18b9f: ZERO-2575: Fix build error
|
|
1235
|
+
- d4099960: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
|
|
1236
|
+
- 4920742c: Disable getCachedTranslations
|
|
1237
|
+
- 12a873e: ZERO-2846:Edit the siteKey regex in the response from GetCaptcha
|
|
1238
|
+
- 7e56d6b6: ZERO-2841: Update api tagTypes
|
|
1239
|
+
- 94b69285: ZERO-2551: Add cache handler check in url-redirection middleware
|
|
1240
|
+
- 98bb8dcd: ZERO-2706: Cache getTranlations method
|
|
1241
|
+
- dcc8a150: ZERO-2694: added build step to RC branch pipeline
|
|
1242
|
+
- 8f47ccae: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
|
|
1243
|
+
- fad27689: ZERO-2739: add gpay to payment plugin map
|
|
1244
|
+
- dff0d595: ZERO-2659: add formData support to proxy api requests
|
|
1245
|
+
- fdd0b41: ZERO-2706: Add optimized translation support
|
|
1246
|
+
- f2c325c1: ZERO-2838: Move file input component into @akinon/next
|
|
1247
|
+
- 9e25a64b: ZERO-2835: Update category page layout with breadcrumb
|
|
1248
|
+
- beb499e6: ZERO-2551: Add new tsconfig paths
|
|
1249
|
+
- f2c92d5c: ZERO-2816: Update cookie name
|
|
1250
|
+
- 7bd3d992: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
1251
|
+
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
1252
|
+
- b9273fd3: ZERO-2889: add host headers to requests
|
|
1253
|
+
- 49eeebf: ZERO-2909: Add deleteCollectionItem query to wishlistApi
|
|
1254
|
+
- 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
1255
|
+
- c670bd48: ZERO-2900: Add middleware rewrite functionality
|
|
1256
|
+
- 3f9b8d7e: ZERO-2761: Update plugins.js for akinon-next
|
|
1257
|
+
|
|
1258
|
+
## 1.55.0
|
|
1259
|
+
|
|
1260
|
+
### Minor Changes
|
|
1261
|
+
|
|
1262
|
+
- 1448a96: ZERO-2612: add errors type in CheckoutState
|
|
1263
|
+
- 75080fd: ZERO-2630: Add max limit to postcode area
|
|
1264
|
+
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
1265
|
+
|
|
1266
|
+
## 1.54.0
|
|
1267
|
+
|
|
1268
|
+
### Minor Changes
|
|
1269
|
+
|
|
1270
|
+
- 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
|
|
1271
|
+
- c47be30: ZERO-2744: Update Order and OrderItem types
|
|
1272
|
+
- e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
1273
|
+
|
|
1274
|
+
## 1.53.0
|
|
1275
|
+
|
|
1276
|
+
### Minor Changes
|
|
1277
|
+
|
|
1278
|
+
- a957942: ZERO-2909: Rename useDeleteCollectionItemQuery
|
|
440
1279
|
|
|
441
1280
|
## 1.52.0
|
|
442
1281
|
|
|
@@ -460,7 +1299,128 @@
|
|
|
460
1299
|
|
|
461
1300
|
### Minor Changes
|
|
462
1301
|
|
|
1302
|
+
- 90282b53: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
1303
|
+
- 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
|
|
1304
|
+
- 5dfeea0: ZERO-2801: Revert ZERO-2801
|
|
1305
|
+
- a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
|
|
1306
|
+
- fda5b927: ZERO-2725: fix invalid import
|
|
1307
|
+
- 2d9b2b2: ZERO-2816: Add segment to headers
|
|
1308
|
+
- c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
1309
|
+
- d93a507: ZERO-2900: Fix pretty url rewrite
|
|
1310
|
+
- 8d9ac9a: ZERO-2794: Add field to order type
|
|
1311
|
+
- 70279e7: ZERO-2817: Add metrics endpoint in default middleware
|
|
1312
|
+
- 6c25f66: ZERO-2551: Check CACHE_HOST variable
|
|
1313
|
+
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
1314
|
+
- 3bf2dd9: ZERO-2551: Fix search page
|
|
1315
|
+
- e9541a1: ZERO-2816: Add headers to url
|
|
1316
|
+
- 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.
|
|
1317
|
+
- 9d94f7e: ZERO-2820: update parent pk usage for menu generator
|
|
1318
|
+
- 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
|
|
1319
|
+
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
1320
|
+
- 0d3a913e: ZERO-2725: Update decimal scale in Price component
|
|
1321
|
+
- 1448a96e: ZERO-2612: add errors type in CheckoutState
|
|
1322
|
+
- 1ec2e9d: ZERO-2895: Update app-fetch to include cookies in headers
|
|
1323
|
+
- d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
|
|
1324
|
+
- d3474c64: ZERO-2655: Add data source shipping option
|
|
1325
|
+
- 75080fd6: ZERO-2630: Add max limit to postcode area
|
|
1326
|
+
- 17f8752: ZERO-2816: Make the incoming currency lowercase
|
|
1327
|
+
- c45b62c: ZERO-2818: Add upload and download support for b2b package
|
|
1328
|
+
- 91265bba: ZERO-2551: Improve pretty url and caching performance
|
|
1329
|
+
- bbe18b9f: ZERO-2575: Fix build error
|
|
1330
|
+
- d4099960: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
|
|
1331
|
+
- 4920742: Disable getCachedTranslations
|
|
1332
|
+
- 12a873e: ZERO-2846:Edit the siteKey regex in the response from GetCaptcha
|
|
1333
|
+
- 7e56d6b: ZERO-2841: Update api tagTypes
|
|
1334
|
+
- 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
|
|
1335
|
+
- 98bb8dcd: ZERO-2706: Cache getTranlations method
|
|
1336
|
+
- 46b7aad7: ZERO-2775: Add condition and logger for menuitemmodel data
|
|
1337
|
+
- dcc8a150: ZERO-2694: added build step to RC branch pipeline
|
|
1338
|
+
- 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
|
|
1339
|
+
- fad27689: ZERO-2739: add gpay to payment plugin map
|
|
1340
|
+
- dff0d595: ZERO-2659: add formData support to proxy api requests
|
|
1341
|
+
- fdd0b41: ZERO-2706: Add optimized translation support
|
|
1342
|
+
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
1343
|
+
- f2c325c: ZERO-2838: Move file input component into @akinon/next
|
|
1344
|
+
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
1345
|
+
- beb499e6: ZERO-2551: Add new tsconfig paths
|
|
1346
|
+
- 146ea391: ZERO-2774: Update imports
|
|
1347
|
+
- f2c92d5: ZERO-2816: Update cookie name
|
|
1348
|
+
- 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
1349
|
+
- c47be30d: ZERO-2744: Update Order and OrderItem types
|
|
1350
|
+
- e9a46acb: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
1351
|
+
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
1352
|
+
- b9273fd: ZERO-2889: add host headers to requests
|
|
1353
|
+
- 49eeebf: ZERO-2909: Add deleteCollectionItem query to wishlistApi
|
|
1354
|
+
- 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
1355
|
+
- c670bd4: ZERO-2900: Add middleware rewrite functionality
|
|
1356
|
+
- 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
|
|
1357
|
+
- 3d35f70: ZERO-2908: Add cookie to redirect url
|
|
1358
|
+
|
|
1359
|
+
## 1.50.0-rc.1
|
|
1360
|
+
|
|
1361
|
+
### Minor Changes
|
|
1362
|
+
|
|
1363
|
+
- 49eeebf: ZERO-2909: Add deleteCollectionItem query to wishlistApi
|
|
1364
|
+
|
|
1365
|
+
## 1.50.0-rc.0
|
|
1366
|
+
|
|
1367
|
+
### Minor Changes
|
|
1368
|
+
|
|
1369
|
+
- 90282b53: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
1370
|
+
- 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
|
|
1371
|
+
- 5dfeea0: ZERO-2801: Revert ZERO-2801
|
|
1372
|
+
- a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
|
|
1373
|
+
- fda5b927: ZERO-2725: fix invalid import
|
|
1374
|
+
- 2d9b2b2: ZERO-2816: Add segment to headers
|
|
1375
|
+
- c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
1376
|
+
- d93a507: ZERO-2900: Fix pretty url rewrite
|
|
1377
|
+
- 8d9ac9a: ZERO-2794: Add field to order type
|
|
463
1378
|
- eaf97d6: ZERO-2909: Add deleteCollectionItem query to wishlistApi
|
|
1379
|
+
- 70279e7: ZERO-2817: Add metrics endpoint in default middleware
|
|
1380
|
+
- 6c25f66: ZERO-2551: Check CACHE_HOST variable
|
|
1381
|
+
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
1382
|
+
- 3bf2dd9: ZERO-2551: Fix search page
|
|
1383
|
+
- e9541a1: ZERO-2816: Add headers to url
|
|
1384
|
+
- 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.
|
|
1385
|
+
- 9d94f7e: ZERO-2820: update parent pk usage for menu generator
|
|
1386
|
+
- 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
|
|
1387
|
+
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
1388
|
+
- 0d3a913e: ZERO-2725: Update decimal scale in Price component
|
|
1389
|
+
- 1448a96e: ZERO-2612: add errors type in CheckoutState
|
|
1390
|
+
- 1ec2e9d: ZERO-2895: Update app-fetch to include cookies in headers
|
|
1391
|
+
- d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
|
|
1392
|
+
- d3474c64: ZERO-2655: Add data source shipping option
|
|
1393
|
+
- 75080fd6: ZERO-2630: Add max limit to postcode area
|
|
1394
|
+
- 17f8752: ZERO-2816: Make the incoming currency lowercase
|
|
1395
|
+
- c45b62c: ZERO-2818: Add upload and download support for b2b package
|
|
1396
|
+
- 91265bba: ZERO-2551: Improve pretty url and caching performance
|
|
1397
|
+
- bbe18b9f: ZERO-2575: Fix build error
|
|
1398
|
+
- d4099960: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
|
|
1399
|
+
- 4920742: Disable getCachedTranslations
|
|
1400
|
+
- 12a873e: ZERO-2846:Edit the siteKey regex in the response from GetCaptcha
|
|
1401
|
+
- 7e56d6b: ZERO-2841: Update api tagTypes
|
|
1402
|
+
- 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
|
|
1403
|
+
- 98bb8dcd: ZERO-2706: Cache getTranlations method
|
|
1404
|
+
- 46b7aad7: ZERO-2775: Add condition and logger for menuitemmodel data
|
|
1405
|
+
- dcc8a150: ZERO-2694: added build step to RC branch pipeline
|
|
1406
|
+
- 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
|
|
1407
|
+
- fad27689: ZERO-2739: add gpay to payment plugin map
|
|
1408
|
+
- dff0d595: ZERO-2659: add formData support to proxy api requests
|
|
1409
|
+
- fdd0b41: ZERO-2706: Add optimized translation support
|
|
1410
|
+
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
1411
|
+
- f2c325c: ZERO-2838: Move file input component into @akinon/next
|
|
1412
|
+
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
1413
|
+
- beb499e6: ZERO-2551: Add new tsconfig paths
|
|
1414
|
+
- 146ea391: ZERO-2774: Update imports
|
|
1415
|
+
- f2c92d5: ZERO-2816: Update cookie name
|
|
1416
|
+
- 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
1417
|
+
- c47be30d: ZERO-2744: Update Order and OrderItem types
|
|
1418
|
+
- e9a46acb: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
1419
|
+
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
1420
|
+
- b9273fd: ZERO-2889: add host headers to requests
|
|
1421
|
+
- 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
1422
|
+
- c670bd4: ZERO-2900: Add middleware rewrite functionality
|
|
1423
|
+
- 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
|
|
464
1424
|
|
|
465
1425
|
## 1.49.0
|
|
466
1426
|
|
|
@@ -486,7 +1446,126 @@
|
|
|
486
1446
|
|
|
487
1447
|
### Minor Changes
|
|
488
1448
|
|
|
1449
|
+
- 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
1450
|
+
- 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
|
|
1451
|
+
- a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
|
|
1452
|
+
- fda5b92: ZERO-2725: fix invalid import
|
|
1453
|
+
- 2d9b2b2: ZERO-2816: Add segment to headers
|
|
1454
|
+
- c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
1455
|
+
- 8d9ac9a: ZERO-2794: Add field to order type
|
|
1456
|
+
- 70279e7: ZERO-2817: Add metrics endpoint in default middleware
|
|
1457
|
+
- 6c25f66: ZERO-2551: Check CACHE_HOST variable
|
|
1458
|
+
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
1459
|
+
- 3bf2dd9: ZERO-2551: Fix search page
|
|
1460
|
+
- e9541a1: ZERO-2816: Add headers to url
|
|
1461
|
+
- 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.
|
|
1462
|
+
- 9d94f7e: ZERO-2820: update parent pk usage for menu generator
|
|
1463
|
+
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
1464
|
+
- 0d3a913: ZERO-2725: Update decimal scale in Price component
|
|
1465
|
+
- 1448a96e: ZERO-2612: add errors type in CheckoutState
|
|
1466
|
+
- d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
|
|
1467
|
+
- d3474c6: ZERO-2655: Add data source shipping option
|
|
1468
|
+
- 75080fd6: ZERO-2630: Add max limit to postcode area
|
|
1469
|
+
- 17f8752: ZERO-2816: Make the incoming currency lowercase
|
|
1470
|
+
- c45b62c: ZERO-2818: Add upload and download support for b2b package
|
|
1471
|
+
- 91265bba: ZERO-2551: Improve pretty url and caching performance
|
|
1472
|
+
- bbe18b9f: ZERO-2575: Fix build error
|
|
1473
|
+
- d409996: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
|
|
1474
|
+
- 4920742: Disable getCachedTranslations
|
|
1475
|
+
- 7e56d6b: ZERO-2841: Update api tagTypes
|
|
1476
|
+
- 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
|
|
1477
|
+
- 98bb8dc: ZERO-2706: Cache getTranlations method
|
|
1478
|
+
- 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
|
|
1479
|
+
- dcc8a15: ZERO-2694: added build step to RC branch pipeline
|
|
1480
|
+
- 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
|
|
1481
|
+
- fad2768: ZERO-2739: add gpay to payment plugin map
|
|
1482
|
+
- dff0d595: ZERO-2659: add formData support to proxy api requests
|
|
1483
|
+
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
1484
|
+
- f2c325c: ZERO-2838: Move file input component into @akinon/next
|
|
1485
|
+
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
1486
|
+
- beb499e6: ZERO-2551: Add new tsconfig paths
|
|
1487
|
+
- 948eb42: ZERO-2852: Add out of stock endpoints
|
|
1488
|
+
- 146ea39: ZERO-2774: Update imports
|
|
1489
|
+
- f2c92d5: ZERO-2816: Update cookie name
|
|
1490
|
+
- 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
1491
|
+
- c47be30: ZERO-2744: Update Order and OrderItem types
|
|
1492
|
+
- e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
1493
|
+
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
1494
|
+
- 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
1495
|
+
- 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
|
|
1496
|
+
|
|
1497
|
+
## 1.45.0-rc.4
|
|
1498
|
+
|
|
1499
|
+
### Minor Changes
|
|
1500
|
+
|
|
1501
|
+
- 8f47cca: ZERO-2829: fix and add nested JSON support for useFormData in api/client route
|
|
1502
|
+
|
|
1503
|
+
## 1.45.0-rc.3
|
|
1504
|
+
|
|
1505
|
+
### Minor Changes
|
|
1506
|
+
|
|
1507
|
+
- 948eb42: ZERO-2852: Add out of stock endpoints
|
|
1508
|
+
|
|
1509
|
+
## 1.45.0-rc.2
|
|
1510
|
+
|
|
1511
|
+
### Minor Changes
|
|
1512
|
+
|
|
1513
|
+
- c45b62c: ZERO-2818: Add upload and download support for b2b package
|
|
1514
|
+
- f2c325c: ZERO-2838: Move file input component into @akinon/next
|
|
1515
|
+
|
|
1516
|
+
## 1.45.0-rc.1
|
|
1517
|
+
|
|
1518
|
+
### Minor Changes
|
|
1519
|
+
|
|
1520
|
+
- 7e56d6b: ZERO-2841: Update api tagTypes
|
|
1521
|
+
|
|
1522
|
+
## 1.45.0-rc.0
|
|
1523
|
+
|
|
1524
|
+
### Minor Changes
|
|
1525
|
+
|
|
1526
|
+
- 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
1527
|
+
- 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
|
|
1528
|
+
- a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
|
|
1529
|
+
- fda5b92: ZERO-2725: fix invalid import
|
|
1530
|
+
- 2d9b2b2: ZERO-2816: Add segment to headers
|
|
1531
|
+
- c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
1532
|
+
- 8d9ac9a: ZERO-2794: Add field to order type
|
|
1533
|
+
- 70279e7: ZERO-2817: Add metrics endpoint in default middleware
|
|
1534
|
+
- 6c25f66: ZERO-2551: Check CACHE_HOST variable
|
|
1535
|
+
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
1536
|
+
- 3bf2dd9: ZERO-2551: Fix search page
|
|
1537
|
+
- e9541a1: ZERO-2816: Add headers to url
|
|
1538
|
+
- 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.
|
|
1539
|
+
- 9d94f7e: ZERO-2820: update parent pk usage for menu generator
|
|
1540
|
+
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
1541
|
+
- 0d3a913: ZERO-2725: Update decimal scale in Price component
|
|
1542
|
+
- 1448a96: ZERO-2612: add errors type in CheckoutState
|
|
489
1543
|
- 2ab6e08: ZERO-2841: Update getBasketDetail query
|
|
1544
|
+
- d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
|
|
1545
|
+
- d3474c6: ZERO-2655: Add data source shipping option
|
|
1546
|
+
- 75080fd: ZERO-2630: Add max limit to postcode area
|
|
1547
|
+
- 17f8752: ZERO-2816: Make the incoming currency lowercase
|
|
1548
|
+
- 91265bb: ZERO-2551: Improve pretty url and caching performance
|
|
1549
|
+
- bbe18b9: ZERO-2575: Fix build error
|
|
1550
|
+
- d409996: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
|
|
1551
|
+
- 4920742: Disable getCachedTranslations
|
|
1552
|
+
- 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
|
|
1553
|
+
- 98bb8dc: ZERO-2706: Cache getTranlations method
|
|
1554
|
+
- 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
|
|
1555
|
+
- dcc8a15: ZERO-2694: added build step to RC branch pipeline
|
|
1556
|
+
- fad2768: ZERO-2739: add gpay to payment plugin map
|
|
1557
|
+
- dff0d59: ZERO-2659: add formData support to proxy api requests
|
|
1558
|
+
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
1559
|
+
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
1560
|
+
- beb499e: ZERO-2551: Add new tsconfig paths
|
|
1561
|
+
- 146ea39: ZERO-2774: Update imports
|
|
1562
|
+
- f2c92d5: ZERO-2816: Update cookie name
|
|
1563
|
+
- 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
1564
|
+
- c47be30: ZERO-2744: Update Order and OrderItem types
|
|
1565
|
+
- e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
1566
|
+
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
1567
|
+
- 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
1568
|
+
- 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
|
|
490
1569
|
|
|
491
1570
|
## 1.44.0
|
|
492
1571
|
|
|
@@ -494,7 +1573,201 @@
|
|
|
494
1573
|
|
|
495
1574
|
### Minor Changes
|
|
496
1575
|
|
|
1576
|
+
- 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
1577
|
+
- 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
|
|
1578
|
+
- a4c8d6a9: ZERO-2663: Fix the image url for gif and svgs and return them without options
|
|
1579
|
+
- fda5b92: ZERO-2725: fix invalid import
|
|
1580
|
+
- 2d9b2b2: ZERO-2816: Add segment to headers
|
|
1581
|
+
- c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
1582
|
+
- 8d9ac9a: ZERO-2794: Add field to order type
|
|
1583
|
+
- 70279e7: ZERO-2817: Add metrics endpoint in default middleware
|
|
1584
|
+
- 6c25f66: ZERO-2551: Check CACHE_HOST variable
|
|
1585
|
+
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
1586
|
+
- 3bf2dd9: ZERO-2551: Fix search page
|
|
1587
|
+
- e9541a1: ZERO-2816: Add headers to url
|
|
1588
|
+
- 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.
|
|
1589
|
+
- 9d94f7e: ZERO-2820: update parent pk usage for menu generator
|
|
1590
|
+
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
1591
|
+
- 0d3a913: ZERO-2725: Update decimal scale in Price component
|
|
1592
|
+
- 1448a96: ZERO-2612: add errors type in CheckoutState
|
|
1593
|
+
- d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
|
|
1594
|
+
- d3474c6: ZERO-2655: Add data source shipping option
|
|
1595
|
+
- 75080fd: ZERO-2630: Add max limit to postcode area
|
|
1596
|
+
- 17f8752: ZERO-2816: Make the incoming currency lowercase
|
|
1597
|
+
- 91265bb: ZERO-2551: Improve pretty url and caching performance
|
|
1598
|
+
- bbe18b9: ZERO-2575: Fix build error
|
|
1599
|
+
- d409996: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
|
|
1600
|
+
- 4920742: Disable getCachedTranslations
|
|
1601
|
+
- 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
|
|
1602
|
+
- 98bb8dc: ZERO-2706: Cache getTranlations method
|
|
1603
|
+
- 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
|
|
1604
|
+
- dcc8a15: ZERO-2694: added build step to RC branch pipeline
|
|
1605
|
+
- fad2768: ZERO-2739: add gpay to payment plugin map
|
|
1606
|
+
- dff0d59: ZERO-2659: add formData support to proxy api requests
|
|
1607
|
+
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
1608
|
+
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
1609
|
+
- beb499e: ZERO-2551: Add new tsconfig paths
|
|
1610
|
+
- 146ea39: ZERO-2774: Update imports
|
|
1611
|
+
- f2c92d5: ZERO-2816: Update cookie name
|
|
1612
|
+
- 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
1613
|
+
- c47be30: ZERO-2744: Update Order and OrderItem types
|
|
1614
|
+
- e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
1615
|
+
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
1616
|
+
- 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
1617
|
+
- 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
|
|
1618
|
+
|
|
1619
|
+
## 1.43.0-rc.15
|
|
1620
|
+
|
|
1621
|
+
## 1.43.0-rc.14
|
|
1622
|
+
|
|
1623
|
+
### Minor Changes
|
|
1624
|
+
|
|
1625
|
+
- 3bf2dd9: ZERO-2551: Fix search page
|
|
1626
|
+
|
|
1627
|
+
## 1.43.0-rc.13
|
|
1628
|
+
|
|
1629
|
+
### Minor Changes
|
|
1630
|
+
|
|
1631
|
+
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
1632
|
+
|
|
1633
|
+
## 1.43.0-rc.12
|
|
1634
|
+
|
|
1635
|
+
### Minor Changes
|
|
1636
|
+
|
|
1637
|
+
- 4920742: Disable getCachedTranslations
|
|
1638
|
+
|
|
1639
|
+
## 1.43.0-rc.11
|
|
1640
|
+
|
|
1641
|
+
### Minor Changes
|
|
1642
|
+
|
|
1643
|
+
- 6c25f66: ZERO-2551: Check CACHE_HOST variable
|
|
1644
|
+
|
|
1645
|
+
## 1.43.0-rc.10
|
|
1646
|
+
|
|
1647
|
+
### Minor Changes
|
|
1648
|
+
|
|
1649
|
+
- d6edb1d: ZERO-2551: Fix searchparams handling for list and other routes
|
|
1650
|
+
|
|
1651
|
+
## 1.43.0-rc.9
|
|
1652
|
+
|
|
1653
|
+
### Minor Changes
|
|
1654
|
+
|
|
1655
|
+
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
1656
|
+
|
|
1657
|
+
## 1.43.0-rc.8
|
|
1658
|
+
|
|
1659
|
+
### Minor Changes
|
|
1660
|
+
|
|
1661
|
+
- 70279e7: ZERO-2817: Add metrics endpoint in default middleware
|
|
1662
|
+
- 9d94f7e: ZERO-2820: update parent pk usage for menu generator
|
|
1663
|
+
|
|
1664
|
+
## 1.43.0-rc.7
|
|
1665
|
+
|
|
1666
|
+
### Minor Changes
|
|
1667
|
+
|
|
1668
|
+
- 7bd3d99: ZERO-2801: Refactor locale middleware to handle single locale configuration
|
|
1669
|
+
|
|
1670
|
+
## 1.43.0-rc.6
|
|
1671
|
+
|
|
1672
|
+
### Minor Changes
|
|
1673
|
+
|
|
1674
|
+
- 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
1675
|
+
- 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
|
|
1676
|
+
- a4c8d6a: ZERO-2663: Fix the image url for gif and svgs and return them without options
|
|
1677
|
+
- fda5b92: ZERO-2725: fix invalid import
|
|
1678
|
+
- 2d9b2b2: ZERO-2816: Add segment to headers
|
|
1679
|
+
- c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
1680
|
+
- 8d9ac9a: ZERO-2794: Add field to order type
|
|
1681
|
+
- e9541a1: ZERO-2816: Add headers to url
|
|
1682
|
+
- 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.
|
|
1683
|
+
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
1684
|
+
- 0d3a913: ZERO-2725: Update decimal scale in Price component
|
|
1685
|
+
- 1448a96: ZERO-2612: add errors type in CheckoutState
|
|
1686
|
+
- d3474c6: ZERO-2655: Add data source shipping option
|
|
1687
|
+
- 75080fd: ZERO-2630: Add max limit to postcode area
|
|
1688
|
+
- 17f8752: ZERO-2816: Make the incoming currency lowercase
|
|
1689
|
+
- 91265bb: ZERO-2551: Improve pretty url and caching performance
|
|
1690
|
+
- bbe18b9: ZERO-2575: Fix build error
|
|
1691
|
+
- d409996: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
|
|
1692
|
+
- 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
|
|
1693
|
+
- 98bb8dc: ZERO-2706: Cache getTranlations method
|
|
1694
|
+
- 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
|
|
1695
|
+
- dcc8a15: ZERO-2694: added build step to RC branch pipeline
|
|
1696
|
+
- fad2768: ZERO-2739: add gpay to payment plugin map
|
|
1697
|
+
- dff0d59: ZERO-2659: add formData support to proxy api requests
|
|
1698
|
+
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
497
1699
|
- 4a163f2: ZERO-2761: Add condition for basket summary
|
|
1700
|
+
- beb499e: ZERO-2551: Add new tsconfig paths
|
|
1701
|
+
- 146ea39: ZERO-2774: Update imports
|
|
1702
|
+
- f2c92d5: ZERO-2816: Update cookie name
|
|
1703
|
+
- c47be30: ZERO-2744: Update Order and OrderItem types
|
|
1704
|
+
- e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
1705
|
+
- f046f8e: ZERO-2575: update version for react-number-format
|
|
1706
|
+
- 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
1707
|
+
- 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
|
|
1708
|
+
|
|
1709
|
+
## 1.43.0-rc.5
|
|
1710
|
+
|
|
1711
|
+
### Minor Changes
|
|
1712
|
+
|
|
1713
|
+
- 17f8752: ZERO-2816: Make the incoming currency lowercase
|
|
1714
|
+
|
|
1715
|
+
## 1.43.0-rc.4
|
|
1716
|
+
|
|
1717
|
+
### Minor Changes
|
|
1718
|
+
|
|
1719
|
+
- 3f9b8d7: ZERO-2761: Update plugins.js for akinon-next
|
|
1720
|
+
|
|
1721
|
+
## 1.43.0-rc.3
|
|
1722
|
+
|
|
1723
|
+
### Minor Changes
|
|
1724
|
+
|
|
1725
|
+
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
1726
|
+
|
|
1727
|
+
## 1.43.0-rc.2
|
|
1728
|
+
|
|
1729
|
+
### Minor Changes
|
|
1730
|
+
|
|
1731
|
+
- f2c92d5: ZERO-2816: Update cookie name
|
|
1732
|
+
|
|
1733
|
+
## 1.43.0-rc.1
|
|
1734
|
+
|
|
1735
|
+
### Minor Changes
|
|
1736
|
+
|
|
1737
|
+
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
1738
|
+
|
|
1739
|
+
## 1.43.0-rc.0
|
|
1740
|
+
|
|
1741
|
+
### Minor Changes
|
|
1742
|
+
|
|
1743
|
+
- 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
1744
|
+
- 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
|
|
1745
|
+
- a4c8d6a: ZERO-2663: Fix the image url for gif and svgs and return them without options
|
|
1746
|
+
- fda5b92: ZERO-2725: fix invalid import
|
|
1747
|
+
- 2d9b2b2: ZERO-2816: Add segment to headers
|
|
1748
|
+
- c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
1749
|
+
- 8d9ac9a: ZERO-2794: Add field to order type
|
|
1750
|
+
- e9541a1: ZERO-2816: Add headers to url
|
|
1751
|
+
- 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.
|
|
1752
|
+
- 0d3a913: ZERO-2725: Update decimal scale in Price component
|
|
1753
|
+
- 1448a96: ZERO-2612: add errors type in CheckoutState
|
|
1754
|
+
- d3474c6: ZERO-2655: Add data source shipping option
|
|
1755
|
+
- 75080fd: ZERO-2630: Add max limit to postcode area
|
|
1756
|
+
- 91265bb: ZERO-2551: Improve pretty url and caching performance
|
|
1757
|
+
- bbe18b9: ZERO-2575: Fix build error
|
|
1758
|
+
- d409996: ZERO-2781: Refactor buildClientRequestUrl function to support caching and options
|
|
1759
|
+
- 94b6928: ZERO-2551: Add cache handler check in url-redirection middleware
|
|
1760
|
+
- 98bb8dc: ZERO-2706: Cache getTranlations method
|
|
1761
|
+
- 46b7aad: ZERO-2775: Add condition and logger for menuitemmodel data
|
|
1762
|
+
- dcc8a15: ZERO-2694: added build step to RC branch pipeline
|
|
1763
|
+
- fad2768: ZERO-2739: add gpay to payment plugin map
|
|
1764
|
+
- dff0d59: ZERO-2659: add formData support to proxy api requests
|
|
1765
|
+
- beb499e: ZERO-2551: Add new tsconfig paths
|
|
1766
|
+
- 146ea39: ZERO-2774: Update imports
|
|
1767
|
+
- c47be30: ZERO-2744: Update Order and OrderItem types
|
|
1768
|
+
- e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
1769
|
+
- f046f8e: ZERO-2575: update version for react-number-format
|
|
1770
|
+
- 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
498
1771
|
|
|
499
1772
|
## 1.42.0
|
|
500
1773
|
|