@akinon/projectzero 1.80.0 → 1.81.0-rc.1
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 +15 -0
- package/app-template/.gitignore +2 -0
- package/app-template/CHANGELOG.md +2950 -153
- package/app-template/package.json +19 -19
- package/app-template/public/locales/en/common.json +4 -0
- package/app-template/public/locales/tr/common.json +4 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/account/orders/[id]/cancellation/page.tsx +94 -5
- package/app-template/src/app/[commerce]/[locale]/[currency]/basket/page.tsx +9 -82
- package/app-template/src/app/[commerce]/[locale]/[currency]/orders/checkout/page.tsx +7 -4
- package/app-template/src/components/button.tsx +50 -35
- package/app-template/src/components/file-input.tsx +44 -2
- package/app-template/src/components/types/index.ts +4 -1
- package/app-template/src/components/widget/widget-placeholder.tsx +12 -0
- package/app-template/src/middleware.ts +1 -0
- package/app-template/src/settings.js +6 -1
- package/app-template/src/views/account/address-form.tsx +2 -2
- package/app-template/src/views/account/contact-form.tsx +3 -8
- package/app-template/src/views/account/orders/order-cancellation-item.tsx +23 -3
- package/app-template/src/views/basket/basket-content.tsx +106 -0
- package/app-template/src/views/basket/basket-item.tsx +16 -13
- package/app-template/src/views/basket/summary.tsx +10 -7
- package/app-template/src/views/category/category-header.tsx +11 -5
- package/app-template/src/views/header/search/index.tsx +13 -1
- package/app-template/src/views/login/index.tsx +28 -4
- package/app-template/src/views/register/index.tsx +30 -5
- package/commands/plugins.ts +4 -0
- package/dist/commands/plugins.js +4 -0
- package/package.json +1 -1
- package/app-template/sentry.edge.config.ts +0 -3
- package/app-template/sentry.server.config.ts +0 -3
|
@@ -1,5 +1,92 @@
|
|
|
1
1
|
# projectzeronext
|
|
2
2
|
|
|
3
|
+
## 1.81.0-rc.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [6c1dba75]
|
|
8
|
+
- @akinon/pz-tamara-extension@1.81.0-rc.1
|
|
9
|
+
- @akinon/next@1.81.0-rc.1
|
|
10
|
+
- @akinon/pz-akifast@1.81.0-rc.1
|
|
11
|
+
- @akinon/pz-b2b@1.81.0-rc.1
|
|
12
|
+
- @akinon/pz-basket-gift-pack@1.81.0-rc.1
|
|
13
|
+
- @akinon/pz-bkm@1.81.0-rc.1
|
|
14
|
+
- @akinon/pz-checkout-gift-pack@1.81.0-rc.1
|
|
15
|
+
- @akinon/pz-click-collect@1.81.0-rc.1
|
|
16
|
+
- @akinon/pz-credit-payment@1.81.0-rc.1
|
|
17
|
+
- @akinon/pz-gpay@1.81.0-rc.1
|
|
18
|
+
- @akinon/pz-masterpass@1.81.0-rc.1
|
|
19
|
+
- @akinon/pz-one-click-checkout@1.81.0-rc.1
|
|
20
|
+
- @akinon/pz-otp@1.81.0-rc.1
|
|
21
|
+
- @akinon/pz-pay-on-delivery@1.81.0-rc.1
|
|
22
|
+
- @akinon/pz-saved-card@1.81.0-rc.1
|
|
23
|
+
- @akinon/pz-tabby-extension@1.81.0-rc.1
|
|
24
|
+
|
|
25
|
+
## 1.81.0-rc.0
|
|
26
|
+
|
|
27
|
+
### Minor Changes
|
|
28
|
+
|
|
29
|
+
- e8dcbe3c: ZERO-3112: Update button component
|
|
30
|
+
- fd4b74e9: ZERO-3126: add reset checkout state query
|
|
31
|
+
- 82174637: ZERO-2887: Add LoaderSpinner to Filters component
|
|
32
|
+
- 4d3deb4f: ZERO-2935: sentry 8 upgrade
|
|
33
|
+
- 64699d3f: ZERO-2761: Fix invalid import for plugin module
|
|
34
|
+
- 7a1e1f73: ZERO-3138: Close the search input with the esc key
|
|
35
|
+
- 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
|
|
36
|
+
- b02d5ea9: ZERO-3135: Add cancellation request images display in order cancellation item
|
|
37
|
+
- c82875bc: ZERO-3140: Fix style layout size
|
|
38
|
+
- 2d305aaf: ZERO-2935: Update Sentry configuration: remove hideSourceMaps option and add it to withPzConfig
|
|
39
|
+
- 6a0a0807: ZERO-3112: Update button
|
|
40
|
+
- 14d6b00c: ZERO-3122: Refactor error handling in login and registration forms to support nested error messages
|
|
41
|
+
- 121044ba: ZERO-3120: Add sample regex for sitemap with url extension like .xml.gz
|
|
42
|
+
|
|
43
|
+
### Patch Changes
|
|
44
|
+
|
|
45
|
+
- Updated dependencies [778aabf8]
|
|
46
|
+
- Updated dependencies [5dfeea04]
|
|
47
|
+
- Updated dependencies [2d9b2b2c]
|
|
48
|
+
- Updated dependencies [fdbf156f]
|
|
49
|
+
- Updated dependencies [fd4b74e9]
|
|
50
|
+
- Updated dependencies [f49bb74f]
|
|
51
|
+
- Updated dependencies [e9541a13]
|
|
52
|
+
- Updated dependencies [4d3deb4f]
|
|
53
|
+
- Updated dependencies [72fd4d67]
|
|
54
|
+
- Updated dependencies [c53ef7b9]
|
|
55
|
+
- Updated dependencies [64699d3f]
|
|
56
|
+
- Updated dependencies [0200d568]
|
|
57
|
+
- Updated dependencies [7727ae55]
|
|
58
|
+
- Updated dependencies [17f87524]
|
|
59
|
+
- Updated dependencies [65d3b862]
|
|
60
|
+
- Updated dependencies [bbe18b9f]
|
|
61
|
+
- Updated dependencies [4920742c]
|
|
62
|
+
- Updated dependencies [7e56d6b6]
|
|
63
|
+
- Updated dependencies [43c182ee]
|
|
64
|
+
- Updated dependencies [2d305aaf]
|
|
65
|
+
- Updated dependencies [4cc22c7c]
|
|
66
|
+
- Updated dependencies [eeb20bea]
|
|
67
|
+
- Updated dependencies [6a0a0807]
|
|
68
|
+
- Updated dependencies [f2c92d5c]
|
|
69
|
+
- Updated dependencies [7bd3d992]
|
|
70
|
+
- Updated dependencies [fdd255ee]
|
|
71
|
+
- Updated dependencies [49eeebfa]
|
|
72
|
+
- Updated dependencies [3f9b8d7e]
|
|
73
|
+
- @akinon/next@1.81.0-rc.0
|
|
74
|
+
- @akinon/pz-masterpass@1.81.0-rc.0
|
|
75
|
+
- @akinon/pz-checkout-gift-pack@1.81.0-rc.0
|
|
76
|
+
- @akinon/pz-one-click-checkout@1.81.0-rc.0
|
|
77
|
+
- @akinon/pz-basket-gift-pack@1.81.0-rc.0
|
|
78
|
+
- @akinon/pz-pay-on-delivery@1.81.0-rc.0
|
|
79
|
+
- @akinon/pz-credit-payment@1.81.0-rc.0
|
|
80
|
+
- @akinon/pz-click-collect@1.81.0-rc.0
|
|
81
|
+
- @akinon/pz-akifast@1.81.0-rc.0
|
|
82
|
+
- @akinon/pz-gpay@1.81.0-rc.0
|
|
83
|
+
- @akinon/pz-b2b@1.81.0-rc.0
|
|
84
|
+
- @akinon/pz-bkm@1.81.0-rc.0
|
|
85
|
+
- @akinon/pz-otp@1.81.0-rc.0
|
|
86
|
+
- @akinon/pz-tabby-extension@1.81.0-rc.0
|
|
87
|
+
- @akinon/pz-saved-card@1.81.0-rc.0
|
|
88
|
+
- @akinon/pz-tamara-extension@1.81.0-rc.0
|
|
89
|
+
|
|
3
90
|
## 1.80.0
|
|
4
91
|
|
|
5
92
|
### Minor Changes
|
|
@@ -30,22 +117,281 @@
|
|
|
30
117
|
|
|
31
118
|
### Patch Changes
|
|
32
119
|
|
|
33
|
-
- Updated dependencies [
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
120
|
+
- Updated dependencies [778aabf8]
|
|
121
|
+
- Updated dependencies [5dfeea04]
|
|
122
|
+
- Updated dependencies [2d9b2b2c]
|
|
123
|
+
- Updated dependencies [fdbf156f]
|
|
124
|
+
- Updated dependencies [fd4b74e9]
|
|
125
|
+
- Updated dependencies [f49bb74f]
|
|
126
|
+
- Updated dependencies [e9541a13]
|
|
127
|
+
- Updated dependencies [4d3deb4f]
|
|
128
|
+
- Updated dependencies [72fd4d67]
|
|
129
|
+
- Updated dependencies [c53ef7b9]
|
|
130
|
+
- Updated dependencies [64699d3f]
|
|
131
|
+
- Updated dependencies [0200d568]
|
|
132
|
+
- Updated dependencies [7727ae55]
|
|
133
|
+
- Updated dependencies [17f87524]
|
|
134
|
+
- Updated dependencies [65d3b862]
|
|
135
|
+
- Updated dependencies [bbe18b9f]
|
|
136
|
+
- Updated dependencies [4920742c]
|
|
137
|
+
- Updated dependencies [7e56d6b6]
|
|
138
|
+
- Updated dependencies [43c182ee]
|
|
139
|
+
- Updated dependencies [2d305aaf]
|
|
140
|
+
- Updated dependencies [4cc22c7c]
|
|
141
|
+
- Updated dependencies [eeb20bea]
|
|
142
|
+
- Updated dependencies [6a0a0807]
|
|
143
|
+
- Updated dependencies [f2c92d5c]
|
|
144
|
+
- Updated dependencies [7bd3d992]
|
|
145
|
+
- Updated dependencies [fdd255ee]
|
|
146
|
+
- Updated dependencies [49eeebfa]
|
|
147
|
+
- Updated dependencies [3f9b8d7e]
|
|
148
|
+
- Updated dependencies [7ab9e2fd]
|
|
149
|
+
- @akinon/next@1.80.0-rc.7
|
|
150
|
+
- @akinon/pz-masterpass@1.80.0-rc.7
|
|
151
|
+
- @akinon/pz-checkout-gift-pack@1.80.0-rc.7
|
|
152
|
+
- @akinon/pz-one-click-checkout@1.80.0-rc.7
|
|
153
|
+
- @akinon/pz-basket-gift-pack@1.80.0-rc.7
|
|
154
|
+
- @akinon/pz-pay-on-delivery@1.80.0-rc.7
|
|
155
|
+
- @akinon/pz-credit-payment@1.80.0-rc.7
|
|
156
|
+
- @akinon/pz-click-collect@1.80.0-rc.7
|
|
157
|
+
- @akinon/pz-akifast@1.80.0-rc.7
|
|
158
|
+
- @akinon/pz-gpay@1.80.0-rc.7
|
|
159
|
+
- @akinon/pz-b2b@1.80.0-rc.7
|
|
160
|
+
- @akinon/pz-bkm@1.80.0-rc.7
|
|
161
|
+
- @akinon/pz-otp@1.80.0-rc.7
|
|
162
|
+
- @akinon/pz-tabby-extension@1.80.0-rc.7
|
|
163
|
+
- @akinon/pz-saved-card@1.80.0-rc.7
|
|
164
|
+
- @akinon/pz-tamara-extension@1.80.0-rc.7
|
|
165
|
+
|
|
166
|
+
## 1.79.0-rc.6
|
|
167
|
+
|
|
168
|
+
### Patch Changes
|
|
169
|
+
|
|
170
|
+
- Updated dependencies [0200d568]
|
|
171
|
+
- @akinon/next@1.79.0-rc.6
|
|
172
|
+
- @akinon/pz-akifast@1.79.0-rc.6
|
|
173
|
+
- @akinon/pz-b2b@1.79.0-rc.6
|
|
174
|
+
- @akinon/pz-basket-gift-pack@1.79.0-rc.6
|
|
175
|
+
- @akinon/pz-bkm@1.79.0-rc.6
|
|
176
|
+
- @akinon/pz-checkout-gift-pack@1.79.0-rc.6
|
|
177
|
+
- @akinon/pz-click-collect@1.79.0-rc.6
|
|
178
|
+
- @akinon/pz-credit-payment@1.79.0-rc.6
|
|
179
|
+
- @akinon/pz-gpay@1.79.0-rc.6
|
|
180
|
+
- @akinon/pz-masterpass@1.79.0-rc.6
|
|
181
|
+
- @akinon/pz-one-click-checkout@1.79.0-rc.6
|
|
182
|
+
- @akinon/pz-otp@1.79.0-rc.6
|
|
183
|
+
- @akinon/pz-pay-on-delivery@1.79.0-rc.6
|
|
184
|
+
- @akinon/pz-saved-card@1.79.0-rc.6
|
|
185
|
+
- @akinon/pz-tabby-extension@1.79.0-rc.6
|
|
186
|
+
|
|
187
|
+
## 1.79.0-rc.5
|
|
188
|
+
|
|
189
|
+
### Patch Changes
|
|
190
|
+
|
|
191
|
+
- Updated dependencies [778aabf8]
|
|
192
|
+
- @akinon/next@1.79.0-rc.5
|
|
193
|
+
- @akinon/pz-akifast@1.79.0-rc.5
|
|
194
|
+
- @akinon/pz-b2b@1.79.0-rc.5
|
|
195
|
+
- @akinon/pz-basket-gift-pack@1.79.0-rc.5
|
|
196
|
+
- @akinon/pz-bkm@1.79.0-rc.5
|
|
197
|
+
- @akinon/pz-checkout-gift-pack@1.79.0-rc.5
|
|
198
|
+
- @akinon/pz-click-collect@1.79.0-rc.5
|
|
199
|
+
- @akinon/pz-credit-payment@1.79.0-rc.5
|
|
200
|
+
- @akinon/pz-gpay@1.79.0-rc.5
|
|
201
|
+
- @akinon/pz-masterpass@1.79.0-rc.5
|
|
202
|
+
- @akinon/pz-one-click-checkout@1.79.0-rc.5
|
|
203
|
+
- @akinon/pz-otp@1.79.0-rc.5
|
|
204
|
+
- @akinon/pz-pay-on-delivery@1.79.0-rc.5
|
|
205
|
+
- @akinon/pz-saved-card@1.79.0-rc.5
|
|
206
|
+
- @akinon/pz-tabby-extension@1.79.0-rc.5
|
|
207
|
+
|
|
208
|
+
## 1.79.0-rc.4
|
|
209
|
+
|
|
210
|
+
### Minor Changes
|
|
211
|
+
|
|
212
|
+
- 7a1e1f73: ZERO-3138: Close the search input with the esc key
|
|
213
|
+
- c82875bc: ZERO-3140: Fix style layout size
|
|
214
|
+
|
|
215
|
+
### Patch Changes
|
|
216
|
+
|
|
217
|
+
- Updated dependencies [fdbf156f]
|
|
218
|
+
- @akinon/pz-masterpass@1.79.0-rc.4
|
|
219
|
+
- @akinon/next@1.79.0-rc.4
|
|
220
|
+
- @akinon/pz-akifast@1.79.0-rc.4
|
|
221
|
+
- @akinon/pz-b2b@1.79.0-rc.4
|
|
222
|
+
- @akinon/pz-basket-gift-pack@1.79.0-rc.4
|
|
223
|
+
- @akinon/pz-bkm@1.79.0-rc.4
|
|
224
|
+
- @akinon/pz-checkout-gift-pack@1.79.0-rc.4
|
|
225
|
+
- @akinon/pz-click-collect@1.79.0-rc.4
|
|
226
|
+
- @akinon/pz-credit-payment@1.79.0-rc.4
|
|
227
|
+
- @akinon/pz-gpay@1.79.0-rc.4
|
|
228
|
+
- @akinon/pz-one-click-checkout@1.79.0-rc.4
|
|
229
|
+
- @akinon/pz-otp@1.79.0-rc.4
|
|
230
|
+
- @akinon/pz-pay-on-delivery@1.79.0-rc.4
|
|
231
|
+
- @akinon/pz-saved-card@1.79.0-rc.4
|
|
232
|
+
- @akinon/pz-tabby-extension@1.79.0-rc.4
|
|
233
|
+
|
|
234
|
+
## 1.79.0-rc.3
|
|
235
|
+
|
|
236
|
+
### Minor Changes
|
|
237
|
+
|
|
238
|
+
- e8dcbe3c: ZERO-3112: Update button component
|
|
239
|
+
- fd4b74e9: ZERO-3126: add reset checkout state query
|
|
240
|
+
- 82174637: ZERO-2887: Add LoaderSpinner to Filters component
|
|
241
|
+
- 4d3deb4f: ZERO-2935: sentry 8 upgrade
|
|
242
|
+
- 64699d3f: ZERO-2761: Fix invalid import for plugin module
|
|
243
|
+
- 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
|
|
244
|
+
- b02d5ea9: ZERO-3135: Add cancellation request images display in order cancellation item
|
|
245
|
+
- 2d305aaf: ZERO-2935: Update Sentry configuration: remove hideSourceMaps option and add it to withPzConfig
|
|
246
|
+
- 6a0a0807: ZERO-3112: Update button
|
|
247
|
+
- 14d6b00c: ZERO-3122: Refactor error handling in login and registration forms to support nested error messages
|
|
248
|
+
- 121044ba: ZERO-3120: Add sample regex for sitemap with url extension like .xml.gz
|
|
249
|
+
|
|
250
|
+
### Patch Changes
|
|
251
|
+
|
|
252
|
+
- Updated dependencies [5dfeea04]
|
|
253
|
+
- Updated dependencies [2d9b2b2c]
|
|
254
|
+
- Updated dependencies [fd4b74e9]
|
|
255
|
+
- Updated dependencies [f49bb74f]
|
|
256
|
+
- Updated dependencies [e9541a13]
|
|
257
|
+
- Updated dependencies [4d3deb4f]
|
|
258
|
+
- Updated dependencies [72fd4d67]
|
|
259
|
+
- Updated dependencies [c53ef7b9]
|
|
260
|
+
- Updated dependencies [64699d3f]
|
|
261
|
+
- Updated dependencies [7727ae55]
|
|
262
|
+
- Updated dependencies [17f87524]
|
|
263
|
+
- Updated dependencies [65d3b862]
|
|
264
|
+
- Updated dependencies [bbe18b9f]
|
|
265
|
+
- Updated dependencies [4920742c]
|
|
266
|
+
- Updated dependencies [7e56d6b6]
|
|
267
|
+
- Updated dependencies [43c182ee]
|
|
268
|
+
- Updated dependencies [2d305aaf]
|
|
269
|
+
- Updated dependencies [4cc22c7c]
|
|
270
|
+
- Updated dependencies [eeb20bea]
|
|
271
|
+
- Updated dependencies [6a0a0807]
|
|
272
|
+
- Updated dependencies [f2c92d5c]
|
|
273
|
+
- Updated dependencies [7bd3d992]
|
|
274
|
+
- Updated dependencies [fdd255ee]
|
|
275
|
+
- Updated dependencies [59fa21ce]
|
|
276
|
+
- Updated dependencies [49eeebfa]
|
|
277
|
+
- Updated dependencies [3f9b8d7e]
|
|
278
|
+
- @akinon/next@1.79.0-rc.3
|
|
279
|
+
- @akinon/pz-checkout-gift-pack@1.79.0-rc.3
|
|
280
|
+
- @akinon/pz-one-click-checkout@1.79.0-rc.3
|
|
281
|
+
- @akinon/pz-basket-gift-pack@1.79.0-rc.3
|
|
282
|
+
- @akinon/pz-pay-on-delivery@1.79.0-rc.3
|
|
283
|
+
- @akinon/pz-credit-payment@1.79.0-rc.3
|
|
284
|
+
- @akinon/pz-click-collect@1.79.0-rc.3
|
|
285
|
+
- @akinon/pz-masterpass@1.79.0-rc.3
|
|
286
|
+
- @akinon/pz-akifast@1.79.0-rc.3
|
|
287
|
+
- @akinon/pz-gpay@1.79.0-rc.3
|
|
288
|
+
- @akinon/pz-b2b@1.79.0-rc.3
|
|
289
|
+
- @akinon/pz-bkm@1.79.0-rc.3
|
|
290
|
+
- @akinon/pz-otp@1.79.0-rc.3
|
|
291
|
+
- @akinon/pz-tabby-extension@1.79.0-rc.3
|
|
292
|
+
- @akinon/pz-saved-card@1.79.0-rc.3
|
|
293
|
+
|
|
294
|
+
## 1.79.0-rc.2
|
|
295
|
+
|
|
296
|
+
### Minor Changes
|
|
297
|
+
|
|
298
|
+
- b02d5ea9: ZERO-3135: Add cancellation request images display in order cancellation item
|
|
299
|
+
|
|
300
|
+
### Patch Changes
|
|
301
|
+
|
|
302
|
+
- @akinon/next@1.79.0-rc.2
|
|
303
|
+
- @akinon/pz-akifast@1.79.0-rc.2
|
|
304
|
+
- @akinon/pz-b2b@1.79.0-rc.2
|
|
305
|
+
- @akinon/pz-basket-gift-pack@1.79.0-rc.2
|
|
306
|
+
- @akinon/pz-bkm@1.79.0-rc.2
|
|
307
|
+
- @akinon/pz-checkout-gift-pack@1.79.0-rc.2
|
|
308
|
+
- @akinon/pz-click-collect@1.79.0-rc.2
|
|
309
|
+
- @akinon/pz-credit-payment@1.79.0-rc.2
|
|
310
|
+
- @akinon/pz-gpay@1.79.0-rc.2
|
|
311
|
+
- @akinon/pz-masterpass@1.79.0-rc.2
|
|
312
|
+
- @akinon/pz-one-click-checkout@1.79.0-rc.2
|
|
313
|
+
- @akinon/pz-otp@1.79.0-rc.2
|
|
314
|
+
- @akinon/pz-pay-on-delivery@1.79.0-rc.2
|
|
315
|
+
- @akinon/pz-saved-card@1.79.0-rc.2
|
|
316
|
+
- @akinon/pz-tabby-extension@1.79.0-rc.2
|
|
317
|
+
|
|
318
|
+
## 1.79.0-rc.1
|
|
319
|
+
|
|
320
|
+
### Patch Changes
|
|
321
|
+
|
|
322
|
+
- Updated dependencies [4cc22c7c]
|
|
323
|
+
- @akinon/next@1.79.0-rc.1
|
|
324
|
+
- @akinon/pz-akifast@1.79.0-rc.1
|
|
325
|
+
- @akinon/pz-b2b@1.79.0-rc.1
|
|
326
|
+
- @akinon/pz-basket-gift-pack@1.79.0-rc.1
|
|
327
|
+
- @akinon/pz-bkm@1.79.0-rc.1
|
|
328
|
+
- @akinon/pz-checkout-gift-pack@1.79.0-rc.1
|
|
329
|
+
- @akinon/pz-click-collect@1.79.0-rc.1
|
|
330
|
+
- @akinon/pz-credit-payment@1.79.0-rc.1
|
|
331
|
+
- @akinon/pz-gpay@1.79.0-rc.1
|
|
332
|
+
- @akinon/pz-masterpass@1.79.0-rc.1
|
|
333
|
+
- @akinon/pz-one-click-checkout@1.79.0-rc.1
|
|
334
|
+
- @akinon/pz-otp@1.79.0-rc.1
|
|
335
|
+
- @akinon/pz-pay-on-delivery@1.79.0-rc.1
|
|
336
|
+
- @akinon/pz-saved-card@1.79.0-rc.1
|
|
337
|
+
- @akinon/pz-tabby-extension@1.79.0-rc.1
|
|
338
|
+
|
|
339
|
+
## 1.79.0-rc.0
|
|
340
|
+
|
|
341
|
+
### Minor Changes
|
|
342
|
+
|
|
343
|
+
- e8dcbe3c: ZERO-3112: Update button component
|
|
344
|
+
- fd4b74e9: ZERO-3126: add reset checkout state query
|
|
345
|
+
- 82174637: ZERO-2887: Add LoaderSpinner to Filters component
|
|
346
|
+
- 4d3deb4f: ZERO-2935: sentry 8 upgrade
|
|
347
|
+
- 64699d3f: ZERO-2761: Fix invalid import for plugin module
|
|
348
|
+
- 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
|
|
349
|
+
- 2d305aaf: ZERO-2935: Update Sentry configuration: remove hideSourceMaps option and add it to withPzConfig
|
|
350
|
+
- 6a0a0807: ZERO-3112: Update button
|
|
351
|
+
- 14d6b00c: ZERO-3122: Refactor error handling in login and registration forms to support nested error messages
|
|
352
|
+
- 121044ba: ZERO-3120: Add sample regex for sitemap with url extension like .xml.gz
|
|
353
|
+
|
|
354
|
+
### Patch Changes
|
|
355
|
+
|
|
356
|
+
- Updated dependencies [5dfeea04]
|
|
357
|
+
- Updated dependencies [2d9b2b2c]
|
|
358
|
+
- Updated dependencies [fd4b74e9]
|
|
359
|
+
- Updated dependencies [f49bb74f]
|
|
360
|
+
- Updated dependencies [e9541a13]
|
|
361
|
+
- Updated dependencies [4d3deb4f]
|
|
362
|
+
- Updated dependencies [72fd4d67]
|
|
363
|
+
- Updated dependencies [c53ef7b9]
|
|
364
|
+
- Updated dependencies [64699d3f]
|
|
365
|
+
- Updated dependencies [7727ae55]
|
|
366
|
+
- Updated dependencies [17f87524]
|
|
367
|
+
- Updated dependencies [65d3b862]
|
|
368
|
+
- Updated dependencies [bbe18b9f]
|
|
369
|
+
- Updated dependencies [4920742c]
|
|
370
|
+
- Updated dependencies [7e56d6b6]
|
|
371
|
+
- Updated dependencies [43c182ee]
|
|
372
|
+
- Updated dependencies [2d305aaf]
|
|
373
|
+
- Updated dependencies [eeb20bea]
|
|
374
|
+
- Updated dependencies [6a0a0807]
|
|
375
|
+
- Updated dependencies [f2c92d5c]
|
|
376
|
+
- Updated dependencies [7bd3d992]
|
|
377
|
+
- Updated dependencies [fdd255ee]
|
|
378
|
+
- Updated dependencies [49eeebfa]
|
|
379
|
+
- Updated dependencies [3f9b8d7e]
|
|
380
|
+
- @akinon/next@1.79.0-rc.0
|
|
381
|
+
- @akinon/pz-checkout-gift-pack@1.79.0-rc.0
|
|
382
|
+
- @akinon/pz-one-click-checkout@1.79.0-rc.0
|
|
383
|
+
- @akinon/pz-basket-gift-pack@1.79.0-rc.0
|
|
384
|
+
- @akinon/pz-pay-on-delivery@1.79.0-rc.0
|
|
385
|
+
- @akinon/pz-credit-payment@1.79.0-rc.0
|
|
386
|
+
- @akinon/pz-click-collect@1.79.0-rc.0
|
|
387
|
+
- @akinon/pz-masterpass@1.79.0-rc.0
|
|
388
|
+
- @akinon/pz-akifast@1.79.0-rc.0
|
|
389
|
+
- @akinon/pz-gpay@1.79.0-rc.0
|
|
390
|
+
- @akinon/pz-b2b@1.79.0-rc.0
|
|
391
|
+
- @akinon/pz-bkm@1.79.0-rc.0
|
|
392
|
+
- @akinon/pz-otp@1.79.0-rc.0
|
|
393
|
+
- @akinon/pz-tabby-extension@1.79.0-rc.0
|
|
394
|
+
- @akinon/pz-saved-card@1.79.0-rc.0
|
|
49
395
|
|
|
50
396
|
## 1.78.0
|
|
51
397
|
|
|
@@ -247,21 +593,161 @@
|
|
|
247
593
|
### Patch Changes
|
|
248
594
|
|
|
249
595
|
- Updated dependencies [f34454a]
|
|
250
|
-
- @akinon/next@1.71.0
|
|
251
|
-
- @akinon/pz-akifast@1.71.0
|
|
252
|
-
- @akinon/pz-b2b@1.71.0
|
|
253
|
-
- @akinon/pz-basket-gift-pack@1.71.0
|
|
254
|
-
- @akinon/pz-bkm@1.71.0
|
|
255
|
-
- @akinon/pz-checkout-gift-pack@1.71.0
|
|
256
|
-
- @akinon/pz-click-collect@1.71.0
|
|
257
|
-
- @akinon/pz-credit-payment@1.71.0
|
|
258
|
-
- @akinon/pz-gpay@1.71.0
|
|
259
|
-
- @akinon/pz-masterpass@1.71.0
|
|
260
|
-
- @akinon/pz-one-click-checkout@1.71.0
|
|
261
|
-
- @akinon/pz-otp@1.71.0
|
|
262
|
-
- @akinon/pz-pay-on-delivery@1.71.0
|
|
263
|
-
- @akinon/pz-saved-card@1.71.0
|
|
264
|
-
- @akinon/pz-tabby-extension@1.71.0
|
|
596
|
+
- @akinon/next@1.71.0-rc.6
|
|
597
|
+
- @akinon/pz-akifast@1.71.0-rc.6
|
|
598
|
+
- @akinon/pz-b2b@1.71.0-rc.6
|
|
599
|
+
- @akinon/pz-basket-gift-pack@1.71.0-rc.6
|
|
600
|
+
- @akinon/pz-bkm@1.71.0-rc.6
|
|
601
|
+
- @akinon/pz-checkout-gift-pack@1.71.0-rc.6
|
|
602
|
+
- @akinon/pz-click-collect@1.71.0-rc.6
|
|
603
|
+
- @akinon/pz-credit-payment@1.71.0-rc.6
|
|
604
|
+
- @akinon/pz-gpay@1.71.0-rc.6
|
|
605
|
+
- @akinon/pz-masterpass@1.71.0-rc.6
|
|
606
|
+
- @akinon/pz-one-click-checkout@1.71.0-rc.6
|
|
607
|
+
- @akinon/pz-otp@1.71.0-rc.6
|
|
608
|
+
- @akinon/pz-pay-on-delivery@1.71.0-rc.6
|
|
609
|
+
- @akinon/pz-saved-card@1.71.0-rc.6
|
|
610
|
+
- @akinon/pz-tabby-extension@1.71.0-rc.6
|
|
611
|
+
|
|
612
|
+
## 1.71.0-rc.5
|
|
613
|
+
|
|
614
|
+
### Patch Changes
|
|
615
|
+
|
|
616
|
+
- Updated dependencies [0ab91e5]
|
|
617
|
+
- @akinon/pz-akifast@1.71.0-rc.5
|
|
618
|
+
- @akinon/next@1.71.0-rc.5
|
|
619
|
+
- @akinon/pz-b2b@1.71.0-rc.5
|
|
620
|
+
- @akinon/pz-basket-gift-pack@1.71.0-rc.5
|
|
621
|
+
- @akinon/pz-bkm@1.71.0-rc.5
|
|
622
|
+
- @akinon/pz-checkout-gift-pack@1.71.0-rc.5
|
|
623
|
+
- @akinon/pz-click-collect@1.71.0-rc.5
|
|
624
|
+
- @akinon/pz-credit-payment@1.71.0-rc.5
|
|
625
|
+
- @akinon/pz-gpay@1.71.0-rc.5
|
|
626
|
+
- @akinon/pz-masterpass@1.71.0-rc.5
|
|
627
|
+
- @akinon/pz-one-click-checkout@1.71.0-rc.5
|
|
628
|
+
- @akinon/pz-otp@1.71.0-rc.5
|
|
629
|
+
- @akinon/pz-pay-on-delivery@1.71.0-rc.5
|
|
630
|
+
- @akinon/pz-saved-card@1.71.0-rc.5
|
|
631
|
+
- @akinon/pz-tabby-extension@1.71.0-rc.5
|
|
632
|
+
|
|
633
|
+
## 1.71.0-rc.4
|
|
634
|
+
|
|
635
|
+
### Minor Changes
|
|
636
|
+
|
|
637
|
+
- 7d2d66e: ZERO-3012: Upgrade version for tailwindcss
|
|
638
|
+
|
|
639
|
+
### Patch Changes
|
|
640
|
+
|
|
641
|
+
- @akinon/next@1.71.0-rc.4
|
|
642
|
+
- @akinon/pz-akifast@1.71.0-rc.4
|
|
643
|
+
- @akinon/pz-b2b@1.71.0-rc.4
|
|
644
|
+
- @akinon/pz-basket-gift-pack@1.71.0-rc.4
|
|
645
|
+
- @akinon/pz-bkm@1.71.0-rc.4
|
|
646
|
+
- @akinon/pz-checkout-gift-pack@1.71.0-rc.4
|
|
647
|
+
- @akinon/pz-click-collect@1.71.0-rc.4
|
|
648
|
+
- @akinon/pz-credit-payment@1.71.0-rc.4
|
|
649
|
+
- @akinon/pz-gpay@1.71.0-rc.4
|
|
650
|
+
- @akinon/pz-masterpass@1.71.0-rc.4
|
|
651
|
+
- @akinon/pz-one-click-checkout@1.71.0-rc.4
|
|
652
|
+
- @akinon/pz-otp@1.71.0-rc.4
|
|
653
|
+
- @akinon/pz-pay-on-delivery@1.71.0-rc.4
|
|
654
|
+
- @akinon/pz-saved-card@1.71.0-rc.4
|
|
655
|
+
- @akinon/pz-tabby-extension@1.71.0-rc.4
|
|
656
|
+
|
|
657
|
+
## 1.71.0-rc.3
|
|
658
|
+
|
|
659
|
+
### Minor Changes
|
|
660
|
+
|
|
661
|
+
- 3344bca: ZERO-3013: Enable web vitals tracking in settings.js
|
|
662
|
+
|
|
663
|
+
### Patch Changes
|
|
664
|
+
|
|
665
|
+
- Updated dependencies [3344bca]
|
|
666
|
+
- @akinon/next@1.71.0-rc.3
|
|
667
|
+
- @akinon/pz-akifast@1.71.0-rc.3
|
|
668
|
+
- @akinon/pz-b2b@1.71.0-rc.3
|
|
669
|
+
- @akinon/pz-basket-gift-pack@1.71.0-rc.3
|
|
670
|
+
- @akinon/pz-bkm@1.71.0-rc.3
|
|
671
|
+
- @akinon/pz-checkout-gift-pack@1.71.0-rc.3
|
|
672
|
+
- @akinon/pz-click-collect@1.71.0-rc.3
|
|
673
|
+
- @akinon/pz-credit-payment@1.71.0-rc.3
|
|
674
|
+
- @akinon/pz-gpay@1.71.0-rc.3
|
|
675
|
+
- @akinon/pz-masterpass@1.71.0-rc.3
|
|
676
|
+
- @akinon/pz-one-click-checkout@1.71.0-rc.3
|
|
677
|
+
- @akinon/pz-otp@1.71.0-rc.3
|
|
678
|
+
- @akinon/pz-pay-on-delivery@1.71.0-rc.3
|
|
679
|
+
- @akinon/pz-saved-card@1.71.0-rc.3
|
|
680
|
+
- @akinon/pz-tabby-extension@1.71.0-rc.3
|
|
681
|
+
|
|
682
|
+
## 1.71.0-rc.2
|
|
683
|
+
|
|
684
|
+
### Patch Changes
|
|
685
|
+
|
|
686
|
+
- Updated dependencies [56cdddc]
|
|
687
|
+
- @akinon/next@1.71.0-rc.2
|
|
688
|
+
- @akinon/pz-akifast@1.71.0-rc.2
|
|
689
|
+
- @akinon/pz-b2b@1.71.0-rc.2
|
|
690
|
+
- @akinon/pz-basket-gift-pack@1.71.0-rc.2
|
|
691
|
+
- @akinon/pz-bkm@1.71.0-rc.2
|
|
692
|
+
- @akinon/pz-checkout-gift-pack@1.71.0-rc.2
|
|
693
|
+
- @akinon/pz-click-collect@1.71.0-rc.2
|
|
694
|
+
- @akinon/pz-credit-payment@1.71.0-rc.2
|
|
695
|
+
- @akinon/pz-gpay@1.71.0-rc.2
|
|
696
|
+
- @akinon/pz-masterpass@1.71.0-rc.2
|
|
697
|
+
- @akinon/pz-one-click-checkout@1.71.0-rc.2
|
|
698
|
+
- @akinon/pz-otp@1.71.0-rc.2
|
|
699
|
+
- @akinon/pz-pay-on-delivery@1.71.0-rc.2
|
|
700
|
+
- @akinon/pz-saved-card@1.71.0-rc.2
|
|
701
|
+
- @akinon/pz-tabby-extension@1.71.0-rc.2
|
|
702
|
+
|
|
703
|
+
## 1.71.0-rc.1
|
|
704
|
+
|
|
705
|
+
### Patch Changes
|
|
706
|
+
|
|
707
|
+
- Updated dependencies [9a50730]
|
|
708
|
+
- @akinon/next@1.71.0-rc.1
|
|
709
|
+
- @akinon/pz-akifast@1.71.0-rc.1
|
|
710
|
+
- @akinon/pz-b2b@1.71.0-rc.1
|
|
711
|
+
- @akinon/pz-basket-gift-pack@1.71.0-rc.1
|
|
712
|
+
- @akinon/pz-bkm@1.71.0-rc.1
|
|
713
|
+
- @akinon/pz-checkout-gift-pack@1.71.0-rc.1
|
|
714
|
+
- @akinon/pz-click-collect@1.71.0-rc.1
|
|
715
|
+
- @akinon/pz-credit-payment@1.71.0-rc.1
|
|
716
|
+
- @akinon/pz-gpay@1.71.0-rc.1
|
|
717
|
+
- @akinon/pz-masterpass@1.71.0-rc.1
|
|
718
|
+
- @akinon/pz-one-click-checkout@1.71.0-rc.1
|
|
719
|
+
- @akinon/pz-otp@1.71.0-rc.1
|
|
720
|
+
- @akinon/pz-pay-on-delivery@1.71.0-rc.1
|
|
721
|
+
- @akinon/pz-saved-card@1.71.0-rc.1
|
|
722
|
+
- @akinon/pz-tabby-extension@1.71.0-rc.1
|
|
723
|
+
|
|
724
|
+
## 1.71.0-rc.0
|
|
725
|
+
|
|
726
|
+
### Minor Changes
|
|
727
|
+
|
|
728
|
+
- 4d3deb4: ZERO-2935: sentry 8 upgrade
|
|
729
|
+
|
|
730
|
+
### Patch Changes
|
|
731
|
+
|
|
732
|
+
- Updated dependencies [3bfa12a]
|
|
733
|
+
- Updated dependencies [4d3deb4]
|
|
734
|
+
- Updated dependencies [3010514]
|
|
735
|
+
- Updated dependencies [ca774b3]
|
|
736
|
+
- @akinon/next@1.71.0-rc.0
|
|
737
|
+
- @akinon/pz-akifast@1.71.0-rc.0
|
|
738
|
+
- @akinon/pz-b2b@1.71.0-rc.0
|
|
739
|
+
- @akinon/pz-basket-gift-pack@1.71.0-rc.0
|
|
740
|
+
- @akinon/pz-bkm@1.71.0-rc.0
|
|
741
|
+
- @akinon/pz-checkout-gift-pack@1.71.0-rc.0
|
|
742
|
+
- @akinon/pz-click-collect@1.71.0-rc.0
|
|
743
|
+
- @akinon/pz-credit-payment@1.71.0-rc.0
|
|
744
|
+
- @akinon/pz-gpay@1.71.0-rc.0
|
|
745
|
+
- @akinon/pz-masterpass@1.71.0-rc.0
|
|
746
|
+
- @akinon/pz-one-click-checkout@1.71.0-rc.0
|
|
747
|
+
- @akinon/pz-otp@1.71.0-rc.0
|
|
748
|
+
- @akinon/pz-pay-on-delivery@1.71.0-rc.0
|
|
749
|
+
- @akinon/pz-saved-card@1.71.0-rc.0
|
|
750
|
+
- @akinon/pz-tabby-extension@1.71.0-rc.0
|
|
265
751
|
|
|
266
752
|
## 1.70.0
|
|
267
753
|
|
|
@@ -292,32 +778,249 @@
|
|
|
292
778
|
|
|
293
779
|
### Minor Changes
|
|
294
780
|
|
|
781
|
+
- 4d3deb4: ZERO-2935: sentry 8 upgrade
|
|
782
|
+
- f046f8e: ZERO-2575: update version for react-number-format
|
|
783
|
+
|
|
784
|
+
### Patch Changes
|
|
785
|
+
|
|
786
|
+
- Updated dependencies [3bfa12a]
|
|
787
|
+
- Updated dependencies [4d3deb4]
|
|
788
|
+
- Updated dependencies [3010514]
|
|
789
|
+
- Updated dependencies [ca774b3]
|
|
790
|
+
- Updated dependencies [f046f8e]
|
|
791
|
+
- @akinon/next@1.69.0-rc.9
|
|
792
|
+
- @akinon/pz-akifast@1.69.0-rc.9
|
|
793
|
+
- @akinon/pz-b2b@1.69.0-rc.9
|
|
794
|
+
- @akinon/pz-basket-gift-pack@1.69.0-rc.9
|
|
795
|
+
- @akinon/pz-bkm@1.69.0-rc.9
|
|
796
|
+
- @akinon/pz-checkout-gift-pack@1.69.0-rc.9
|
|
797
|
+
- @akinon/pz-click-collect@1.69.0-rc.9
|
|
798
|
+
- @akinon/pz-credit-payment@1.69.0-rc.9
|
|
799
|
+
- @akinon/pz-gpay@1.69.0-rc.9
|
|
800
|
+
- @akinon/pz-masterpass@1.69.0-rc.9
|
|
801
|
+
- @akinon/pz-one-click-checkout@1.69.0-rc.9
|
|
802
|
+
- @akinon/pz-otp@1.69.0-rc.9
|
|
803
|
+
- @akinon/pz-pay-on-delivery@1.69.0-rc.9
|
|
804
|
+
- @akinon/pz-saved-card@1.69.0-rc.9
|
|
805
|
+
- @akinon/pz-tabby-extension@1.69.0-rc.9
|
|
806
|
+
|
|
807
|
+
## 1.69.0-rc.8
|
|
808
|
+
|
|
809
|
+
### Patch Changes
|
|
810
|
+
|
|
811
|
+
- Updated dependencies [3010514]
|
|
812
|
+
- Updated dependencies [ca774b3]
|
|
813
|
+
- @akinon/next@1.69.0-rc.8
|
|
814
|
+
- @akinon/pz-akifast@1.69.0-rc.8
|
|
815
|
+
- @akinon/pz-b2b@1.69.0-rc.8
|
|
816
|
+
- @akinon/pz-basket-gift-pack@1.69.0-rc.8
|
|
817
|
+
- @akinon/pz-bkm@1.69.0-rc.8
|
|
818
|
+
- @akinon/pz-checkout-gift-pack@1.69.0-rc.8
|
|
819
|
+
- @akinon/pz-click-collect@1.69.0-rc.8
|
|
820
|
+
- @akinon/pz-credit-payment@1.69.0-rc.8
|
|
821
|
+
- @akinon/pz-gpay@1.69.0-rc.8
|
|
822
|
+
- @akinon/pz-masterpass@1.69.0-rc.8
|
|
823
|
+
- @akinon/pz-one-click-checkout@1.69.0-rc.8
|
|
824
|
+
- @akinon/pz-otp@1.69.0-rc.8
|
|
825
|
+
- @akinon/pz-pay-on-delivery@1.69.0-rc.8
|
|
826
|
+
- @akinon/pz-saved-card@1.69.0-rc.8
|
|
827
|
+
- @akinon/pz-tabby-extension@1.69.0-rc.8
|
|
828
|
+
|
|
829
|
+
## 1.69.0-rc.7
|
|
830
|
+
|
|
831
|
+
### Patch Changes
|
|
832
|
+
|
|
833
|
+
- Updated dependencies [3bfa12a]
|
|
834
|
+
- @akinon/next@1.69.0-rc.7
|
|
835
|
+
- @akinon/pz-akifast@1.69.0-rc.7
|
|
836
|
+
- @akinon/pz-b2b@1.69.0-rc.7
|
|
837
|
+
- @akinon/pz-basket-gift-pack@1.69.0-rc.7
|
|
838
|
+
- @akinon/pz-bkm@1.69.0-rc.7
|
|
839
|
+
- @akinon/pz-checkout-gift-pack@1.69.0-rc.7
|
|
840
|
+
- @akinon/pz-click-collect@1.69.0-rc.7
|
|
841
|
+
- @akinon/pz-credit-payment@1.69.0-rc.7
|
|
842
|
+
- @akinon/pz-gpay@1.69.0-rc.7
|
|
843
|
+
- @akinon/pz-masterpass@1.69.0-rc.7
|
|
844
|
+
- @akinon/pz-one-click-checkout@1.69.0-rc.7
|
|
845
|
+
- @akinon/pz-otp@1.69.0-rc.7
|
|
846
|
+
- @akinon/pz-pay-on-delivery@1.69.0-rc.7
|
|
847
|
+
- @akinon/pz-saved-card@1.69.0-rc.7
|
|
848
|
+
- @akinon/pz-tabby-extension@1.69.0-rc.7
|
|
849
|
+
|
|
850
|
+
## 1.69.0-rc.6
|
|
851
|
+
|
|
852
|
+
### Minor Changes
|
|
853
|
+
|
|
854
|
+
- 4d3deb4: ZERO-2935: sentry 8 upgrade
|
|
295
855
|
- 063da74: ZERO-3010: Remove pz-iyzico-saved-card package
|
|
296
856
|
- cbdb0c8: ZERO-3010: Move pretty url page into project
|
|
297
857
|
- 80c869b: ZERO-3010: Remove savedCardMiddleware from redux middlewares
|
|
298
858
|
|
|
299
859
|
### Patch Changes
|
|
300
860
|
|
|
861
|
+
- Updated dependencies [4d3deb4]
|
|
301
862
|
- Updated dependencies [063da74]
|
|
302
863
|
- Updated dependencies [72da021]
|
|
303
864
|
- Updated dependencies [5632a99]
|
|
304
865
|
- Updated dependencies [cbdb0c8]
|
|
305
866
|
- Updated dependencies [80c869b]
|
|
306
|
-
- @akinon/next@1.69.0
|
|
307
|
-
- @akinon/pz-akifast@1.69.0
|
|
308
|
-
- @akinon/pz-b2b@1.69.0
|
|
309
|
-
- @akinon/pz-basket-gift-pack@1.69.0
|
|
310
|
-
- @akinon/pz-bkm@1.69.0
|
|
311
|
-
- @akinon/pz-checkout-gift-pack@1.69.0
|
|
312
|
-
- @akinon/pz-click-collect@1.69.0
|
|
313
|
-
- @akinon/pz-credit-payment@1.69.0
|
|
314
|
-
- @akinon/pz-gpay@1.69.0
|
|
315
|
-
- @akinon/pz-masterpass@1.69.0
|
|
316
|
-
- @akinon/pz-one-click-checkout@1.69.0
|
|
317
|
-
- @akinon/pz-otp@1.69.0
|
|
318
|
-
- @akinon/pz-pay-on-delivery@1.69.0
|
|
319
|
-
- @akinon/pz-saved-card@1.69.0
|
|
320
|
-
- @akinon/pz-tabby-extension@1.69.0
|
|
867
|
+
- @akinon/next@1.69.0-rc.6
|
|
868
|
+
- @akinon/pz-akifast@1.69.0-rc.6
|
|
869
|
+
- @akinon/pz-b2b@1.69.0-rc.6
|
|
870
|
+
- @akinon/pz-basket-gift-pack@1.69.0-rc.6
|
|
871
|
+
- @akinon/pz-bkm@1.69.0-rc.6
|
|
872
|
+
- @akinon/pz-checkout-gift-pack@1.69.0-rc.6
|
|
873
|
+
- @akinon/pz-click-collect@1.69.0-rc.6
|
|
874
|
+
- @akinon/pz-credit-payment@1.69.0-rc.6
|
|
875
|
+
- @akinon/pz-gpay@1.69.0-rc.6
|
|
876
|
+
- @akinon/pz-masterpass@1.69.0-rc.6
|
|
877
|
+
- @akinon/pz-one-click-checkout@1.69.0-rc.6
|
|
878
|
+
- @akinon/pz-otp@1.69.0-rc.6
|
|
879
|
+
- @akinon/pz-pay-on-delivery@1.69.0-rc.6
|
|
880
|
+
- @akinon/pz-saved-card@1.69.0-rc.6
|
|
881
|
+
- @akinon/pz-tabby-extension@1.69.0-rc.6
|
|
882
|
+
|
|
883
|
+
## 1.69.0-rc.5
|
|
884
|
+
|
|
885
|
+
### Minor Changes
|
|
886
|
+
|
|
887
|
+
- 80c869b: ZERO-3010: Remove savedCardMiddleware from redux middlewares
|
|
888
|
+
|
|
889
|
+
### Patch Changes
|
|
890
|
+
|
|
891
|
+
- Updated dependencies [80c869b]
|
|
892
|
+
- @akinon/next@1.69.0-rc.5
|
|
893
|
+
- @akinon/pz-akifast@1.69.0-rc.5
|
|
894
|
+
- @akinon/pz-b2b@1.69.0-rc.5
|
|
895
|
+
- @akinon/pz-basket-gift-pack@1.69.0-rc.5
|
|
896
|
+
- @akinon/pz-bkm@1.69.0-rc.5
|
|
897
|
+
- @akinon/pz-checkout-gift-pack@1.69.0-rc.5
|
|
898
|
+
- @akinon/pz-click-collect@1.69.0-rc.5
|
|
899
|
+
- @akinon/pz-credit-payment@1.69.0-rc.5
|
|
900
|
+
- @akinon/pz-gpay@1.69.0-rc.5
|
|
901
|
+
- @akinon/pz-masterpass@1.69.0-rc.5
|
|
902
|
+
- @akinon/pz-one-click-checkout@1.69.0-rc.5
|
|
903
|
+
- @akinon/pz-otp@1.69.0-rc.5
|
|
904
|
+
- @akinon/pz-pay-on-delivery@1.69.0-rc.5
|
|
905
|
+
- @akinon/pz-saved-card@1.69.0-rc.5
|
|
906
|
+
- @akinon/pz-tabby-extension@1.69.0-rc.5
|
|
907
|
+
|
|
908
|
+
## 1.69.0-rc.4
|
|
909
|
+
|
|
910
|
+
### Minor Changes
|
|
911
|
+
|
|
912
|
+
- 063da74: ZERO-3010: Remove pz-iyzico-saved-card package
|
|
913
|
+
|
|
914
|
+
### Patch Changes
|
|
915
|
+
|
|
916
|
+
- Updated dependencies [063da74]
|
|
917
|
+
- @akinon/next@1.69.0-rc.4
|
|
918
|
+
- @akinon/pz-akifast@1.69.0-rc.4
|
|
919
|
+
- @akinon/pz-b2b@1.69.0-rc.4
|
|
920
|
+
- @akinon/pz-basket-gift-pack@1.69.0-rc.4
|
|
921
|
+
- @akinon/pz-bkm@1.69.0-rc.4
|
|
922
|
+
- @akinon/pz-checkout-gift-pack@1.69.0-rc.4
|
|
923
|
+
- @akinon/pz-click-collect@1.69.0-rc.4
|
|
924
|
+
- @akinon/pz-credit-payment@1.69.0-rc.4
|
|
925
|
+
- @akinon/pz-gpay@1.69.0-rc.4
|
|
926
|
+
- @akinon/pz-masterpass@1.69.0-rc.4
|
|
927
|
+
- @akinon/pz-one-click-checkout@1.69.0-rc.4
|
|
928
|
+
- @akinon/pz-otp@1.69.0-rc.4
|
|
929
|
+
- @akinon/pz-pay-on-delivery@1.69.0-rc.4
|
|
930
|
+
- @akinon/pz-saved-card@1.69.0-rc.4
|
|
931
|
+
- @akinon/pz-tabby-extension@1.69.0-rc.4
|
|
932
|
+
|
|
933
|
+
## 1.69.0-rc.3
|
|
934
|
+
|
|
935
|
+
### Minor Changes
|
|
936
|
+
|
|
937
|
+
- cbdb0c8: ZERO-3010: Move pretty url page into project
|
|
938
|
+
|
|
939
|
+
### Patch Changes
|
|
940
|
+
|
|
941
|
+
- Updated dependencies [cbdb0c8]
|
|
942
|
+
- @akinon/next@1.69.0-rc.3
|
|
943
|
+
- @akinon/pz-akifast@1.69.0-rc.3
|
|
944
|
+
- @akinon/pz-b2b@1.69.0-rc.3
|
|
945
|
+
- @akinon/pz-basket-gift-pack@1.69.0-rc.3
|
|
946
|
+
- @akinon/pz-bkm@1.69.0-rc.3
|
|
947
|
+
- @akinon/pz-checkout-gift-pack@1.69.0-rc.3
|
|
948
|
+
- @akinon/pz-click-collect@1.69.0-rc.3
|
|
949
|
+
- @akinon/pz-credit-payment@1.69.0-rc.3
|
|
950
|
+
- @akinon/pz-gpay@1.69.0-rc.3
|
|
951
|
+
- @akinon/pz-masterpass@1.69.0-rc.3
|
|
952
|
+
- @akinon/pz-one-click-checkout@1.69.0-rc.3
|
|
953
|
+
- @akinon/pz-otp@1.69.0-rc.3
|
|
954
|
+
- @akinon/pz-pay-on-delivery@1.69.0-rc.3
|
|
955
|
+
- @akinon/pz-saved-card@1.69.0-rc.3
|
|
956
|
+
- @akinon/pz-tabby-extension@1.69.0-rc.3
|
|
957
|
+
|
|
958
|
+
## 1.69.0-rc.2
|
|
959
|
+
|
|
960
|
+
### Patch Changes
|
|
961
|
+
|
|
962
|
+
- Updated dependencies [5632a99]
|
|
963
|
+
- @akinon/next@1.69.0-rc.2
|
|
964
|
+
- @akinon/pz-akifast@1.69.0-rc.2
|
|
965
|
+
- @akinon/pz-b2b@1.69.0-rc.2
|
|
966
|
+
- @akinon/pz-basket-gift-pack@1.69.0-rc.2
|
|
967
|
+
- @akinon/pz-bkm@1.69.0-rc.2
|
|
968
|
+
- @akinon/pz-checkout-gift-pack@1.69.0-rc.2
|
|
969
|
+
- @akinon/pz-click-collect@1.69.0-rc.2
|
|
970
|
+
- @akinon/pz-credit-payment@1.69.0-rc.2
|
|
971
|
+
- @akinon/pz-gpay@1.69.0-rc.2
|
|
972
|
+
- @akinon/pz-masterpass@1.69.0-rc.2
|
|
973
|
+
- @akinon/pz-one-click-checkout@1.69.0-rc.2
|
|
974
|
+
- @akinon/pz-otp@1.69.0-rc.2
|
|
975
|
+
- @akinon/pz-pay-on-delivery@1.69.0-rc.2
|
|
976
|
+
- @akinon/pz-saved-card@1.69.0-rc.2
|
|
977
|
+
- @akinon/pz-tabby-extension@1.69.0-rc.2
|
|
978
|
+
|
|
979
|
+
## 1.69.0-rc.1
|
|
980
|
+
|
|
981
|
+
### Patch Changes
|
|
982
|
+
|
|
983
|
+
- Updated dependencies [72da021]
|
|
984
|
+
- @akinon/next@1.69.0-rc.1
|
|
985
|
+
- @akinon/pz-akifast@1.69.0-rc.1
|
|
986
|
+
- @akinon/pz-b2b@1.69.0-rc.1
|
|
987
|
+
- @akinon/pz-basket-gift-pack@1.69.0-rc.1
|
|
988
|
+
- @akinon/pz-bkm@1.69.0-rc.1
|
|
989
|
+
- @akinon/pz-checkout-gift-pack@1.69.0-rc.1
|
|
990
|
+
- @akinon/pz-click-collect@1.69.0-rc.1
|
|
991
|
+
- @akinon/pz-credit-payment@1.69.0-rc.1
|
|
992
|
+
- @akinon/pz-gpay@1.69.0-rc.1
|
|
993
|
+
- @akinon/pz-masterpass@1.69.0-rc.1
|
|
994
|
+
- @akinon/pz-one-click-checkout@1.69.0-rc.1
|
|
995
|
+
- @akinon/pz-otp@1.69.0-rc.1
|
|
996
|
+
- @akinon/pz-pay-on-delivery@1.69.0-rc.1
|
|
997
|
+
- @akinon/pz-saved-card@1.69.0-rc.1
|
|
998
|
+
- @akinon/pz-tabby-extension@1.69.0-rc.1
|
|
999
|
+
|
|
1000
|
+
## 1.69.0-rc.0
|
|
1001
|
+
|
|
1002
|
+
### Minor Changes
|
|
1003
|
+
|
|
1004
|
+
- 4d3deb4: ZERO-2935: sentry 8 upgrade
|
|
1005
|
+
|
|
1006
|
+
### Patch Changes
|
|
1007
|
+
|
|
1008
|
+
- Updated dependencies [4d3deb4]
|
|
1009
|
+
- @akinon/next@1.69.0-rc.0
|
|
1010
|
+
- @akinon/pz-akifast@1.69.0-rc.0
|
|
1011
|
+
- @akinon/pz-b2b@1.69.0-rc.0
|
|
1012
|
+
- @akinon/pz-basket-gift-pack@1.69.0-rc.0
|
|
1013
|
+
- @akinon/pz-bkm@1.69.0-rc.0
|
|
1014
|
+
- @akinon/pz-checkout-gift-pack@1.69.0-rc.0
|
|
1015
|
+
- @akinon/pz-click-collect@1.69.0-rc.0
|
|
1016
|
+
- @akinon/pz-credit-payment@1.69.0-rc.0
|
|
1017
|
+
- @akinon/pz-gpay@1.69.0-rc.0
|
|
1018
|
+
- @akinon/pz-masterpass@1.69.0-rc.0
|
|
1019
|
+
- @akinon/pz-one-click-checkout@1.69.0-rc.0
|
|
1020
|
+
- @akinon/pz-otp@1.69.0-rc.0
|
|
1021
|
+
- @akinon/pz-pay-on-delivery@1.69.0-rc.0
|
|
1022
|
+
- @akinon/pz-saved-card@1.69.0-rc.0
|
|
1023
|
+
- @akinon/pz-tabby-extension@1.69.0-rc.0
|
|
321
1024
|
|
|
322
1025
|
## 1.68.0
|
|
323
1026
|
|
|
@@ -668,28 +1371,401 @@
|
|
|
668
1371
|
|
|
669
1372
|
### Minor Changes
|
|
670
1373
|
|
|
1374
|
+
- 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
|
|
1375
|
+
- c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
1376
|
+
- 714e0b46: ZERO-2759: update pz-click-collect peer dependencies
|
|
1377
|
+
- 8217463: ZERO-2887: Add LoaderSpinner to Filters component
|
|
1378
|
+
- 27a5296d: ZERO-2631:Fix Checkbox Click
|
|
1379
|
+
- 5a4c6076: ZERO-2764: Add case-warning rule to eslint-plugin-projectzero
|
|
1380
|
+
- bc2b4117: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
1381
|
+
- e665a0ac: ZERO-2625: Add click outside functionality to close mobile menu
|
|
1382
|
+
- 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
|
|
1383
|
+
- 64699d3f: ZERO-2761: Fix invalid import for plugin module
|
|
1384
|
+
- 0d3a913e: ZERO-2725: Update decimal scale in Price component
|
|
1385
|
+
- 9b6bf91e: ZERO-2660: Change campaings to campaigns
|
|
1386
|
+
- 74a12699: ZERO-2658:Edit product name clickability on completed order page
|
|
1387
|
+
- d3474c64: ZERO-2655: Add data source shipping option
|
|
1388
|
+
- 91265bba: ZERO-2551: Improve pretty url and caching performance
|
|
1389
|
+
- 38a634e: ZERO-2893: Refactor category filter handling and URL parameters
|
|
1390
|
+
- 902d828a: ZERO-2621:edit position of loaderSpinner in favorites page
|
|
1391
|
+
- 7a4bb764: ZERO-2610:Refactor FilterItem component for better readability and efficiency
|
|
1392
|
+
- dff0d595: ZERO-2659: add formData support to proxy api requests
|
|
1393
|
+
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
1394
|
+
- beb499e6: ZERO-2551: Add new tsconfig paths
|
|
1395
|
+
- fac2e5b8: ZERO-2622: Add isMenuOpen state to Category reducer and update CategoryInfo component
|
|
1396
|
+
- 4614eeeb: ZERO-2602: The script that checks the build for standalone projects
|
|
1397
|
+
- f3d076b: ZERO-2864: create tabby extension plugin
|
|
1398
|
+
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
1399
|
+
- 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
1400
|
+
|
|
1401
|
+
### Patch Changes
|
|
1402
|
+
|
|
1403
|
+
- Updated dependencies [c416d18]
|
|
1404
|
+
- Updated dependencies [572d2e84]
|
|
1405
|
+
- Updated dependencies [5dfeea0]
|
|
1406
|
+
- Updated dependencies [0e25399]
|
|
1407
|
+
- Updated dependencies [a4c8d6a9]
|
|
1408
|
+
- Updated dependencies [fda5b927]
|
|
1409
|
+
- Updated dependencies [2d9b2b2c]
|
|
1410
|
+
- Updated dependencies [c53ea3e6]
|
|
1411
|
+
- Updated dependencies [714e0b46]
|
|
1412
|
+
- Updated dependencies [6c25f66]
|
|
1413
|
+
- Updated dependencies [bc2b4117]
|
|
1414
|
+
- Updated dependencies [3bf2dd9]
|
|
1415
|
+
- Updated dependencies [e9541a13]
|
|
1416
|
+
- Updated dependencies [c53ef7b9]
|
|
1417
|
+
- Updated dependencies [2e6104d]
|
|
1418
|
+
- Updated dependencies [64699d3f]
|
|
1419
|
+
- Updated dependencies [0d3a913e]
|
|
1420
|
+
- Updated dependencies [7b05522]
|
|
1421
|
+
- Updated dependencies [d6edb1d]
|
|
1422
|
+
- Updated dependencies [d3474c64]
|
|
1423
|
+
- Updated dependencies [17f87524]
|
|
1424
|
+
- Updated dependencies [29ead87]
|
|
1425
|
+
- Updated dependencies [c45b62c]
|
|
1426
|
+
- Updated dependencies [91265bba]
|
|
1427
|
+
- Updated dependencies [bbe18b9f]
|
|
1428
|
+
- Updated dependencies [d4099960]
|
|
1429
|
+
- Updated dependencies [4920742]
|
|
1430
|
+
- Updated dependencies [12a873e]
|
|
1431
|
+
- Updated dependencies [7e56d6b]
|
|
1432
|
+
- Updated dependencies [94b69285]
|
|
1433
|
+
- Updated dependencies [98bb8dcd]
|
|
1434
|
+
- Updated dependencies [dcc8a150]
|
|
1435
|
+
- Updated dependencies [8f47cca]
|
|
1436
|
+
- Updated dependencies [fad27689]
|
|
1437
|
+
- Updated dependencies [dff0d595]
|
|
1438
|
+
- Updated dependencies [fdd0b41]
|
|
1439
|
+
- Updated dependencies [f2c325c]
|
|
1440
|
+
- Updated dependencies [9e25a64]
|
|
1441
|
+
- Updated dependencies [beb499e6]
|
|
1442
|
+
- Updated dependencies [f2c92d5c]
|
|
1443
|
+
- Updated dependencies [7bd3d992]
|
|
1444
|
+
- Updated dependencies [f3d076b]
|
|
1445
|
+
- Updated dependencies [f046f8e0]
|
|
1446
|
+
- Updated dependencies [49eeebf]
|
|
1447
|
+
- Updated dependencies [86d25315]
|
|
1448
|
+
- Updated dependencies [3f9b8d7e]
|
|
1449
|
+
- @akinon/next@1.56.0-rc.8
|
|
1450
|
+
- @akinon/pz-tabby-extension@1.56.0-rc.8
|
|
1451
|
+
- @akinon/pz-click-collect@1.56.0-rc.8
|
|
1452
|
+
- @akinon/pz-checkout-gift-pack@1.56.0-rc.8
|
|
1453
|
+
- @akinon/pz-one-click-checkout@1.56.0-rc.8
|
|
1454
|
+
- @akinon/pz-basket-gift-pack@1.56.0-rc.8
|
|
1455
|
+
- @akinon/pz-pay-on-delivery@1.56.0-rc.8
|
|
1456
|
+
- @akinon/pz-credit-payment@1.56.0-rc.8
|
|
1457
|
+
- @akinon/pz-masterpass@1.56.0-rc.8
|
|
1458
|
+
- @akinon/pz-akifast@1.56.0-rc.8
|
|
1459
|
+
- @akinon/pz-gpay@1.56.0-rc.8
|
|
1460
|
+
- @akinon/pz-b2b@1.56.0-rc.8
|
|
1461
|
+
- @akinon/pz-bkm@1.56.0-rc.8
|
|
1462
|
+
- @akinon/pz-otp@1.56.0-rc.8
|
|
1463
|
+
|
|
1464
|
+
## 1.56.0-rc.7
|
|
1465
|
+
|
|
1466
|
+
### Patch Changes
|
|
1467
|
+
|
|
1468
|
+
- Updated dependencies [0e25399]
|
|
1469
|
+
- @akinon/pz-tabby-extension@1.56.0-rc.7
|
|
1470
|
+
- @akinon/next@1.56.0-rc.7
|
|
1471
|
+
- @akinon/pz-akifast@1.56.0-rc.7
|
|
1472
|
+
- @akinon/pz-b2b@1.56.0-rc.7
|
|
1473
|
+
- @akinon/pz-basket-gift-pack@1.56.0-rc.7
|
|
1474
|
+
- @akinon/pz-bkm@1.56.0-rc.7
|
|
1475
|
+
- @akinon/pz-checkout-gift-pack@1.56.0-rc.7
|
|
1476
|
+
- @akinon/pz-click-collect@1.56.0-rc.7
|
|
1477
|
+
- @akinon/pz-credit-payment@1.56.0-rc.7
|
|
1478
|
+
- @akinon/pz-gpay@1.56.0-rc.7
|
|
1479
|
+
- @akinon/pz-masterpass@1.56.0-rc.7
|
|
1480
|
+
- @akinon/pz-one-click-checkout@1.56.0-rc.7
|
|
1481
|
+
- @akinon/pz-otp@1.56.0-rc.7
|
|
1482
|
+
- @akinon/pz-pay-on-delivery@1.56.0-rc.7
|
|
1483
|
+
|
|
1484
|
+
## 1.56.0-rc.6
|
|
1485
|
+
|
|
1486
|
+
### Minor Changes
|
|
1487
|
+
|
|
1488
|
+
- f3d076b: ZERO-2864: create tabby extension plugin
|
|
1489
|
+
|
|
1490
|
+
### Patch Changes
|
|
1491
|
+
|
|
1492
|
+
- Updated dependencies [f3d076b]
|
|
1493
|
+
- @akinon/next@1.56.0-rc.6
|
|
1494
|
+
- @akinon/pz-akifast@1.56.0-rc.6
|
|
1495
|
+
- @akinon/pz-b2b@1.56.0-rc.6
|
|
1496
|
+
- @akinon/pz-basket-gift-pack@1.56.0-rc.6
|
|
1497
|
+
- @akinon/pz-bkm@1.56.0-rc.6
|
|
1498
|
+
- @akinon/pz-checkout-gift-pack@1.56.0-rc.6
|
|
1499
|
+
- @akinon/pz-click-collect@1.56.0-rc.6
|
|
1500
|
+
- @akinon/pz-credit-payment@1.56.0-rc.6
|
|
1501
|
+
- @akinon/pz-gpay@1.56.0-rc.6
|
|
1502
|
+
- @akinon/pz-masterpass@1.56.0-rc.6
|
|
1503
|
+
- @akinon/pz-one-click-checkout@1.56.0-rc.6
|
|
1504
|
+
- @akinon/pz-otp@1.56.0-rc.6
|
|
1505
|
+
- @akinon/pz-pay-on-delivery@1.56.0-rc.6
|
|
1506
|
+
|
|
1507
|
+
## 1.56.0-rc.5
|
|
1508
|
+
|
|
1509
|
+
### Patch Changes
|
|
1510
|
+
|
|
1511
|
+
- Updated dependencies [c416d18]
|
|
1512
|
+
- @akinon/next@1.56.0-rc.5
|
|
1513
|
+
- @akinon/pz-akifast@1.56.0-rc.5
|
|
1514
|
+
- @akinon/pz-b2b@1.56.0-rc.5
|
|
1515
|
+
- @akinon/pz-basket-gift-pack@1.56.0-rc.5
|
|
1516
|
+
- @akinon/pz-bkm@1.56.0-rc.5
|
|
1517
|
+
- @akinon/pz-checkout-gift-pack@1.56.0-rc.5
|
|
1518
|
+
- @akinon/pz-click-collect@1.56.0-rc.5
|
|
1519
|
+
- @akinon/pz-credit-payment@1.56.0-rc.5
|
|
1520
|
+
- @akinon/pz-gpay@1.56.0-rc.5
|
|
1521
|
+
- @akinon/pz-masterpass@1.56.0-rc.5
|
|
1522
|
+
- @akinon/pz-one-click-checkout@1.56.0-rc.5
|
|
1523
|
+
- @akinon/pz-otp@1.56.0-rc.5
|
|
1524
|
+
- @akinon/pz-pay-on-delivery@1.56.0-rc.5
|
|
1525
|
+
|
|
1526
|
+
## 1.56.0-rc.4
|
|
1527
|
+
|
|
1528
|
+
### Minor Changes
|
|
1529
|
+
|
|
1530
|
+
- 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
|
|
1531
|
+
- c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
1532
|
+
- 714e0b46: ZERO-2759: update pz-click-collect peer dependencies
|
|
1533
|
+
- 8217463: ZERO-2887: Add LoaderSpinner to Filters component
|
|
1534
|
+
- 27a5296d: ZERO-2631:Fix Checkbox Click
|
|
1535
|
+
- 5a4c6076: ZERO-2764: Add case-warning rule to eslint-plugin-projectzero
|
|
1536
|
+
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
1537
|
+
- e665a0ac: ZERO-2625: Add click outside functionality to close mobile menu
|
|
1538
|
+
- 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
|
|
1539
|
+
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
1540
|
+
- 0d3a913e: ZERO-2725: Update decimal scale in Price component
|
|
1541
|
+
- 9b6bf91e: ZERO-2660: Change campaings to campaigns
|
|
1542
|
+
- 74a12699: ZERO-2658:Edit product name clickability on completed order page
|
|
1543
|
+
- d3474c64: ZERO-2655: Add data source shipping option
|
|
1544
|
+
- 91265bba: ZERO-2551: Improve pretty url and caching performance
|
|
1545
|
+
- 38a634e: ZERO-2893: Refactor category filter handling and URL parameters
|
|
1546
|
+
- 902d828a: ZERO-2621:edit position of loaderSpinner in favorites page
|
|
1547
|
+
- 7a4bb764: ZERO-2610:Refactor FilterItem component for better readability and efficiency
|
|
1548
|
+
- dff0d595: ZERO-2659: add formData support to proxy api requests
|
|
1549
|
+
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
1550
|
+
- beb499e6: ZERO-2551: Add new tsconfig paths
|
|
1551
|
+
- fac2e5b8: ZERO-2622: Add isMenuOpen state to Category reducer and update CategoryInfo component
|
|
1552
|
+
- 4614eeeb: ZERO-2602: The script that checks the build for standalone projects
|
|
1553
|
+
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
671
1554
|
- b9273fd: ZERO-2889: add host headers to requests
|
|
1555
|
+
- 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
672
1556
|
|
|
673
1557
|
### Patch Changes
|
|
674
1558
|
|
|
1559
|
+
- Updated dependencies [572d2e84]
|
|
1560
|
+
- Updated dependencies [5dfeea0]
|
|
1561
|
+
- Updated dependencies [a4c8d6a9]
|
|
1562
|
+
- Updated dependencies [fda5b927]
|
|
1563
|
+
- Updated dependencies [2d9b2b2c]
|
|
1564
|
+
- Updated dependencies [c53ea3e6]
|
|
675
1565
|
- Updated dependencies [d93a507]
|
|
1566
|
+
- Updated dependencies [714e0b46]
|
|
1567
|
+
- Updated dependencies [6c25f66]
|
|
1568
|
+
- Updated dependencies [bc2b411]
|
|
1569
|
+
- Updated dependencies [3bf2dd9]
|
|
1570
|
+
- Updated dependencies [e9541a13]
|
|
1571
|
+
- Updated dependencies [c53ef7b9]
|
|
1572
|
+
- Updated dependencies [2e6104d]
|
|
1573
|
+
- Updated dependencies [64699d3]
|
|
1574
|
+
- Updated dependencies [0d3a913e]
|
|
1575
|
+
- Updated dependencies [7b05522]
|
|
1576
|
+
- Updated dependencies [d6edb1d]
|
|
1577
|
+
- Updated dependencies [d3474c64]
|
|
1578
|
+
- Updated dependencies [17f8752]
|
|
1579
|
+
- Updated dependencies [29ead87]
|
|
1580
|
+
- Updated dependencies [c45b62c]
|
|
1581
|
+
- Updated dependencies [91265bba]
|
|
1582
|
+
- Updated dependencies [bbe18b9f]
|
|
1583
|
+
- Updated dependencies [d4099960]
|
|
1584
|
+
- Updated dependencies [4920742]
|
|
1585
|
+
- Updated dependencies [12a873e]
|
|
676
1586
|
- Updated dependencies [674badc]
|
|
1587
|
+
- Updated dependencies [7e56d6b]
|
|
1588
|
+
- Updated dependencies [94b69285]
|
|
1589
|
+
- Updated dependencies [98bb8dcd]
|
|
677
1590
|
- Updated dependencies [207ac6e]
|
|
1591
|
+
- Updated dependencies [dcc8a150]
|
|
1592
|
+
- Updated dependencies [8f47cca]
|
|
1593
|
+
- Updated dependencies [fad27689]
|
|
1594
|
+
- Updated dependencies [dff0d595]
|
|
1595
|
+
- Updated dependencies [fdd0b41]
|
|
1596
|
+
- Updated dependencies [f2c325c]
|
|
1597
|
+
- Updated dependencies [9e25a64]
|
|
1598
|
+
- Updated dependencies [beb499e6]
|
|
1599
|
+
- Updated dependencies [f2c92d5c]
|
|
1600
|
+
- Updated dependencies [7bd3d99]
|
|
1601
|
+
- Updated dependencies [f046f8e0]
|
|
678
1602
|
- Updated dependencies [b9273fd]
|
|
1603
|
+
- Updated dependencies [49eeebf]
|
|
1604
|
+
- Updated dependencies [86d25315]
|
|
679
1605
|
- Updated dependencies [c670bd4]
|
|
680
|
-
|
|
681
|
-
- @akinon/
|
|
682
|
-
- @akinon/pz-
|
|
683
|
-
- @akinon/pz-
|
|
684
|
-
- @akinon/pz-
|
|
685
|
-
- @akinon/pz-
|
|
686
|
-
- @akinon/pz-
|
|
687
|
-
- @akinon/pz-credit-payment@1.56.0
|
|
688
|
-
- @akinon/pz-
|
|
689
|
-
- @akinon/pz-
|
|
690
|
-
- @akinon/pz-
|
|
691
|
-
- @akinon/pz-
|
|
692
|
-
- @akinon/pz-
|
|
1606
|
+
- Updated dependencies [3f9b8d7]
|
|
1607
|
+
- @akinon/next@1.56.0-rc.4
|
|
1608
|
+
- @akinon/pz-click-collect@1.56.0-rc.4
|
|
1609
|
+
- @akinon/pz-checkout-gift-pack@1.56.0-rc.4
|
|
1610
|
+
- @akinon/pz-one-click-checkout@1.56.0-rc.4
|
|
1611
|
+
- @akinon/pz-basket-gift-pack@1.56.0-rc.4
|
|
1612
|
+
- @akinon/pz-pay-on-delivery@1.56.0-rc.4
|
|
1613
|
+
- @akinon/pz-credit-payment@1.56.0-rc.4
|
|
1614
|
+
- @akinon/pz-masterpass@1.56.0-rc.4
|
|
1615
|
+
- @akinon/pz-akifast@1.56.0-rc.4
|
|
1616
|
+
- @akinon/pz-gpay@1.56.0-rc.4
|
|
1617
|
+
- @akinon/pz-b2b@1.56.0-rc.4
|
|
1618
|
+
- @akinon/pz-bkm@1.56.0-rc.4
|
|
1619
|
+
- @akinon/pz-otp@1.56.0-rc.4
|
|
1620
|
+
|
|
1621
|
+
## 1.56.0-rc.3
|
|
1622
|
+
|
|
1623
|
+
### Patch Changes
|
|
1624
|
+
|
|
1625
|
+
- Updated dependencies [674badc]
|
|
1626
|
+
- @akinon/next@1.56.0-rc.3
|
|
1627
|
+
- @akinon/pz-akifast@1.56.0-rc.3
|
|
1628
|
+
- @akinon/pz-b2b@1.56.0-rc.3
|
|
1629
|
+
- @akinon/pz-basket-gift-pack@1.56.0-rc.3
|
|
1630
|
+
- @akinon/pz-bkm@1.56.0-rc.3
|
|
1631
|
+
- @akinon/pz-checkout-gift-pack@1.56.0-rc.3
|
|
1632
|
+
- @akinon/pz-click-collect@1.56.0-rc.3
|
|
1633
|
+
- @akinon/pz-credit-payment@1.56.0-rc.3
|
|
1634
|
+
- @akinon/pz-gpay@1.56.0-rc.3
|
|
1635
|
+
- @akinon/pz-masterpass@1.56.0-rc.3
|
|
1636
|
+
- @akinon/pz-one-click-checkout@1.56.0-rc.3
|
|
1637
|
+
- @akinon/pz-otp@1.56.0-rc.3
|
|
1638
|
+
- @akinon/pz-pay-on-delivery@1.56.0-rc.3
|
|
1639
|
+
|
|
1640
|
+
## 1.56.0-rc.2
|
|
1641
|
+
|
|
1642
|
+
### Patch Changes
|
|
1643
|
+
|
|
1644
|
+
- Updated dependencies [7b05522]
|
|
1645
|
+
- Updated dependencies [29ead87]
|
|
1646
|
+
- @akinon/next@1.56.0-rc.2
|
|
1647
|
+
- @akinon/pz-otp@1.56.0-rc.2
|
|
1648
|
+
- @akinon/pz-akifast@1.56.0-rc.2
|
|
1649
|
+
- @akinon/pz-b2b@1.56.0-rc.2
|
|
1650
|
+
- @akinon/pz-basket-gift-pack@1.56.0-rc.2
|
|
1651
|
+
- @akinon/pz-bkm@1.56.0-rc.2
|
|
1652
|
+
- @akinon/pz-checkout-gift-pack@1.56.0-rc.2
|
|
1653
|
+
- @akinon/pz-click-collect@1.56.0-rc.2
|
|
1654
|
+
- @akinon/pz-credit-payment@1.56.0-rc.2
|
|
1655
|
+
- @akinon/pz-gpay@1.56.0-rc.2
|
|
1656
|
+
- @akinon/pz-masterpass@1.56.0-rc.2
|
|
1657
|
+
- @akinon/pz-one-click-checkout@1.56.0-rc.2
|
|
1658
|
+
- @akinon/pz-pay-on-delivery@1.56.0-rc.2
|
|
1659
|
+
|
|
1660
|
+
## 1.56.0-rc.1
|
|
1661
|
+
|
|
1662
|
+
### Patch Changes
|
|
1663
|
+
|
|
1664
|
+
- Updated dependencies [207ac6e]
|
|
1665
|
+
- @akinon/next@1.56.0-rc.1
|
|
1666
|
+
- @akinon/pz-akifast@1.56.0-rc.1
|
|
1667
|
+
- @akinon/pz-b2b@1.56.0-rc.1
|
|
1668
|
+
- @akinon/pz-basket-gift-pack@1.56.0-rc.1
|
|
1669
|
+
- @akinon/pz-bkm@1.56.0-rc.1
|
|
1670
|
+
- @akinon/pz-checkout-gift-pack@1.56.0-rc.1
|
|
1671
|
+
- @akinon/pz-click-collect@1.56.0-rc.1
|
|
1672
|
+
- @akinon/pz-credit-payment@1.56.0-rc.1
|
|
1673
|
+
- @akinon/pz-gpay@1.56.0-rc.1
|
|
1674
|
+
- @akinon/pz-masterpass@1.56.0-rc.1
|
|
1675
|
+
- @akinon/pz-one-click-checkout@1.56.0-rc.1
|
|
1676
|
+
- @akinon/pz-otp@1.56.0-rc.1
|
|
1677
|
+
- @akinon/pz-pay-on-delivery@1.56.0-rc.1
|
|
1678
|
+
|
|
1679
|
+
## 1.56.0-rc.0
|
|
1680
|
+
|
|
1681
|
+
### Minor Changes
|
|
1682
|
+
|
|
1683
|
+
- 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
|
|
1684
|
+
- c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
1685
|
+
- 714e0b46: ZERO-2759: update pz-click-collect peer dependencies
|
|
1686
|
+
- 8217463: ZERO-2887: Add LoaderSpinner to Filters component
|
|
1687
|
+
- 27a5296d: ZERO-2631:Fix Checkbox Click
|
|
1688
|
+
- 5a4c6076: ZERO-2764: Add case-warning rule to eslint-plugin-projectzero
|
|
1689
|
+
- bc2b4117: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
1690
|
+
- e665a0ac: ZERO-2625: Add click outside functionality to close mobile menu
|
|
1691
|
+
- 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
|
|
1692
|
+
- 64699d3f: ZERO-2761: Fix invalid import for plugin module
|
|
1693
|
+
- 0d3a913e: ZERO-2725: Update decimal scale in Price component
|
|
1694
|
+
- 9b6bf91e: ZERO-2660: Change campaings to campaigns
|
|
1695
|
+
- 74a12699: ZERO-2658:Edit product name clickability on completed order page
|
|
1696
|
+
- d3474c64: ZERO-2655: Add data source shipping option
|
|
1697
|
+
- 91265bba: ZERO-2551: Improve pretty url and caching performance
|
|
1698
|
+
- 38a634e: ZERO-2893: Refactor category filter handling and URL parameters
|
|
1699
|
+
- 902d828a: ZERO-2621:edit position of loaderSpinner in favorites page
|
|
1700
|
+
- 7a4bb764: ZERO-2610:Refactor FilterItem component for better readability and efficiency
|
|
1701
|
+
- dff0d595: ZERO-2659: add formData support to proxy api requests
|
|
1702
|
+
- 9e25a64b: ZERO-2835: Update category page layout with breadcrumb
|
|
1703
|
+
- beb499e6: ZERO-2551: Add new tsconfig paths
|
|
1704
|
+
- fac2e5b8: ZERO-2622: Add isMenuOpen state to Category reducer and update CategoryInfo component
|
|
1705
|
+
- 4614eeeb: ZERO-2602: The script that checks the build for standalone projects
|
|
1706
|
+
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
1707
|
+
- b9273fd3: ZERO-2889: add host headers to requests
|
|
1708
|
+
- 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
1709
|
+
|
|
1710
|
+
### Patch Changes
|
|
1711
|
+
|
|
1712
|
+
- Updated dependencies [572d2e84]
|
|
1713
|
+
- Updated dependencies [5dfeea0]
|
|
1714
|
+
- Updated dependencies [a4c8d6a9]
|
|
1715
|
+
- Updated dependencies [fda5b927]
|
|
1716
|
+
- Updated dependencies [2d9b2b2c]
|
|
1717
|
+
- Updated dependencies [c53ea3e6]
|
|
1718
|
+
- Updated dependencies [d93a507]
|
|
1719
|
+
- Updated dependencies [714e0b46]
|
|
1720
|
+
- Updated dependencies [6c25f666]
|
|
1721
|
+
- Updated dependencies [bc2b4117]
|
|
1722
|
+
- Updated dependencies [3bf2dd94]
|
|
1723
|
+
- Updated dependencies [e9541a13]
|
|
1724
|
+
- Updated dependencies [c53ef7b9]
|
|
1725
|
+
- Updated dependencies [2e6104d]
|
|
1726
|
+
- Updated dependencies [64699d3f]
|
|
1727
|
+
- Updated dependencies [0d3a913e]
|
|
1728
|
+
- Updated dependencies [d6edb1d0]
|
|
1729
|
+
- Updated dependencies [d3474c64]
|
|
1730
|
+
- Updated dependencies [17f87524]
|
|
1731
|
+
- Updated dependencies [c45b62c9]
|
|
1732
|
+
- Updated dependencies [91265bba]
|
|
1733
|
+
- Updated dependencies [bbe18b9f]
|
|
1734
|
+
- Updated dependencies [d4099960]
|
|
1735
|
+
- Updated dependencies [4920742c]
|
|
1736
|
+
- Updated dependencies [12a873e]
|
|
1737
|
+
- Updated dependencies [7e56d6b6]
|
|
1738
|
+
- Updated dependencies [94b69285]
|
|
1739
|
+
- Updated dependencies [98bb8dcd]
|
|
1740
|
+
- Updated dependencies [dcc8a150]
|
|
1741
|
+
- Updated dependencies [8f47ccae]
|
|
1742
|
+
- Updated dependencies [fad27689]
|
|
1743
|
+
- Updated dependencies [dff0d595]
|
|
1744
|
+
- Updated dependencies [fdd0b41]
|
|
1745
|
+
- Updated dependencies [f2c325c1]
|
|
1746
|
+
- Updated dependencies [9e25a64b]
|
|
1747
|
+
- Updated dependencies [beb499e6]
|
|
1748
|
+
- Updated dependencies [f2c92d5c]
|
|
1749
|
+
- Updated dependencies [7bd3d992]
|
|
1750
|
+
- Updated dependencies [f046f8e0]
|
|
1751
|
+
- Updated dependencies [b9273fd3]
|
|
1752
|
+
- Updated dependencies [49eeebf]
|
|
1753
|
+
- Updated dependencies [86d25315]
|
|
1754
|
+
- Updated dependencies [c670bd48]
|
|
1755
|
+
- Updated dependencies [3f9b8d7e]
|
|
1756
|
+
- @akinon/next@1.56.0-rc.0
|
|
1757
|
+
- @akinon/pz-click-collect@1.56.0-rc.0
|
|
1758
|
+
- @akinon/pz-checkout-gift-pack@1.56.0-rc.0
|
|
1759
|
+
- @akinon/pz-one-click-checkout@1.56.0-rc.0
|
|
1760
|
+
- @akinon/pz-basket-gift-pack@1.56.0-rc.0
|
|
1761
|
+
- @akinon/pz-pay-on-delivery@1.56.0-rc.0
|
|
1762
|
+
- @akinon/pz-credit-payment@1.56.0-rc.0
|
|
1763
|
+
- @akinon/pz-masterpass@1.56.0-rc.0
|
|
1764
|
+
- @akinon/pz-akifast@1.56.0-rc.0
|
|
1765
|
+
- @akinon/pz-gpay@1.56.0-rc.0
|
|
1766
|
+
- @akinon/pz-b2b@1.56.0-rc.0
|
|
1767
|
+
- @akinon/pz-bkm@1.56.0-rc.0
|
|
1768
|
+
- @akinon/pz-otp@1.56.0-rc.0
|
|
693
1769
|
|
|
694
1770
|
## 1.55.0
|
|
695
1771
|
|
|
@@ -832,38 +1908,238 @@
|
|
|
832
1908
|
|
|
833
1909
|
### Patch Changes
|
|
834
1910
|
|
|
835
|
-
- Updated dependencies [
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
1911
|
+
- Updated dependencies [90282b53]
|
|
1912
|
+
- Updated dependencies [50b90692]
|
|
1913
|
+
- Updated dependencies [572d2e84]
|
|
1914
|
+
- Updated dependencies [5dfeea0]
|
|
1915
|
+
- Updated dependencies [a4c8d6a9]
|
|
1916
|
+
- Updated dependencies [fda5b927]
|
|
1917
|
+
- Updated dependencies [2d9b2b2]
|
|
1918
|
+
- Updated dependencies [c53ea3e6]
|
|
1919
|
+
- Updated dependencies [d93a507]
|
|
1920
|
+
- Updated dependencies [8d9ac9a]
|
|
1921
|
+
- Updated dependencies [18e8197]
|
|
1922
|
+
- Updated dependencies [714e0b46]
|
|
1923
|
+
- Updated dependencies [70279e7]
|
|
1924
|
+
- Updated dependencies [6c25f66]
|
|
1925
|
+
- Updated dependencies [bc2b411]
|
|
1926
|
+
- Updated dependencies [3bf2dd9]
|
|
1927
|
+
- Updated dependencies [e9541a1]
|
|
1928
|
+
- Updated dependencies [c53ef7b9]
|
|
1929
|
+
- Updated dependencies [9d94f7e]
|
|
1930
|
+
- Updated dependencies [2e6104d]
|
|
1931
|
+
- Updated dependencies [64699d3]
|
|
1932
|
+
- Updated dependencies [0d3a913e]
|
|
1933
|
+
- Updated dependencies [1448a96e]
|
|
1934
|
+
- Updated dependencies [1ec2e9d]
|
|
1935
|
+
- Updated dependencies [d6edb1d]
|
|
1936
|
+
- Updated dependencies [d3474c64]
|
|
1937
|
+
- Updated dependencies [75080fd6]
|
|
1938
|
+
- Updated dependencies [17f8752]
|
|
1939
|
+
- Updated dependencies [c45b62c]
|
|
1940
|
+
- Updated dependencies [91265bba]
|
|
1941
|
+
- Updated dependencies [bbe18b9f]
|
|
1942
|
+
- Updated dependencies [d4099960]
|
|
1943
|
+
- Updated dependencies [4920742]
|
|
1944
|
+
- Updated dependencies [12a873e]
|
|
1945
|
+
- Updated dependencies [69ca0801]
|
|
1946
|
+
- Updated dependencies [7e56d6b]
|
|
1947
|
+
- Updated dependencies [94b6928]
|
|
1948
|
+
- Updated dependencies [98bb8dcd]
|
|
1949
|
+
- Updated dependencies [46b7aad7]
|
|
1950
|
+
- Updated dependencies [dcc8a150]
|
|
1951
|
+
- Updated dependencies [8f47cca]
|
|
1952
|
+
- Updated dependencies [fad27689]
|
|
1953
|
+
- Updated dependencies [dff0d595]
|
|
1954
|
+
- Updated dependencies [fdd0b41]
|
|
1955
|
+
- Updated dependencies [eecb282]
|
|
1956
|
+
- Updated dependencies [f2c325c]
|
|
1957
|
+
- Updated dependencies [9e25a64]
|
|
1958
|
+
- Updated dependencies [beb499e6]
|
|
1959
|
+
- Updated dependencies [146ea391]
|
|
1960
|
+
- Updated dependencies [f2c92d5]
|
|
1961
|
+
- Updated dependencies [7bd3d99]
|
|
1962
|
+
- Updated dependencies [c47be30d]
|
|
1963
|
+
- Updated dependencies [e9a46acb]
|
|
1964
|
+
- Updated dependencies [f046f8e0]
|
|
1965
|
+
- Updated dependencies [b9273fd]
|
|
1966
|
+
- Updated dependencies [49eeebf]
|
|
1967
|
+
- Updated dependencies [86d25315]
|
|
1968
|
+
- Updated dependencies [c670bd4]
|
|
1969
|
+
- Updated dependencies [3f9b8d7]
|
|
1970
|
+
- Updated dependencies [3d35f70]
|
|
1971
|
+
- @akinon/next@1.50.0-rc.2
|
|
1972
|
+
- @akinon/pz-checkout-gift-pack@1.50.0-rc.2
|
|
1973
|
+
- @akinon/pz-one-click-checkout@1.50.0-rc.2
|
|
1974
|
+
- @akinon/pz-basket-gift-pack@1.50.0-rc.2
|
|
1975
|
+
- @akinon/pz-click-collect@1.50.0-rc.2
|
|
1976
|
+
- @akinon/pz-masterpass@1.50.0-rc.2
|
|
1977
|
+
- @akinon/pz-akifast@1.50.0-rc.2
|
|
1978
|
+
- @akinon/pz-gpay@1.50.0-rc.2
|
|
1979
|
+
- @akinon/pz-b2b@1.50.0-rc.2
|
|
1980
|
+
- @akinon/pz-bkm@1.50.0-rc.2
|
|
1981
|
+
- @akinon/pz-otp@1.50.0-rc.2
|
|
1982
|
+
- @akinon/pz-pay-on-delivery@1.50.0-rc.2
|
|
1983
|
+
- @akinon/pz-credit-payment@1.50.0-rc.2
|
|
1984
|
+
|
|
1985
|
+
## 1.50.0-rc.1
|
|
851
1986
|
|
|
852
1987
|
### Patch Changes
|
|
853
1988
|
|
|
854
|
-
- Updated dependencies [
|
|
855
|
-
-
|
|
856
|
-
-
|
|
857
|
-
-
|
|
858
|
-
- @akinon/
|
|
859
|
-
- @akinon/pz-
|
|
860
|
-
- @akinon/pz-
|
|
861
|
-
- @akinon/pz-
|
|
862
|
-
- @akinon/pz-
|
|
863
|
-
- @akinon/pz-
|
|
864
|
-
- @akinon/pz-
|
|
865
|
-
- @akinon/pz-
|
|
866
|
-
- @akinon/pz-
|
|
1989
|
+
- Updated dependencies [49eeebf]
|
|
1990
|
+
- @akinon/next@1.50.0-rc.1
|
|
1991
|
+
- @akinon/pz-akifast@1.50.0-rc.1
|
|
1992
|
+
- @akinon/pz-b2b@1.50.0-rc.1
|
|
1993
|
+
- @akinon/pz-basket-gift-pack@1.50.0-rc.1
|
|
1994
|
+
- @akinon/pz-bkm@1.50.0-rc.1
|
|
1995
|
+
- @akinon/pz-checkout-gift-pack@1.50.0-rc.1
|
|
1996
|
+
- @akinon/pz-click-collect@1.50.0-rc.1
|
|
1997
|
+
- @akinon/pz-credit-payment@1.50.0-rc.1
|
|
1998
|
+
- @akinon/pz-gpay@1.50.0-rc.1
|
|
1999
|
+
- @akinon/pz-masterpass@1.50.0-rc.1
|
|
2000
|
+
- @akinon/pz-one-click-checkout@1.50.0-rc.1
|
|
2001
|
+
- @akinon/pz-otp@1.50.0-rc.1
|
|
2002
|
+
- @akinon/pz-pay-on-delivery@1.50.0-rc.1
|
|
2003
|
+
|
|
2004
|
+
## 1.50.0-rc.0
|
|
2005
|
+
|
|
2006
|
+
### Minor Changes
|
|
2007
|
+
|
|
2008
|
+
- 90282b53: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
2009
|
+
- 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
|
|
2010
|
+
- c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
2011
|
+
- 97b8bdc9: ZERO-2724: Remove onClick event in shipping options component
|
|
2012
|
+
- 714e0b46: ZERO-2759: update pz-click-collect peer dependencies
|
|
2013
|
+
- 7521265: ZERO-2787: Fix hover classname for favorite item
|
|
2014
|
+
- 8217463: ZERO-2887: Add LoaderSpinner to Filters component
|
|
2015
|
+
- 27a5296d: ZERO-2631:Fix Checkbox Click
|
|
2016
|
+
- 5a4c6076: ZERO-2764: Add case-warning rule to eslint-plugin-projectzero
|
|
2017
|
+
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
2018
|
+
- e665a0ac: ZERO-2625: Add click outside functionality to close mobile menu
|
|
2019
|
+
- 52c13732: ZERO-2619: Added fix flag for the staged linter
|
|
2020
|
+
- 552ee8a: ZERO-2777: fix link component usage
|
|
2021
|
+
- 03c4c3eb: ZERO-2731: Update Project Zero CLI command
|
|
2022
|
+
- 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
|
|
2023
|
+
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
2024
|
+
- 0d3a913e: ZERO-2725: Update decimal scale in Price component
|
|
2025
|
+
- 778a9a0b: ZERO-2740: Upgrade next to 14.2.4
|
|
2026
|
+
- 9b6bf91e: ZERO-2660: Change campaings to campaigns
|
|
2027
|
+
- 06650cab: ZERO-2620: Remove unnecessary pointer-events-none class
|
|
2028
|
+
- 74a12699: ZERO-2658:Edit product name clickability on completed order page
|
|
2029
|
+
- 4e1c15c: ZERO-2617: Remove TODO comment in ProductInfo component
|
|
2030
|
+
- d3474c64: ZERO-2655: Add data source shipping option
|
|
2031
|
+
- d2f0f15c: ZERO-2723: Update sentry version and dependencies
|
|
2032
|
+
- 75080fd6: ZERO-2630: Add max limit to postcode area
|
|
2033
|
+
- 9609eb2: ZERO-2779: Upgrade for tailwind
|
|
2034
|
+
- 91265bba: ZERO-2551: Improve pretty url and caching performance
|
|
2035
|
+
- 38a634e: ZERO-2893: Refactor category filter handling and URL parameters
|
|
2036
|
+
- 959e1fa: ZERO-2778: Upgrade for nextjs
|
|
2037
|
+
- 902d828a: ZERO-2621:edit position of loaderSpinner in favorites page
|
|
2038
|
+
- 7a4bb764: ZERO-2610:Refactor FilterItem component for better readability and efficiency
|
|
2039
|
+
- dfabc06: ZERO-2836: Upgrade version for tailwind
|
|
2040
|
+
- dff0d595: ZERO-2659: add formData support to proxy api requests
|
|
2041
|
+
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
2042
|
+
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
2043
|
+
- beb499e6: ZERO-2551: Add new tsconfig paths
|
|
2044
|
+
- fac2e5b8: ZERO-2622: Add isMenuOpen state to Category reducer and update CategoryInfo component
|
|
2045
|
+
- 4614eeeb: ZERO-2602: The script that checks the build for standalone projects
|
|
2046
|
+
- e9a46acb: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
2047
|
+
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
2048
|
+
- b9273fd: ZERO-2889: add host headers to requests
|
|
2049
|
+
- 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
2050
|
+
|
|
2051
|
+
### Patch Changes
|
|
2052
|
+
|
|
2053
|
+
- Updated dependencies [90282b53]
|
|
2054
|
+
- Updated dependencies [50b90692]
|
|
2055
|
+
- Updated dependencies [572d2e84]
|
|
2056
|
+
- Updated dependencies [5dfeea0]
|
|
2057
|
+
- Updated dependencies [a4c8d6a9]
|
|
2058
|
+
- Updated dependencies [fda5b927]
|
|
2059
|
+
- Updated dependencies [2d9b2b2]
|
|
2060
|
+
- Updated dependencies [c53ea3e6]
|
|
2061
|
+
- Updated dependencies [d93a507]
|
|
2062
|
+
- Updated dependencies [8d9ac9a]
|
|
2063
|
+
- Updated dependencies [18e8197]
|
|
2064
|
+
- Updated dependencies [eaf97d6]
|
|
2065
|
+
- Updated dependencies [714e0b46]
|
|
2066
|
+
- Updated dependencies [70279e7]
|
|
2067
|
+
- Updated dependencies [6c25f66]
|
|
2068
|
+
- Updated dependencies [bc2b411]
|
|
2069
|
+
- Updated dependencies [3bf2dd9]
|
|
2070
|
+
- Updated dependencies [e9541a1]
|
|
2071
|
+
- Updated dependencies [c53ef7b9]
|
|
2072
|
+
- Updated dependencies [9d94f7e]
|
|
2073
|
+
- Updated dependencies [2e6104d]
|
|
2074
|
+
- Updated dependencies [64699d3]
|
|
2075
|
+
- Updated dependencies [0d3a913e]
|
|
2076
|
+
- Updated dependencies [1448a96e]
|
|
2077
|
+
- Updated dependencies [1ec2e9d]
|
|
2078
|
+
- Updated dependencies [d6edb1d]
|
|
2079
|
+
- Updated dependencies [d3474c64]
|
|
2080
|
+
- Updated dependencies [75080fd6]
|
|
2081
|
+
- Updated dependencies [17f8752]
|
|
2082
|
+
- Updated dependencies [c45b62c]
|
|
2083
|
+
- Updated dependencies [91265bba]
|
|
2084
|
+
- Updated dependencies [bbe18b9f]
|
|
2085
|
+
- Updated dependencies [d4099960]
|
|
2086
|
+
- Updated dependencies [4920742]
|
|
2087
|
+
- Updated dependencies [12a873e]
|
|
2088
|
+
- Updated dependencies [69ca080]
|
|
2089
|
+
- Updated dependencies [7e56d6b]
|
|
2090
|
+
- Updated dependencies [94b6928]
|
|
2091
|
+
- Updated dependencies [98bb8dcd]
|
|
2092
|
+
- Updated dependencies [46b7aad7]
|
|
2093
|
+
- Updated dependencies [dcc8a150]
|
|
2094
|
+
- Updated dependencies [8f47cca]
|
|
2095
|
+
- Updated dependencies [fad27689]
|
|
2096
|
+
- Updated dependencies [dff0d595]
|
|
2097
|
+
- Updated dependencies [fdd0b41]
|
|
2098
|
+
- Updated dependencies [eecb282]
|
|
2099
|
+
- Updated dependencies [f2c325c]
|
|
2100
|
+
- Updated dependencies [9e25a64]
|
|
2101
|
+
- Updated dependencies [beb499e6]
|
|
2102
|
+
- Updated dependencies [146ea391]
|
|
2103
|
+
- Updated dependencies [f2c92d5]
|
|
2104
|
+
- Updated dependencies [7bd3d99]
|
|
2105
|
+
- Updated dependencies [c47be30d]
|
|
2106
|
+
- Updated dependencies [e9a46acb]
|
|
2107
|
+
- Updated dependencies [f046f8e0]
|
|
2108
|
+
- Updated dependencies [b9273fd]
|
|
2109
|
+
- Updated dependencies [86d25315]
|
|
2110
|
+
- Updated dependencies [c670bd4]
|
|
2111
|
+
- Updated dependencies [3f9b8d7]
|
|
2112
|
+
- @akinon/next@1.50.0-rc.0
|
|
2113
|
+
- @akinon/pz-checkout-gift-pack@1.50.0-rc.0
|
|
2114
|
+
- @akinon/pz-one-click-checkout@1.50.0-rc.0
|
|
2115
|
+
- @akinon/pz-basket-gift-pack@1.50.0-rc.0
|
|
2116
|
+
- @akinon/pz-click-collect@1.50.0-rc.0
|
|
2117
|
+
- @akinon/pz-masterpass@1.50.0-rc.0
|
|
2118
|
+
- @akinon/pz-akifast@1.50.0-rc.0
|
|
2119
|
+
- @akinon/pz-gpay@1.50.0-rc.0
|
|
2120
|
+
- @akinon/pz-b2b@1.50.0-rc.0
|
|
2121
|
+
- @akinon/pz-bkm@1.50.0-rc.0
|
|
2122
|
+
- @akinon/pz-otp@1.50.0-rc.0
|
|
2123
|
+
- @akinon/pz-pay-on-delivery@1.50.0-rc.0
|
|
2124
|
+
- @akinon/pz-credit-payment@1.50.0-rc.0
|
|
2125
|
+
|
|
2126
|
+
## 1.49.0
|
|
2127
|
+
|
|
2128
|
+
### Patch Changes
|
|
2129
|
+
|
|
2130
|
+
- Updated dependencies [26b809f]
|
|
2131
|
+
- Updated dependencies [20da358]
|
|
2132
|
+
- Updated dependencies [04115e5]
|
|
2133
|
+
- Updated dependencies [fa88889]
|
|
2134
|
+
- @akinon/next@1.49.0
|
|
2135
|
+
- @akinon/pz-akifast@1.49.0
|
|
2136
|
+
- @akinon/pz-b2b@1.49.0
|
|
2137
|
+
- @akinon/pz-basket-gift-pack@1.49.0
|
|
2138
|
+
- @akinon/pz-bkm@1.49.0
|
|
2139
|
+
- @akinon/pz-checkout-gift-pack@1.49.0
|
|
2140
|
+
- @akinon/pz-click-collect@1.49.0
|
|
2141
|
+
- @akinon/pz-credit-payment@1.49.0
|
|
2142
|
+
- @akinon/pz-gpay@1.49.0
|
|
867
2143
|
- @akinon/pz-masterpass@1.49.0
|
|
868
2144
|
- @akinon/pz-one-click-checkout@1.49.0
|
|
869
2145
|
- @akinon/pz-otp@1.49.0
|
|
@@ -873,23 +2149,480 @@
|
|
|
873
2149
|
|
|
874
2150
|
### Minor Changes
|
|
875
2151
|
|
|
2152
|
+
- 90282b53: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
2153
|
+
- 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
|
|
2154
|
+
- c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
2155
|
+
- 97b8bdc9: ZERO-2724: Remove onClick event in shipping options component
|
|
2156
|
+
- 714e0b46: ZERO-2759: update pz-click-collect peer dependencies
|
|
2157
|
+
- 7521265: ZERO-2787: Fix hover classname for favorite item
|
|
2158
|
+
- 8217463: ZERO-2887: Add LoaderSpinner to Filters component
|
|
2159
|
+
- 27a5296d: ZERO-2631:Fix Checkbox Click
|
|
2160
|
+
- 5a4c6076: ZERO-2764: Add case-warning rule to eslint-plugin-projectzero
|
|
2161
|
+
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
2162
|
+
- e665a0a: ZERO-2625: Add click outside functionality to close mobile menu
|
|
2163
|
+
- 52c13732: ZERO-2619: Added fix flag for the staged linter
|
|
2164
|
+
- 552ee8a: ZERO-2777: fix link component usage
|
|
2165
|
+
- 03c4c3eb: ZERO-2731: Update Project Zero CLI command
|
|
2166
|
+
- 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
|
|
2167
|
+
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
2168
|
+
- 0d3a913e: ZERO-2725: Update decimal scale in Price component
|
|
2169
|
+
- 778a9a0b: ZERO-2740: Upgrade next to 14.2.4
|
|
2170
|
+
- 9b6bf91e: ZERO-2660: Change campaings to campaigns
|
|
2171
|
+
- 06650cab: ZERO-2620: Remove unnecessary pointer-events-none class
|
|
2172
|
+
- 74a12699: ZERO-2658:Edit product name clickability on completed order page
|
|
2173
|
+
- 4e1c15c: ZERO-2617: Remove TODO comment in ProductInfo component
|
|
2174
|
+
- d3474c64: ZERO-2655: Add data source shipping option
|
|
2175
|
+
- d2f0f15c: ZERO-2723: Update sentry version and dependencies
|
|
2176
|
+
- 75080fd6: ZERO-2630: Add max limit to postcode area
|
|
2177
|
+
- 9609eb2: ZERO-2779: Upgrade for tailwind
|
|
2178
|
+
- 91265bba: ZERO-2551: Improve pretty url and caching performance
|
|
2179
|
+
- 38a634e: ZERO-2893: Refactor category filter handling and URL parameters
|
|
2180
|
+
- 959e1fa: ZERO-2778: Upgrade for nextjs
|
|
2181
|
+
- 902d828a: ZERO-2621:edit position of loaderSpinner in favorites page
|
|
2182
|
+
- 7a4bb764: ZERO-2610:Refactor FilterItem component for better readability and efficiency
|
|
2183
|
+
- dfabc06: ZERO-2836: Upgrade version for tailwind
|
|
2184
|
+
- dff0d595: ZERO-2659: add formData support to proxy api requests
|
|
2185
|
+
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
2186
|
+
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
2187
|
+
- beb499e6: ZERO-2551: Add new tsconfig paths
|
|
2188
|
+
- fac2e5b8: ZERO-2622: Add isMenuOpen state to Category reducer and update CategoryInfo component
|
|
2189
|
+
- 4614eeeb: ZERO-2602: The script that checks the build for standalone projects
|
|
2190
|
+
- e9a46acb: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
2191
|
+
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
2192
|
+
- b9273fd: ZERO-2889: add host headers to requests
|
|
2193
|
+
- 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
2194
|
+
|
|
2195
|
+
### Patch Changes
|
|
2196
|
+
|
|
2197
|
+
- Updated dependencies [90282b53]
|
|
2198
|
+
- Updated dependencies [50b9069]
|
|
2199
|
+
- Updated dependencies [572d2e84]
|
|
2200
|
+
- Updated dependencies [5dfeea0]
|
|
2201
|
+
- Updated dependencies [a4c8d6a9]
|
|
2202
|
+
- Updated dependencies [fda5b927]
|
|
2203
|
+
- Updated dependencies [2d9b2b2]
|
|
2204
|
+
- Updated dependencies [c53ea3e6]
|
|
2205
|
+
- Updated dependencies [d93a507]
|
|
2206
|
+
- Updated dependencies [8d9ac9a]
|
|
2207
|
+
- Updated dependencies [18e8197]
|
|
2208
|
+
- Updated dependencies [714e0b46]
|
|
2209
|
+
- Updated dependencies [70279e7]
|
|
2210
|
+
- Updated dependencies [6c25f66]
|
|
2211
|
+
- Updated dependencies [bc2b411]
|
|
2212
|
+
- Updated dependencies [3bf2dd9]
|
|
2213
|
+
- Updated dependencies [e9541a1]
|
|
2214
|
+
- Updated dependencies [c53ef7b9]
|
|
2215
|
+
- Updated dependencies [9d94f7e]
|
|
2216
|
+
- Updated dependencies [2e6104d]
|
|
2217
|
+
- Updated dependencies [64699d3]
|
|
2218
|
+
- Updated dependencies [0d3a913e]
|
|
2219
|
+
- Updated dependencies [1448a96e]
|
|
2220
|
+
- Updated dependencies [26b809f]
|
|
2221
|
+
- Updated dependencies [1ec2e9d]
|
|
2222
|
+
- Updated dependencies [d6edb1d]
|
|
2223
|
+
- Updated dependencies [d3474c64]
|
|
2224
|
+
- Updated dependencies [75080fd6]
|
|
2225
|
+
- Updated dependencies [17f8752]
|
|
2226
|
+
- Updated dependencies [c45b62c]
|
|
2227
|
+
- Updated dependencies [91265bba]
|
|
2228
|
+
- Updated dependencies [20da358]
|
|
2229
|
+
- Updated dependencies [bbe18b9f]
|
|
2230
|
+
- Updated dependencies [d409996]
|
|
2231
|
+
- Updated dependencies [4920742]
|
|
2232
|
+
- Updated dependencies [12a873e]
|
|
2233
|
+
- Updated dependencies [69ca080]
|
|
2234
|
+
- Updated dependencies [7e56d6b]
|
|
2235
|
+
- Updated dependencies [94b6928]
|
|
2236
|
+
- Updated dependencies [98bb8dcd]
|
|
2237
|
+
- Updated dependencies [46b7aad7]
|
|
2238
|
+
- Updated dependencies [dcc8a150]
|
|
2239
|
+
- Updated dependencies [8f47cca]
|
|
2240
|
+
- Updated dependencies [fad27689]
|
|
2241
|
+
- Updated dependencies [dff0d595]
|
|
2242
|
+
- Updated dependencies [fdd0b41]
|
|
2243
|
+
- Updated dependencies [eecb282]
|
|
2244
|
+
- Updated dependencies [f2c325c]
|
|
2245
|
+
- Updated dependencies [9e25a64]
|
|
2246
|
+
- Updated dependencies [beb499e6]
|
|
2247
|
+
- Updated dependencies [146ea391]
|
|
2248
|
+
- Updated dependencies [f2c92d5]
|
|
2249
|
+
- Updated dependencies [7bd3d99]
|
|
2250
|
+
- Updated dependencies [c47be30d]
|
|
2251
|
+
- Updated dependencies [e9a46acb]
|
|
2252
|
+
- Updated dependencies [f046f8e0]
|
|
2253
|
+
- Updated dependencies [04115e5]
|
|
2254
|
+
- Updated dependencies [b9273fd]
|
|
2255
|
+
- Updated dependencies [fa88889]
|
|
2256
|
+
- Updated dependencies [86d25315]
|
|
2257
|
+
- Updated dependencies [c670bd4]
|
|
2258
|
+
- Updated dependencies [3f9b8d7]
|
|
2259
|
+
- @akinon/next@1.48.0-rc.8
|
|
2260
|
+
- @akinon/pz-checkout-gift-pack@1.48.0-rc.8
|
|
2261
|
+
- @akinon/pz-one-click-checkout@1.48.0-rc.8
|
|
2262
|
+
- @akinon/pz-basket-gift-pack@1.48.0-rc.8
|
|
2263
|
+
- @akinon/pz-click-collect@1.48.0-rc.8
|
|
2264
|
+
- @akinon/pz-masterpass@1.48.0-rc.8
|
|
2265
|
+
- @akinon/pz-akifast@1.48.0-rc.8
|
|
2266
|
+
- @akinon/pz-gpay@1.48.0-rc.8
|
|
2267
|
+
- @akinon/pz-b2b@1.48.0-rc.8
|
|
2268
|
+
- @akinon/pz-bkm@1.48.0-rc.8
|
|
2269
|
+
- @akinon/pz-otp@1.48.0-rc.8
|
|
2270
|
+
- @akinon/pz-pay-on-delivery@1.48.0-rc.8
|
|
2271
|
+
- @akinon/pz-credit-payment@1.48.0-rc.8
|
|
2272
|
+
|
|
2273
|
+
## 1.48.0-rc.7
|
|
2274
|
+
|
|
2275
|
+
### Patch Changes
|
|
2276
|
+
|
|
2277
|
+
- Updated dependencies [26b809f]
|
|
2278
|
+
- @akinon/next@1.48.0-rc.7
|
|
2279
|
+
- @akinon/pz-akifast@1.48.0-rc.7
|
|
2280
|
+
- @akinon/pz-b2b@1.48.0-rc.7
|
|
2281
|
+
- @akinon/pz-basket-gift-pack@1.48.0-rc.7
|
|
2282
|
+
- @akinon/pz-bkm@1.48.0-rc.7
|
|
2283
|
+
- @akinon/pz-checkout-gift-pack@1.48.0-rc.7
|
|
2284
|
+
- @akinon/pz-click-collect@1.48.0-rc.7
|
|
2285
|
+
- @akinon/pz-credit-payment@1.48.0-rc.7
|
|
2286
|
+
- @akinon/pz-gpay@1.48.0-rc.7
|
|
2287
|
+
- @akinon/pz-masterpass@1.48.0-rc.7
|
|
2288
|
+
- @akinon/pz-one-click-checkout@1.48.0-rc.7
|
|
2289
|
+
- @akinon/pz-otp@1.48.0-rc.7
|
|
2290
|
+
- @akinon/pz-pay-on-delivery@1.48.0-rc.7
|
|
2291
|
+
|
|
2292
|
+
## 1.48.0-rc.6
|
|
2293
|
+
|
|
2294
|
+
### Patch Changes
|
|
2295
|
+
|
|
2296
|
+
- Updated dependencies [04115e5]
|
|
2297
|
+
- @akinon/next@1.48.0-rc.6
|
|
2298
|
+
- @akinon/pz-akifast@1.48.0-rc.6
|
|
2299
|
+
- @akinon/pz-b2b@1.48.0-rc.6
|
|
2300
|
+
- @akinon/pz-basket-gift-pack@1.48.0-rc.6
|
|
2301
|
+
- @akinon/pz-bkm@1.48.0-rc.6
|
|
2302
|
+
- @akinon/pz-checkout-gift-pack@1.48.0-rc.6
|
|
2303
|
+
- @akinon/pz-click-collect@1.48.0-rc.6
|
|
2304
|
+
- @akinon/pz-credit-payment@1.48.0-rc.6
|
|
2305
|
+
- @akinon/pz-gpay@1.48.0-rc.6
|
|
2306
|
+
- @akinon/pz-masterpass@1.48.0-rc.6
|
|
2307
|
+
- @akinon/pz-one-click-checkout@1.48.0-rc.6
|
|
2308
|
+
- @akinon/pz-otp@1.48.0-rc.6
|
|
2309
|
+
- @akinon/pz-pay-on-delivery@1.48.0-rc.6
|
|
2310
|
+
|
|
2311
|
+
## 1.48.0-rc.5
|
|
2312
|
+
|
|
2313
|
+
### Patch Changes
|
|
2314
|
+
|
|
2315
|
+
- Updated dependencies [20da358]
|
|
2316
|
+
- @akinon/next@1.48.0-rc.5
|
|
2317
|
+
- @akinon/pz-akifast@1.48.0-rc.5
|
|
2318
|
+
- @akinon/pz-b2b@1.48.0-rc.5
|
|
2319
|
+
- @akinon/pz-basket-gift-pack@1.48.0-rc.5
|
|
2320
|
+
- @akinon/pz-bkm@1.48.0-rc.5
|
|
2321
|
+
- @akinon/pz-checkout-gift-pack@1.48.0-rc.5
|
|
2322
|
+
- @akinon/pz-click-collect@1.48.0-rc.5
|
|
2323
|
+
- @akinon/pz-credit-payment@1.48.0-rc.5
|
|
2324
|
+
- @akinon/pz-gpay@1.48.0-rc.5
|
|
2325
|
+
- @akinon/pz-masterpass@1.48.0-rc.5
|
|
2326
|
+
- @akinon/pz-one-click-checkout@1.48.0-rc.5
|
|
2327
|
+
- @akinon/pz-otp@1.48.0-rc.5
|
|
2328
|
+
- @akinon/pz-pay-on-delivery@1.48.0-rc.5
|
|
2329
|
+
|
|
2330
|
+
## 1.48.0-rc.4
|
|
2331
|
+
|
|
2332
|
+
### Patch Changes
|
|
2333
|
+
|
|
2334
|
+
- Updated dependencies [5dfeea0]
|
|
2335
|
+
- @akinon/next@1.48.0-rc.4
|
|
2336
|
+
- @akinon/pz-akifast@1.48.0-rc.4
|
|
2337
|
+
- @akinon/pz-b2b@1.48.0-rc.4
|
|
2338
|
+
- @akinon/pz-basket-gift-pack@1.48.0-rc.4
|
|
2339
|
+
- @akinon/pz-bkm@1.48.0-rc.4
|
|
2340
|
+
- @akinon/pz-checkout-gift-pack@1.48.0-rc.4
|
|
2341
|
+
- @akinon/pz-click-collect@1.48.0-rc.4
|
|
2342
|
+
- @akinon/pz-credit-payment@1.48.0-rc.4
|
|
2343
|
+
- @akinon/pz-gpay@1.48.0-rc.4
|
|
2344
|
+
- @akinon/pz-masterpass@1.48.0-rc.4
|
|
2345
|
+
- @akinon/pz-one-click-checkout@1.48.0-rc.4
|
|
2346
|
+
- @akinon/pz-otp@1.48.0-rc.4
|
|
2347
|
+
- @akinon/pz-pay-on-delivery@1.48.0-rc.4
|
|
2348
|
+
|
|
2349
|
+
## 1.48.0-rc.3
|
|
2350
|
+
|
|
2351
|
+
### Minor Changes
|
|
2352
|
+
|
|
2353
|
+
- 90282b53: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
2354
|
+
- 572d2e84: ZERO-2667: Add iframe support for redirection payment methods
|
|
2355
|
+
- c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
2356
|
+
- 97b8bdc9: ZERO-2724: Remove onClick event in shipping options component
|
|
2357
|
+
- 714e0b46: ZERO-2759: update pz-click-collect peer dependencies
|
|
2358
|
+
- 7521265: ZERO-2787: Fix hover classname for favorite item
|
|
2359
|
+
- 8217463: ZERO-2887: Add LoaderSpinner to Filters component
|
|
2360
|
+
- 27a5296d: ZERO-2631:Fix Checkbox Click
|
|
2361
|
+
- 5a4c607: ZERO-2764: Add case-warning rule to eslint-plugin-projectzero
|
|
2362
|
+
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
2363
|
+
- e665a0a: ZERO-2625: Add click outside functionality to close mobile menu
|
|
2364
|
+
- 52c1373: ZERO-2619: Added fix flag for the staged linter
|
|
2365
|
+
- 552ee8a: ZERO-2777: fix link component usage
|
|
2366
|
+
- 03c4c3eb: ZERO-2731: Update Project Zero CLI command
|
|
2367
|
+
- 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
|
|
2368
|
+
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
2369
|
+
- 0d3a913e: ZERO-2725: Update decimal scale in Price component
|
|
2370
|
+
- 778a9a0b: ZERO-2740: Upgrade next to 14.2.4
|
|
2371
|
+
- 9b6bf91e: ZERO-2660: Change campaings to campaigns
|
|
2372
|
+
- 06650ca: ZERO-2620: Remove unnecessary pointer-events-none class
|
|
2373
|
+
- 74a12699: ZERO-2658:Edit product name clickability on completed order page
|
|
2374
|
+
- 4e1c15c: ZERO-2617: Remove TODO comment in ProductInfo component
|
|
2375
|
+
- d3474c64: ZERO-2655: Add data source shipping option
|
|
2376
|
+
- d2f0f15c: ZERO-2723: Update sentry version and dependencies
|
|
2377
|
+
- 75080fd6: ZERO-2630: Add max limit to postcode area
|
|
2378
|
+
- 9609eb2: ZERO-2779: Upgrade for tailwind
|
|
2379
|
+
- 91265bba: ZERO-2551: Improve pretty url and caching performance
|
|
2380
|
+
- 38a634e: ZERO-2893: Refactor category filter handling and URL parameters
|
|
2381
|
+
- 959e1fa: ZERO-2778: Upgrade for nextjs
|
|
2382
|
+
- 902d828a: ZERO-2621:edit position of loaderSpinner in favorites page
|
|
2383
|
+
- 7a4bb764: ZERO-2610:Refactor FilterItem component for better readability and efficiency
|
|
2384
|
+
- dfabc06: ZERO-2836: Upgrade version for tailwind
|
|
2385
|
+
- dff0d595: ZERO-2659: add formData support to proxy api requests
|
|
2386
|
+
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
2387
|
+
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
2388
|
+
- beb499e6: ZERO-2551: Add new tsconfig paths
|
|
876
2389
|
- f45aa87: ZERO-2904: Upgrade version for tailwindcss
|
|
2390
|
+
- fac2e5b: ZERO-2622: Add isMenuOpen state to Category reducer and update CategoryInfo component
|
|
2391
|
+
- 4614eeeb: ZERO-2602: The script that checks the build for standalone projects
|
|
2392
|
+
- e9a46acb: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
2393
|
+
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
2394
|
+
- b9273fd: ZERO-2889: add host headers to requests
|
|
2395
|
+
- 86d25315: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
2396
|
+
|
|
2397
|
+
### Patch Changes
|
|
2398
|
+
|
|
2399
|
+
- Updated dependencies [90282b53]
|
|
2400
|
+
- Updated dependencies [50b9069]
|
|
2401
|
+
- Updated dependencies [572d2e84]
|
|
2402
|
+
- Updated dependencies [a4c8d6a9]
|
|
2403
|
+
- Updated dependencies [fda5b92]
|
|
2404
|
+
- Updated dependencies [2d9b2b2]
|
|
2405
|
+
- Updated dependencies [c53ea3e6]
|
|
2406
|
+
- Updated dependencies [d93a507]
|
|
2407
|
+
- Updated dependencies [8d9ac9a]
|
|
2408
|
+
- Updated dependencies [18e8197]
|
|
2409
|
+
- Updated dependencies [714e0b46]
|
|
2410
|
+
- Updated dependencies [70279e7]
|
|
2411
|
+
- Updated dependencies [6c25f66]
|
|
2412
|
+
- Updated dependencies [bc2b411]
|
|
2413
|
+
- Updated dependencies [3bf2dd9]
|
|
2414
|
+
- Updated dependencies [e9541a1]
|
|
2415
|
+
- Updated dependencies [c53ef7b9]
|
|
2416
|
+
- Updated dependencies [9d94f7e]
|
|
2417
|
+
- Updated dependencies [2e6104d]
|
|
2418
|
+
- Updated dependencies [64699d3]
|
|
2419
|
+
- Updated dependencies [0d3a913e]
|
|
2420
|
+
- Updated dependencies [1448a96e]
|
|
2421
|
+
- Updated dependencies [1ec2e9d]
|
|
2422
|
+
- Updated dependencies [d6edb1d]
|
|
2423
|
+
- Updated dependencies [d3474c64]
|
|
2424
|
+
- Updated dependencies [75080fd6]
|
|
2425
|
+
- Updated dependencies [17f8752]
|
|
2426
|
+
- Updated dependencies [c45b62c]
|
|
2427
|
+
- Updated dependencies [91265bba]
|
|
2428
|
+
- Updated dependencies [bbe18b9f]
|
|
2429
|
+
- Updated dependencies [d409996]
|
|
2430
|
+
- Updated dependencies [4920742]
|
|
2431
|
+
- Updated dependencies [12a873e]
|
|
2432
|
+
- Updated dependencies [69ca080]
|
|
2433
|
+
- Updated dependencies [7e56d6b]
|
|
2434
|
+
- Updated dependencies [94b6928]
|
|
2435
|
+
- Updated dependencies [98bb8dcd]
|
|
2436
|
+
- Updated dependencies [46b7aad]
|
|
2437
|
+
- Updated dependencies [dcc8a150]
|
|
2438
|
+
- Updated dependencies [8f47cca]
|
|
2439
|
+
- Updated dependencies [fad27689]
|
|
2440
|
+
- Updated dependencies [dff0d595]
|
|
2441
|
+
- Updated dependencies [fdd0b41]
|
|
2442
|
+
- Updated dependencies [eecb282]
|
|
2443
|
+
- Updated dependencies [f2c325c]
|
|
2444
|
+
- Updated dependencies [9e25a64]
|
|
2445
|
+
- Updated dependencies [beb499e6]
|
|
2446
|
+
- Updated dependencies [146ea39]
|
|
2447
|
+
- Updated dependencies [f2c92d5]
|
|
2448
|
+
- Updated dependencies [7bd3d99]
|
|
2449
|
+
- Updated dependencies [c47be30d]
|
|
2450
|
+
- Updated dependencies [e9a46acb]
|
|
2451
|
+
- Updated dependencies [f046f8e0]
|
|
2452
|
+
- Updated dependencies [b9273fd]
|
|
2453
|
+
- Updated dependencies [86d25315]
|
|
2454
|
+
- Updated dependencies [c670bd4]
|
|
2455
|
+
- Updated dependencies [3f9b8d7]
|
|
2456
|
+
- @akinon/next@1.48.0-rc.3
|
|
2457
|
+
- @akinon/pz-checkout-gift-pack@1.48.0-rc.3
|
|
2458
|
+
- @akinon/pz-one-click-checkout@1.48.0-rc.3
|
|
2459
|
+
- @akinon/pz-basket-gift-pack@1.48.0-rc.3
|
|
2460
|
+
- @akinon/pz-click-collect@1.48.0-rc.3
|
|
2461
|
+
- @akinon/pz-masterpass@1.48.0-rc.3
|
|
2462
|
+
- @akinon/pz-akifast@1.48.0-rc.3
|
|
2463
|
+
- @akinon/pz-gpay@1.48.0-rc.3
|
|
2464
|
+
- @akinon/pz-b2b@1.48.0-rc.3
|
|
2465
|
+
- @akinon/pz-bkm@1.48.0-rc.3
|
|
2466
|
+
- @akinon/pz-otp@1.48.0-rc.3
|
|
2467
|
+
- @akinon/pz-pay-on-delivery@1.48.0-rc.3
|
|
2468
|
+
- @akinon/pz-credit-payment@1.48.0-rc.3
|
|
2469
|
+
|
|
2470
|
+
## 1.48.0-rc.2
|
|
2471
|
+
|
|
2472
|
+
### Minor Changes
|
|
2473
|
+
|
|
2474
|
+
- 2e6104d: ZERO-2888:Edit the numbering in the pagination and the visibility of the prev and next buttons
|
|
2475
|
+
|
|
2476
|
+
### Patch Changes
|
|
2477
|
+
|
|
2478
|
+
- Updated dependencies [2e6104d]
|
|
2479
|
+
- @akinon/next@1.48.0-rc.2
|
|
2480
|
+
- @akinon/pz-akifast@1.48.0-rc.2
|
|
2481
|
+
- @akinon/pz-b2b@1.48.0-rc.2
|
|
2482
|
+
- @akinon/pz-basket-gift-pack@1.48.0-rc.2
|
|
2483
|
+
- @akinon/pz-bkm@1.48.0-rc.2
|
|
2484
|
+
- @akinon/pz-checkout-gift-pack@1.48.0-rc.2
|
|
2485
|
+
- @akinon/pz-click-collect@1.48.0-rc.2
|
|
2486
|
+
- @akinon/pz-credit-payment@1.48.0-rc.2
|
|
2487
|
+
- @akinon/pz-gpay@1.48.0-rc.2
|
|
2488
|
+
- @akinon/pz-masterpass@1.48.0-rc.2
|
|
2489
|
+
- @akinon/pz-one-click-checkout@1.48.0-rc.2
|
|
2490
|
+
- @akinon/pz-otp@1.48.0-rc.2
|
|
2491
|
+
- @akinon/pz-pay-on-delivery@1.48.0-rc.2
|
|
2492
|
+
|
|
2493
|
+
## 1.48.0-rc.1
|
|
2494
|
+
|
|
2495
|
+
### Patch Changes
|
|
2496
|
+
|
|
2497
|
+
- Updated dependencies [fdd0b41]
|
|
2498
|
+
- @akinon/next@1.48.0-rc.1
|
|
2499
|
+
- @akinon/pz-akifast@1.48.0-rc.1
|
|
2500
|
+
- @akinon/pz-b2b@1.48.0-rc.1
|
|
2501
|
+
- @akinon/pz-basket-gift-pack@1.48.0-rc.1
|
|
2502
|
+
- @akinon/pz-bkm@1.48.0-rc.1
|
|
2503
|
+
- @akinon/pz-checkout-gift-pack@1.48.0-rc.1
|
|
2504
|
+
- @akinon/pz-click-collect@1.48.0-rc.1
|
|
2505
|
+
- @akinon/pz-credit-payment@1.48.0-rc.1
|
|
2506
|
+
- @akinon/pz-gpay@1.48.0-rc.1
|
|
2507
|
+
- @akinon/pz-masterpass@1.48.0-rc.1
|
|
2508
|
+
- @akinon/pz-one-click-checkout@1.48.0-rc.1
|
|
2509
|
+
- @akinon/pz-otp@1.48.0-rc.1
|
|
2510
|
+
- @akinon/pz-pay-on-delivery@1.48.0-rc.1
|
|
2511
|
+
|
|
2512
|
+
## 1.48.0-rc.0
|
|
2513
|
+
|
|
2514
|
+
### Minor Changes
|
|
2515
|
+
|
|
2516
|
+
- 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
2517
|
+
- 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
|
|
2518
|
+
- c53ea3e6: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
2519
|
+
- 97b8bdc: ZERO-2724: Remove onClick event in shipping options component
|
|
2520
|
+
- 714e0b4: ZERO-2759: update pz-click-collect peer dependencies
|
|
2521
|
+
- 7521265: ZERO-2787: Fix hover classname for favorite item
|
|
2522
|
+
- 27a5296d: ZERO-2631:Fix Checkbox Click
|
|
2523
|
+
- 5a4c607: ZERO-2764: Add case-warning rule to eslint-plugin-projectzero
|
|
2524
|
+
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
2525
|
+
- e665a0a: ZERO-2625: Add click outside functionality to close mobile menu
|
|
2526
|
+
- 52c1373: ZERO-2619: Added fix flag for the staged linter
|
|
2527
|
+
- 552ee8a: ZERO-2777: fix link component usage
|
|
2528
|
+
- 03c4c3e: ZERO-2731: Update Project Zero CLI command
|
|
2529
|
+
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
2530
|
+
- 0d3a913: ZERO-2725: Update decimal scale in Price component
|
|
2531
|
+
- 778a9a0: ZERO-2740: Upgrade next to 14.2.4
|
|
2532
|
+
- 9b6bf91e: ZERO-2660: Change campaings to campaigns
|
|
2533
|
+
- 06650ca: ZERO-2620: Remove unnecessary pointer-events-none class
|
|
2534
|
+
- 74a12699: ZERO-2658:Edit product name clickability on completed order page
|
|
2535
|
+
- 4e1c15c: ZERO-2617: Remove TODO comment in ProductInfo component
|
|
2536
|
+
- d3474c6: ZERO-2655: Add data source shipping option
|
|
2537
|
+
- d2f0f15: ZERO-2723: Update sentry version and dependencies
|
|
2538
|
+
- 75080fd6: ZERO-2630: Add max limit to postcode area
|
|
2539
|
+
- 9609eb2: ZERO-2779: Upgrade for tailwind
|
|
2540
|
+
- 91265bba: ZERO-2551: Improve pretty url and caching performance
|
|
2541
|
+
- 959e1fa: ZERO-2778: Upgrade for nextjs
|
|
2542
|
+
- 902d828a: ZERO-2621:edit position of loaderSpinner in favorites page
|
|
2543
|
+
- 7a4bb764: ZERO-2610:Refactor FilterItem component for better readability and efficiency
|
|
2544
|
+
- dfabc06: ZERO-2836: Upgrade version for tailwind
|
|
2545
|
+
- dff0d595: ZERO-2659: add formData support to proxy api requests
|
|
2546
|
+
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
2547
|
+
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
2548
|
+
- beb499e6: ZERO-2551: Add new tsconfig paths
|
|
2549
|
+
- fac2e5b: ZERO-2622: Add isMenuOpen state to Category reducer and update CategoryInfo component
|
|
2550
|
+
- 4614eeeb: ZERO-2602: The script that checks the build for standalone projects
|
|
2551
|
+
- e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
2552
|
+
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
2553
|
+
- b9273fd: ZERO-2889: add host headers to requests
|
|
2554
|
+
- 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
877
2555
|
|
|
878
2556
|
### Patch Changes
|
|
879
2557
|
|
|
880
|
-
-
|
|
881
|
-
-
|
|
882
|
-
-
|
|
883
|
-
-
|
|
884
|
-
-
|
|
885
|
-
-
|
|
886
|
-
-
|
|
887
|
-
-
|
|
888
|
-
-
|
|
889
|
-
-
|
|
890
|
-
-
|
|
891
|
-
-
|
|
892
|
-
-
|
|
2558
|
+
- Updated dependencies [90282b5]
|
|
2559
|
+
- Updated dependencies [50b9069]
|
|
2560
|
+
- Updated dependencies [572d2e8]
|
|
2561
|
+
- Updated dependencies [a4c8d6a9]
|
|
2562
|
+
- Updated dependencies [fda5b92]
|
|
2563
|
+
- Updated dependencies [2d9b2b2]
|
|
2564
|
+
- Updated dependencies [c53ea3e6]
|
|
2565
|
+
- Updated dependencies [d93a507]
|
|
2566
|
+
- Updated dependencies [8d9ac9a]
|
|
2567
|
+
- Updated dependencies [18e8197]
|
|
2568
|
+
- Updated dependencies [714e0b4]
|
|
2569
|
+
- Updated dependencies [70279e7]
|
|
2570
|
+
- Updated dependencies [6c25f66]
|
|
2571
|
+
- Updated dependencies [bc2b411]
|
|
2572
|
+
- Updated dependencies [3bf2dd9]
|
|
2573
|
+
- Updated dependencies [e9541a1]
|
|
2574
|
+
- Updated dependencies [c53ef7b9]
|
|
2575
|
+
- Updated dependencies [9d94f7e]
|
|
2576
|
+
- Updated dependencies [64699d3]
|
|
2577
|
+
- Updated dependencies [0d3a913]
|
|
2578
|
+
- Updated dependencies [1448a96e]
|
|
2579
|
+
- Updated dependencies [1ec2e9d]
|
|
2580
|
+
- Updated dependencies [d6edb1d]
|
|
2581
|
+
- Updated dependencies [d3474c6]
|
|
2582
|
+
- Updated dependencies [75080fd6]
|
|
2583
|
+
- Updated dependencies [17f8752]
|
|
2584
|
+
- Updated dependencies [c45b62c]
|
|
2585
|
+
- Updated dependencies [91265bba]
|
|
2586
|
+
- Updated dependencies [bbe18b9f]
|
|
2587
|
+
- Updated dependencies [d409996]
|
|
2588
|
+
- Updated dependencies [4920742]
|
|
2589
|
+
- Updated dependencies [12a873e]
|
|
2590
|
+
- Updated dependencies [69ca080]
|
|
2591
|
+
- Updated dependencies [7e56d6b]
|
|
2592
|
+
- Updated dependencies [94b6928]
|
|
2593
|
+
- Updated dependencies [98bb8dc]
|
|
2594
|
+
- Updated dependencies [46b7aad]
|
|
2595
|
+
- Updated dependencies [dcc8a15]
|
|
2596
|
+
- Updated dependencies [8f47cca]
|
|
2597
|
+
- Updated dependencies [fad2768]
|
|
2598
|
+
- Updated dependencies [dff0d595]
|
|
2599
|
+
- Updated dependencies [eecb282]
|
|
2600
|
+
- Updated dependencies [f2c325c]
|
|
2601
|
+
- Updated dependencies [9e25a64]
|
|
2602
|
+
- Updated dependencies [beb499e6]
|
|
2603
|
+
- Updated dependencies [146ea39]
|
|
2604
|
+
- Updated dependencies [f2c92d5]
|
|
2605
|
+
- Updated dependencies [7bd3d99]
|
|
2606
|
+
- Updated dependencies [c47be30]
|
|
2607
|
+
- Updated dependencies [e9a46ac]
|
|
2608
|
+
- Updated dependencies [f046f8e0]
|
|
2609
|
+
- Updated dependencies [b9273fd]
|
|
2610
|
+
- Updated dependencies [86d2531]
|
|
2611
|
+
- Updated dependencies [c670bd4]
|
|
2612
|
+
- Updated dependencies [3f9b8d7]
|
|
2613
|
+
- @akinon/next@1.48.0-rc.0
|
|
2614
|
+
- @akinon/pz-checkout-gift-pack@1.48.0-rc.0
|
|
2615
|
+
- @akinon/pz-one-click-checkout@1.48.0-rc.0
|
|
2616
|
+
- @akinon/pz-basket-gift-pack@1.48.0-rc.0
|
|
2617
|
+
- @akinon/pz-click-collect@1.48.0-rc.0
|
|
2618
|
+
- @akinon/pz-masterpass@1.48.0-rc.0
|
|
2619
|
+
- @akinon/pz-akifast@1.48.0-rc.0
|
|
2620
|
+
- @akinon/pz-gpay@1.48.0-rc.0
|
|
2621
|
+
- @akinon/pz-b2b@1.48.0-rc.0
|
|
2622
|
+
- @akinon/pz-bkm@1.48.0-rc.0
|
|
2623
|
+
- @akinon/pz-otp@1.48.0-rc.0
|
|
2624
|
+
- @akinon/pz-pay-on-delivery@1.48.0-rc.0
|
|
2625
|
+
- @akinon/pz-credit-payment@1.48.0-rc.0
|
|
893
2626
|
|
|
894
2627
|
## 1.47.0
|
|
895
2628
|
|
|
@@ -933,65 +2666,841 @@
|
|
|
933
2666
|
- @akinon/pz-otp@1.46.0
|
|
934
2667
|
- @akinon/pz-pay-on-delivery@1.46.0
|
|
935
2668
|
|
|
936
|
-
## 1.45.0
|
|
2669
|
+
## 1.45.0
|
|
2670
|
+
|
|
2671
|
+
### Patch Changes
|
|
2672
|
+
|
|
2673
|
+
- Updated dependencies [90282b5]
|
|
2674
|
+
- Updated dependencies [50b9069]
|
|
2675
|
+
- Updated dependencies [572d2e8]
|
|
2676
|
+
- Updated dependencies [a4c8d6a9]
|
|
2677
|
+
- Updated dependencies [fda5b92]
|
|
2678
|
+
- Updated dependencies [2d9b2b2]
|
|
2679
|
+
- Updated dependencies [c53ea3e]
|
|
2680
|
+
- Updated dependencies [8d9ac9a]
|
|
2681
|
+
- Updated dependencies [18e8197]
|
|
2682
|
+
- Updated dependencies [714e0b4]
|
|
2683
|
+
- Updated dependencies [70279e7]
|
|
2684
|
+
- Updated dependencies [6c25f66]
|
|
2685
|
+
- Updated dependencies [bc2b411]
|
|
2686
|
+
- Updated dependencies [3bf2dd9]
|
|
2687
|
+
- Updated dependencies [e9541a1]
|
|
2688
|
+
- Updated dependencies [c53ef7b9]
|
|
2689
|
+
- Updated dependencies [9d94f7e]
|
|
2690
|
+
- Updated dependencies [64699d3]
|
|
2691
|
+
- Updated dependencies [0d3a913]
|
|
2692
|
+
- Updated dependencies [1448a96e]
|
|
2693
|
+
- Updated dependencies [d6edb1d]
|
|
2694
|
+
- Updated dependencies [d3474c6]
|
|
2695
|
+
- Updated dependencies [75080fd6]
|
|
2696
|
+
- Updated dependencies [17f8752]
|
|
2697
|
+
- Updated dependencies [c45b62c]
|
|
2698
|
+
- Updated dependencies [91265bba]
|
|
2699
|
+
- Updated dependencies [bbe18b9f]
|
|
2700
|
+
- Updated dependencies [d409996]
|
|
2701
|
+
- Updated dependencies [4920742]
|
|
2702
|
+
- Updated dependencies [69ca080]
|
|
2703
|
+
- Updated dependencies [7e56d6b]
|
|
2704
|
+
- Updated dependencies [94b6928]
|
|
2705
|
+
- Updated dependencies [98bb8dc]
|
|
2706
|
+
- Updated dependencies [46b7aad]
|
|
2707
|
+
- Updated dependencies [dcc8a15]
|
|
2708
|
+
- Updated dependencies [8f47cca]
|
|
2709
|
+
- Updated dependencies [fad2768]
|
|
2710
|
+
- Updated dependencies [dff0d595]
|
|
2711
|
+
- Updated dependencies [eecb282]
|
|
2712
|
+
- Updated dependencies [f2c325c]
|
|
2713
|
+
- Updated dependencies [9e25a64]
|
|
2714
|
+
- Updated dependencies [beb499e6]
|
|
2715
|
+
- Updated dependencies [948eb42]
|
|
2716
|
+
- Updated dependencies [146ea39]
|
|
2717
|
+
- Updated dependencies [f2c92d5]
|
|
2718
|
+
- Updated dependencies [7bd3d99]
|
|
2719
|
+
- Updated dependencies [c47be30]
|
|
2720
|
+
- Updated dependencies [e9a46ac]
|
|
2721
|
+
- Updated dependencies [f046f8e0]
|
|
2722
|
+
- Updated dependencies [86d2531]
|
|
2723
|
+
- Updated dependencies [3f9b8d7]
|
|
2724
|
+
- @akinon/next@1.45.0-rc.5
|
|
2725
|
+
- @akinon/pz-checkout-gift-pack@1.45.0-rc.5
|
|
2726
|
+
- @akinon/pz-one-click-checkout@1.45.0-rc.5
|
|
2727
|
+
- @akinon/pz-basket-gift-pack@1.45.0-rc.5
|
|
2728
|
+
- @akinon/pz-click-collect@1.45.0-rc.5
|
|
2729
|
+
- @akinon/pz-masterpass@1.45.0-rc.5
|
|
2730
|
+
- @akinon/pz-akifast@1.45.0-rc.5
|
|
2731
|
+
- @akinon/pz-gpay@1.45.0-rc.5
|
|
2732
|
+
- @akinon/pz-b2b@1.45.0-rc.5
|
|
2733
|
+
- @akinon/pz-bkm@1.45.0-rc.5
|
|
2734
|
+
- @akinon/pz-otp@1.45.0-rc.5
|
|
2735
|
+
- @akinon/pz-pay-on-delivery@1.45.0-rc.5
|
|
2736
|
+
- @akinon/pz-credit-payment@1.45.0-rc.5
|
|
2737
|
+
|
|
2738
|
+
## 1.45.0-rc.4
|
|
2739
|
+
|
|
2740
|
+
### Patch Changes
|
|
2741
|
+
|
|
2742
|
+
- Updated dependencies [8f47cca]
|
|
2743
|
+
- @akinon/next@1.45.0-rc.4
|
|
2744
|
+
- @akinon/pz-akifast@1.45.0-rc.4
|
|
2745
|
+
- @akinon/pz-b2b@1.45.0-rc.4
|
|
2746
|
+
- @akinon/pz-basket-gift-pack@1.45.0-rc.4
|
|
2747
|
+
- @akinon/pz-bkm@1.45.0-rc.4
|
|
2748
|
+
- @akinon/pz-checkout-gift-pack@1.45.0-rc.4
|
|
2749
|
+
- @akinon/pz-click-collect@1.45.0-rc.4
|
|
2750
|
+
- @akinon/pz-credit-payment@1.45.0-rc.4
|
|
2751
|
+
- @akinon/pz-gpay@1.45.0-rc.4
|
|
2752
|
+
- @akinon/pz-masterpass@1.45.0-rc.4
|
|
2753
|
+
- @akinon/pz-one-click-checkout@1.45.0-rc.4
|
|
2754
|
+
- @akinon/pz-otp@1.45.0-rc.4
|
|
2755
|
+
- @akinon/pz-pay-on-delivery@1.45.0-rc.4
|
|
2756
|
+
|
|
2757
|
+
## 1.45.0-rc.3
|
|
2758
|
+
|
|
2759
|
+
### Patch Changes
|
|
2760
|
+
|
|
2761
|
+
- Updated dependencies [948eb42]
|
|
2762
|
+
- @akinon/next@1.45.0-rc.3
|
|
2763
|
+
- @akinon/pz-akifast@1.45.0-rc.3
|
|
2764
|
+
- @akinon/pz-b2b@1.45.0-rc.3
|
|
2765
|
+
- @akinon/pz-basket-gift-pack@1.45.0-rc.3
|
|
2766
|
+
- @akinon/pz-bkm@1.45.0-rc.3
|
|
2767
|
+
- @akinon/pz-checkout-gift-pack@1.45.0-rc.3
|
|
2768
|
+
- @akinon/pz-click-collect@1.45.0-rc.3
|
|
2769
|
+
- @akinon/pz-credit-payment@1.45.0-rc.3
|
|
2770
|
+
- @akinon/pz-gpay@1.45.0-rc.3
|
|
2771
|
+
- @akinon/pz-masterpass@1.45.0-rc.3
|
|
2772
|
+
- @akinon/pz-one-click-checkout@1.45.0-rc.3
|
|
2773
|
+
- @akinon/pz-otp@1.45.0-rc.3
|
|
2774
|
+
- @akinon/pz-pay-on-delivery@1.45.0-rc.3
|
|
2775
|
+
|
|
2776
|
+
## 1.45.0-rc.2
|
|
2777
|
+
|
|
2778
|
+
### Minor Changes
|
|
2779
|
+
|
|
2780
|
+
- dfabc06: ZERO-2836: Upgrade version for tailwind
|
|
2781
|
+
|
|
2782
|
+
### Patch Changes
|
|
2783
|
+
|
|
2784
|
+
- Updated dependencies [c45b62c]
|
|
2785
|
+
- Updated dependencies [f2c325c]
|
|
2786
|
+
- @akinon/next@1.45.0-rc.2
|
|
2787
|
+
- @akinon/pz-b2b@1.45.0-rc.2
|
|
2788
|
+
- @akinon/pz-akifast@1.45.0-rc.2
|
|
2789
|
+
- @akinon/pz-basket-gift-pack@1.45.0-rc.2
|
|
2790
|
+
- @akinon/pz-bkm@1.45.0-rc.2
|
|
2791
|
+
- @akinon/pz-checkout-gift-pack@1.45.0-rc.2
|
|
2792
|
+
- @akinon/pz-click-collect@1.45.0-rc.2
|
|
2793
|
+
- @akinon/pz-credit-payment@1.45.0-rc.2
|
|
2794
|
+
- @akinon/pz-gpay@1.45.0-rc.2
|
|
2795
|
+
- @akinon/pz-masterpass@1.45.0-rc.2
|
|
2796
|
+
- @akinon/pz-one-click-checkout@1.45.0-rc.2
|
|
2797
|
+
- @akinon/pz-otp@1.45.0-rc.2
|
|
2798
|
+
- @akinon/pz-pay-on-delivery@1.45.0-rc.2
|
|
2799
|
+
|
|
2800
|
+
## 1.45.0-rc.1
|
|
2801
|
+
|
|
2802
|
+
### Patch Changes
|
|
2803
|
+
|
|
2804
|
+
- Updated dependencies [7e56d6b]
|
|
2805
|
+
- @akinon/next@1.45.0-rc.1
|
|
2806
|
+
- @akinon/pz-akifast@1.45.0-rc.1
|
|
2807
|
+
- @akinon/pz-b2b@1.45.0-rc.1
|
|
2808
|
+
- @akinon/pz-basket-gift-pack@1.45.0-rc.1
|
|
2809
|
+
- @akinon/pz-bkm@1.45.0-rc.1
|
|
2810
|
+
- @akinon/pz-checkout-gift-pack@1.45.0-rc.1
|
|
2811
|
+
- @akinon/pz-click-collect@1.45.0-rc.1
|
|
2812
|
+
- @akinon/pz-credit-payment@1.45.0-rc.1
|
|
2813
|
+
- @akinon/pz-gpay@1.45.0-rc.1
|
|
2814
|
+
- @akinon/pz-masterpass@1.45.0-rc.1
|
|
2815
|
+
- @akinon/pz-one-click-checkout@1.45.0-rc.1
|
|
2816
|
+
- @akinon/pz-otp@1.45.0-rc.1
|
|
2817
|
+
- @akinon/pz-pay-on-delivery@1.45.0-rc.1
|
|
2818
|
+
|
|
2819
|
+
## 1.45.0-rc.0
|
|
2820
|
+
|
|
2821
|
+
### Minor Changes
|
|
2822
|
+
|
|
2823
|
+
- 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
2824
|
+
- 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
|
|
2825
|
+
- c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
2826
|
+
- 97b8bdc: ZERO-2724: Remove onClick event in shipping options component
|
|
2827
|
+
- 714e0b4: ZERO-2759: update pz-click-collect peer dependencies
|
|
2828
|
+
- 7521265: ZERO-2787: Fix hover classname for favorite item
|
|
2829
|
+
- 27a5296: ZERO-2631:Fix Checkbox Click
|
|
2830
|
+
- 5a4c607: ZERO-2764: Add case-warning rule to eslint-plugin-projectzero
|
|
2831
|
+
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
2832
|
+
- e665a0a: ZERO-2625: Add click outside functionality to close mobile menu
|
|
2833
|
+
- 52c1373: ZERO-2619: Added fix flag for the staged linter
|
|
2834
|
+
- 552ee8a: ZERO-2777: fix link component usage
|
|
2835
|
+
- 03c4c3e: ZERO-2731: Update Project Zero CLI command
|
|
2836
|
+
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
2837
|
+
- 0d3a913: ZERO-2725: Update decimal scale in Price component
|
|
2838
|
+
- 778a9a0: ZERO-2740: Upgrade next to 14.2.4
|
|
2839
|
+
- 9b6bf91: ZERO-2660: Change campaings to campaigns
|
|
2840
|
+
- 06650ca: ZERO-2620: Remove unnecessary pointer-events-none class
|
|
2841
|
+
- 74a1269: ZERO-2658:Edit product name clickability on completed order page
|
|
2842
|
+
- d3474c6: ZERO-2655: Add data source shipping option
|
|
2843
|
+
- d2f0f15: ZERO-2723: Update sentry version and dependencies
|
|
2844
|
+
- 75080fd: ZERO-2630: Add max limit to postcode area
|
|
2845
|
+
- 9609eb2: ZERO-2779: Upgrade for tailwind
|
|
2846
|
+
- 91265bb: ZERO-2551: Improve pretty url and caching performance
|
|
2847
|
+
- 959e1fa: ZERO-2778: Upgrade for nextjs
|
|
2848
|
+
- 902d828: ZERO-2621:edit position of loaderSpinner in favorites page
|
|
2849
|
+
- 7a4bb76: ZERO-2610:Refactor FilterItem component for better readability and efficiency
|
|
2850
|
+
- dff0d59: ZERO-2659: add formData support to proxy api requests
|
|
2851
|
+
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
2852
|
+
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
2853
|
+
- beb499e: ZERO-2551: Add new tsconfig paths
|
|
2854
|
+
- fac2e5b: ZERO-2622: Add isMenuOpen state to Category reducer and update CategoryInfo component
|
|
2855
|
+
- 4614eee: ZERO-2602: The script that checks the build for standalone projects
|
|
2856
|
+
- e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
2857
|
+
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
2858
|
+
- 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
2859
|
+
|
|
2860
|
+
### Patch Changes
|
|
2861
|
+
|
|
2862
|
+
- Updated dependencies [90282b5]
|
|
2863
|
+
- Updated dependencies [50b9069]
|
|
2864
|
+
- Updated dependencies [572d2e8]
|
|
2865
|
+
- Updated dependencies [a4c8d6a9]
|
|
2866
|
+
- Updated dependencies [fda5b92]
|
|
2867
|
+
- Updated dependencies [2d9b2b2]
|
|
2868
|
+
- Updated dependencies [c53ea3e]
|
|
2869
|
+
- Updated dependencies [8d9ac9a]
|
|
2870
|
+
- Updated dependencies [18e8197]
|
|
2871
|
+
- Updated dependencies [714e0b4]
|
|
2872
|
+
- Updated dependencies [70279e7]
|
|
2873
|
+
- Updated dependencies [6c25f66]
|
|
2874
|
+
- Updated dependencies [bc2b411]
|
|
2875
|
+
- Updated dependencies [3bf2dd9]
|
|
2876
|
+
- Updated dependencies [e9541a1]
|
|
2877
|
+
- Updated dependencies [c53ef7b9]
|
|
2878
|
+
- Updated dependencies [9d94f7e]
|
|
2879
|
+
- Updated dependencies [64699d3]
|
|
2880
|
+
- Updated dependencies [0d3a913]
|
|
2881
|
+
- Updated dependencies [1448a96]
|
|
2882
|
+
- Updated dependencies [2ab6e08]
|
|
2883
|
+
- Updated dependencies [d6edb1d]
|
|
2884
|
+
- Updated dependencies [d3474c6]
|
|
2885
|
+
- Updated dependencies [75080fd]
|
|
2886
|
+
- Updated dependencies [17f8752]
|
|
2887
|
+
- Updated dependencies [91265bb]
|
|
2888
|
+
- Updated dependencies [bbe18b9]
|
|
2889
|
+
- Updated dependencies [d409996]
|
|
2890
|
+
- Updated dependencies [4920742]
|
|
2891
|
+
- Updated dependencies [69ca080]
|
|
2892
|
+
- Updated dependencies [94b6928]
|
|
2893
|
+
- Updated dependencies [98bb8dc]
|
|
2894
|
+
- Updated dependencies [46b7aad]
|
|
2895
|
+
- Updated dependencies [dcc8a15]
|
|
2896
|
+
- Updated dependencies [fad2768]
|
|
2897
|
+
- Updated dependencies [dff0d59]
|
|
2898
|
+
- Updated dependencies [eecb282]
|
|
2899
|
+
- Updated dependencies [9e25a64]
|
|
2900
|
+
- Updated dependencies [beb499e]
|
|
2901
|
+
- Updated dependencies [146ea39]
|
|
2902
|
+
- Updated dependencies [f2c92d5]
|
|
2903
|
+
- Updated dependencies [7bd3d99]
|
|
2904
|
+
- Updated dependencies [c47be30]
|
|
2905
|
+
- Updated dependencies [e9a46ac]
|
|
2906
|
+
- Updated dependencies [f046f8e0]
|
|
2907
|
+
- Updated dependencies [86d2531]
|
|
2908
|
+
- Updated dependencies [3f9b8d7]
|
|
2909
|
+
- @akinon/next@1.45.0-rc.0
|
|
2910
|
+
- @akinon/pz-checkout-gift-pack@1.45.0-rc.0
|
|
2911
|
+
- @akinon/pz-one-click-checkout@1.45.0-rc.0
|
|
2912
|
+
- @akinon/pz-basket-gift-pack@1.45.0-rc.0
|
|
2913
|
+
- @akinon/pz-click-collect@1.45.0-rc.0
|
|
2914
|
+
- @akinon/pz-masterpass@1.45.0-rc.0
|
|
2915
|
+
- @akinon/pz-akifast@1.45.0-rc.0
|
|
2916
|
+
- @akinon/pz-gpay@1.45.0-rc.0
|
|
2917
|
+
- @akinon/pz-b2b@1.45.0-rc.0
|
|
2918
|
+
- @akinon/pz-bkm@1.45.0-rc.0
|
|
2919
|
+
- @akinon/pz-otp@1.45.0-rc.0
|
|
2920
|
+
- @akinon/pz-pay-on-delivery@1.45.0-rc.0
|
|
2921
|
+
- @akinon/pz-credit-payment@1.45.0-rc.0
|
|
2922
|
+
|
|
2923
|
+
## 1.44.0
|
|
2924
|
+
|
|
2925
|
+
### Patch Changes
|
|
2926
|
+
|
|
2927
|
+
- @akinon/next@1.44.0
|
|
2928
|
+
- @akinon/pz-akifast@1.44.0
|
|
2929
|
+
- @akinon/pz-b2b@1.44.0
|
|
2930
|
+
- @akinon/pz-basket-gift-pack@1.44.0
|
|
2931
|
+
- @akinon/pz-bkm@1.44.0
|
|
2932
|
+
- @akinon/pz-checkout-gift-pack@1.44.0
|
|
2933
|
+
- @akinon/pz-click-collect@1.44.0
|
|
2934
|
+
- @akinon/pz-credit-payment@1.44.0
|
|
2935
|
+
- @akinon/pz-gpay@1.44.0
|
|
2936
|
+
- @akinon/pz-masterpass@1.44.0
|
|
2937
|
+
- @akinon/pz-one-click-checkout@1.44.0
|
|
2938
|
+
- @akinon/pz-otp@1.44.0
|
|
2939
|
+
- @akinon/pz-pay-on-delivery@1.44.0
|
|
2940
|
+
|
|
2941
|
+
## 1.43.0
|
|
2942
|
+
|
|
2943
|
+
### Minor Changes
|
|
2944
|
+
|
|
2945
|
+
- 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
2946
|
+
- 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
|
|
2947
|
+
- c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
2948
|
+
- 97b8bdc: ZERO-2724: Remove onClick event in shipping options component
|
|
2949
|
+
- 714e0b4: ZERO-2759: update pz-click-collect peer dependencies
|
|
2950
|
+
- 7521265: ZERO-2787: Fix hover classname for favorite item
|
|
2951
|
+
- 27a5296: ZERO-2631:Fix Checkbox Click
|
|
2952
|
+
- 5a4c607: ZERO-2764: Add case-warning rule to eslint-plugin-projectzero
|
|
2953
|
+
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
2954
|
+
- e665a0a: ZERO-2625: Add click outside functionality to close mobile menu
|
|
2955
|
+
- 52c1373: ZERO-2619: Added fix flag for the staged linter
|
|
2956
|
+
- 552ee8a: ZERO-2777: fix link component usage
|
|
2957
|
+
- 03c4c3e: ZERO-2731: Update Project Zero CLI command
|
|
2958
|
+
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
2959
|
+
- 0d3a913: ZERO-2725: Update decimal scale in Price component
|
|
2960
|
+
- 778a9a0: ZERO-2740: Upgrade next to 14.2.4
|
|
2961
|
+
- 9b6bf91: ZERO-2660: Change campaings to campaigns
|
|
2962
|
+
- 06650ca: ZERO-2620: Remove unnecessary pointer-events-none class
|
|
2963
|
+
- 74a1269: ZERO-2658:Edit product name clickability on completed order page
|
|
2964
|
+
- d3474c6: ZERO-2655: Add data source shipping option
|
|
2965
|
+
- d2f0f15: ZERO-2723: Update sentry version and dependencies
|
|
2966
|
+
- 75080fd: ZERO-2630: Add max limit to postcode area
|
|
2967
|
+
- 9609eb2: ZERO-2779: Upgrade for tailwind
|
|
2968
|
+
- 91265bb: ZERO-2551: Improve pretty url and caching performance
|
|
2969
|
+
- 959e1fa: ZERO-2778: Upgrade for nextjs
|
|
2970
|
+
- 902d828: ZERO-2621:edit position of loaderSpinner in favorites page
|
|
2971
|
+
- 7a4bb76: ZERO-2610:Refactor FilterItem component for better readability and efficiency
|
|
2972
|
+
- dff0d59: ZERO-2659: add formData support to proxy api requests
|
|
2973
|
+
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
2974
|
+
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
2975
|
+
- beb499e: ZERO-2551: Add new tsconfig paths
|
|
2976
|
+
- fac2e5b: ZERO-2622: Add isMenuOpen state to Category reducer and update CategoryInfo component
|
|
2977
|
+
- 4614eee: ZERO-2602: The script that checks the build for standalone projects
|
|
2978
|
+
- e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
2979
|
+
- f046f8e0: ZERO-2575: update version for react-number-format
|
|
2980
|
+
- 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
2981
|
+
|
|
2982
|
+
### Patch Changes
|
|
2983
|
+
|
|
2984
|
+
- Updated dependencies [90282b5]
|
|
2985
|
+
- Updated dependencies [50b9069]
|
|
2986
|
+
- Updated dependencies [572d2e8]
|
|
2987
|
+
- Updated dependencies [a4c8d6a9]
|
|
2988
|
+
- Updated dependencies [fda5b92]
|
|
2989
|
+
- Updated dependencies [2d9b2b2]
|
|
2990
|
+
- Updated dependencies [c53ea3e]
|
|
2991
|
+
- Updated dependencies [8d9ac9a]
|
|
2992
|
+
- Updated dependencies [18e8197]
|
|
2993
|
+
- Updated dependencies [714e0b4]
|
|
2994
|
+
- Updated dependencies [70279e7]
|
|
2995
|
+
- Updated dependencies [6c25f66]
|
|
2996
|
+
- Updated dependencies [bc2b411]
|
|
2997
|
+
- Updated dependencies [3bf2dd9]
|
|
2998
|
+
- Updated dependencies [e9541a1]
|
|
2999
|
+
- Updated dependencies [c53ef7b9]
|
|
3000
|
+
- Updated dependencies [9d94f7e]
|
|
3001
|
+
- Updated dependencies [64699d3]
|
|
3002
|
+
- Updated dependencies [0d3a913]
|
|
3003
|
+
- Updated dependencies [1448a96]
|
|
3004
|
+
- Updated dependencies [d6edb1d]
|
|
3005
|
+
- Updated dependencies [d3474c6]
|
|
3006
|
+
- Updated dependencies [75080fd]
|
|
3007
|
+
- Updated dependencies [17f8752]
|
|
3008
|
+
- Updated dependencies [91265bb]
|
|
3009
|
+
- Updated dependencies [bbe18b9]
|
|
3010
|
+
- Updated dependencies [d409996]
|
|
3011
|
+
- Updated dependencies [4920742]
|
|
3012
|
+
- Updated dependencies [69ca080]
|
|
3013
|
+
- Updated dependencies [94b6928]
|
|
3014
|
+
- Updated dependencies [98bb8dc]
|
|
3015
|
+
- Updated dependencies [46b7aad]
|
|
3016
|
+
- Updated dependencies [dcc8a15]
|
|
3017
|
+
- Updated dependencies [fad2768]
|
|
3018
|
+
- Updated dependencies [dff0d59]
|
|
3019
|
+
- Updated dependencies [eecb282]
|
|
3020
|
+
- Updated dependencies [9e25a64]
|
|
3021
|
+
- Updated dependencies [beb499e]
|
|
3022
|
+
- Updated dependencies [146ea39]
|
|
3023
|
+
- Updated dependencies [f2c92d5]
|
|
3024
|
+
- Updated dependencies [7bd3d99]
|
|
3025
|
+
- Updated dependencies [c47be30]
|
|
3026
|
+
- Updated dependencies [e9a46ac]
|
|
3027
|
+
- Updated dependencies [f046f8e0]
|
|
3028
|
+
- Updated dependencies [86d2531]
|
|
3029
|
+
- Updated dependencies [3f9b8d7]
|
|
3030
|
+
- @akinon/next@1.43.0-rc.16
|
|
3031
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.16
|
|
3032
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.16
|
|
3033
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.16
|
|
3034
|
+
- @akinon/pz-click-collect@1.43.0-rc.16
|
|
3035
|
+
- @akinon/pz-masterpass@1.43.0-rc.16
|
|
3036
|
+
- @akinon/pz-akifast@1.43.0-rc.16
|
|
3037
|
+
- @akinon/pz-gpay@1.43.0-rc.16
|
|
3038
|
+
- @akinon/pz-b2b@1.43.0-rc.16
|
|
3039
|
+
- @akinon/pz-bkm@1.43.0-rc.16
|
|
3040
|
+
- @akinon/pz-otp@1.43.0-rc.16
|
|
3041
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.16
|
|
3042
|
+
- @akinon/pz-credit-payment@1.43.0-rc.16
|
|
3043
|
+
|
|
3044
|
+
## 1.43.0-rc.15
|
|
3045
|
+
|
|
3046
|
+
### Patch Changes
|
|
3047
|
+
|
|
3048
|
+
- @akinon/next@1.43.0-rc.15
|
|
3049
|
+
- @akinon/pz-akifast@1.43.0-rc.15
|
|
3050
|
+
- @akinon/pz-b2b@1.43.0-rc.15
|
|
3051
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.15
|
|
3052
|
+
- @akinon/pz-bkm@1.43.0-rc.15
|
|
3053
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.15
|
|
3054
|
+
- @akinon/pz-click-collect@1.43.0-rc.15
|
|
3055
|
+
- @akinon/pz-credit-payment@1.43.0-rc.15
|
|
3056
|
+
- @akinon/pz-gpay@1.43.0-rc.15
|
|
3057
|
+
- @akinon/pz-masterpass@1.43.0-rc.15
|
|
3058
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.15
|
|
3059
|
+
- @akinon/pz-otp@1.43.0-rc.15
|
|
3060
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.15
|
|
3061
|
+
|
|
3062
|
+
## 1.43.0-rc.14
|
|
3063
|
+
|
|
3064
|
+
### Patch Changes
|
|
3065
|
+
|
|
3066
|
+
- Updated dependencies [3bf2dd9]
|
|
3067
|
+
- @akinon/next@1.43.0-rc.14
|
|
3068
|
+
- @akinon/pz-akifast@1.43.0-rc.14
|
|
3069
|
+
- @akinon/pz-b2b@1.43.0-rc.14
|
|
3070
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.14
|
|
3071
|
+
- @akinon/pz-bkm@1.43.0-rc.14
|
|
3072
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.14
|
|
3073
|
+
- @akinon/pz-click-collect@1.43.0-rc.14
|
|
3074
|
+
- @akinon/pz-credit-payment@1.43.0-rc.14
|
|
3075
|
+
- @akinon/pz-gpay@1.43.0-rc.14
|
|
3076
|
+
- @akinon/pz-masterpass@1.43.0-rc.14
|
|
3077
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.14
|
|
3078
|
+
- @akinon/pz-otp@1.43.0-rc.14
|
|
3079
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.14
|
|
3080
|
+
|
|
3081
|
+
## 1.43.0-rc.13
|
|
3082
|
+
|
|
3083
|
+
### Minor Changes
|
|
3084
|
+
|
|
3085
|
+
- 9e25a64: ZERO-2835: Update category page layout with breadcrumb
|
|
3086
|
+
|
|
3087
|
+
### Patch Changes
|
|
3088
|
+
|
|
3089
|
+
- Updated dependencies [9e25a64]
|
|
3090
|
+
- @akinon/next@1.43.0-rc.13
|
|
3091
|
+
- @akinon/pz-akifast@1.43.0-rc.13
|
|
3092
|
+
- @akinon/pz-b2b@1.43.0-rc.13
|
|
3093
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.13
|
|
3094
|
+
- @akinon/pz-bkm@1.43.0-rc.13
|
|
3095
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.13
|
|
3096
|
+
- @akinon/pz-click-collect@1.43.0-rc.13
|
|
3097
|
+
- @akinon/pz-credit-payment@1.43.0-rc.13
|
|
3098
|
+
- @akinon/pz-gpay@1.43.0-rc.13
|
|
3099
|
+
- @akinon/pz-masterpass@1.43.0-rc.13
|
|
3100
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.13
|
|
3101
|
+
- @akinon/pz-otp@1.43.0-rc.13
|
|
3102
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.13
|
|
3103
|
+
|
|
3104
|
+
## 1.43.0-rc.12
|
|
3105
|
+
|
|
3106
|
+
### Patch Changes
|
|
3107
|
+
|
|
3108
|
+
- Updated dependencies [4920742]
|
|
3109
|
+
- @akinon/next@1.43.0-rc.12
|
|
3110
|
+
- @akinon/pz-akifast@1.43.0-rc.12
|
|
3111
|
+
- @akinon/pz-b2b@1.43.0-rc.12
|
|
3112
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.12
|
|
3113
|
+
- @akinon/pz-bkm@1.43.0-rc.12
|
|
3114
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.12
|
|
3115
|
+
- @akinon/pz-click-collect@1.43.0-rc.12
|
|
3116
|
+
- @akinon/pz-credit-payment@1.43.0-rc.12
|
|
3117
|
+
- @akinon/pz-gpay@1.43.0-rc.12
|
|
3118
|
+
- @akinon/pz-masterpass@1.43.0-rc.12
|
|
3119
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.12
|
|
3120
|
+
- @akinon/pz-otp@1.43.0-rc.12
|
|
3121
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.12
|
|
3122
|
+
|
|
3123
|
+
## 1.43.0-rc.11
|
|
3124
|
+
|
|
3125
|
+
### Patch Changes
|
|
3126
|
+
|
|
3127
|
+
- Updated dependencies [6c25f66]
|
|
3128
|
+
- @akinon/next@1.43.0-rc.11
|
|
3129
|
+
- @akinon/pz-akifast@1.43.0-rc.11
|
|
3130
|
+
- @akinon/pz-b2b@1.43.0-rc.11
|
|
3131
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.11
|
|
3132
|
+
- @akinon/pz-bkm@1.43.0-rc.11
|
|
3133
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.11
|
|
3134
|
+
- @akinon/pz-click-collect@1.43.0-rc.11
|
|
3135
|
+
- @akinon/pz-credit-payment@1.43.0-rc.11
|
|
3136
|
+
- @akinon/pz-gpay@1.43.0-rc.11
|
|
3137
|
+
- @akinon/pz-masterpass@1.43.0-rc.11
|
|
3138
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.11
|
|
3139
|
+
- @akinon/pz-otp@1.43.0-rc.11
|
|
3140
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.11
|
|
3141
|
+
|
|
3142
|
+
## 1.43.0-rc.10
|
|
3143
|
+
|
|
3144
|
+
### Patch Changes
|
|
3145
|
+
|
|
3146
|
+
- Updated dependencies [d6edb1d]
|
|
3147
|
+
- @akinon/next@1.43.0-rc.10
|
|
3148
|
+
- @akinon/pz-akifast@1.43.0-rc.10
|
|
3149
|
+
- @akinon/pz-b2b@1.43.0-rc.10
|
|
3150
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.10
|
|
3151
|
+
- @akinon/pz-bkm@1.43.0-rc.10
|
|
3152
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.10
|
|
3153
|
+
- @akinon/pz-click-collect@1.43.0-rc.10
|
|
3154
|
+
- @akinon/pz-credit-payment@1.43.0-rc.10
|
|
3155
|
+
- @akinon/pz-gpay@1.43.0-rc.10
|
|
3156
|
+
- @akinon/pz-masterpass@1.43.0-rc.10
|
|
3157
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.10
|
|
3158
|
+
- @akinon/pz-otp@1.43.0-rc.10
|
|
3159
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.10
|
|
3160
|
+
|
|
3161
|
+
## 1.43.0-rc.9
|
|
3162
|
+
|
|
3163
|
+
### Minor Changes
|
|
3164
|
+
|
|
3165
|
+
- bc2b411: ZERO-2825: Add attribute-based shipping options to checkout page
|
|
3166
|
+
|
|
3167
|
+
### Patch Changes
|
|
3168
|
+
|
|
3169
|
+
- Updated dependencies [bc2b411]
|
|
3170
|
+
- @akinon/next@1.43.0-rc.9
|
|
3171
|
+
- @akinon/pz-akifast@1.43.0-rc.9
|
|
3172
|
+
- @akinon/pz-b2b@1.43.0-rc.9
|
|
3173
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.9
|
|
3174
|
+
- @akinon/pz-bkm@1.43.0-rc.9
|
|
3175
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.9
|
|
3176
|
+
- @akinon/pz-click-collect@1.43.0-rc.9
|
|
3177
|
+
- @akinon/pz-credit-payment@1.43.0-rc.9
|
|
3178
|
+
- @akinon/pz-gpay@1.43.0-rc.9
|
|
3179
|
+
- @akinon/pz-masterpass@1.43.0-rc.9
|
|
3180
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.9
|
|
3181
|
+
- @akinon/pz-otp@1.43.0-rc.9
|
|
3182
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.9
|
|
3183
|
+
|
|
3184
|
+
## 1.43.0-rc.8
|
|
3185
|
+
|
|
3186
|
+
### Patch Changes
|
|
3187
|
+
|
|
3188
|
+
- Updated dependencies [70279e7]
|
|
3189
|
+
- Updated dependencies [9d94f7e]
|
|
3190
|
+
- @akinon/next@1.43.0-rc.8
|
|
3191
|
+
- @akinon/pz-akifast@1.43.0-rc.8
|
|
3192
|
+
- @akinon/pz-b2b@1.43.0-rc.8
|
|
3193
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.8
|
|
3194
|
+
- @akinon/pz-bkm@1.43.0-rc.8
|
|
3195
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.8
|
|
3196
|
+
- @akinon/pz-click-collect@1.43.0-rc.8
|
|
3197
|
+
- @akinon/pz-credit-payment@1.43.0-rc.8
|
|
3198
|
+
- @akinon/pz-gpay@1.43.0-rc.8
|
|
3199
|
+
- @akinon/pz-masterpass@1.43.0-rc.8
|
|
3200
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.8
|
|
3201
|
+
- @akinon/pz-otp@1.43.0-rc.8
|
|
3202
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.8
|
|
3203
|
+
|
|
3204
|
+
## 1.43.0-rc.7
|
|
3205
|
+
|
|
3206
|
+
### Patch Changes
|
|
3207
|
+
|
|
3208
|
+
- Updated dependencies [7bd3d99]
|
|
3209
|
+
- @akinon/next@1.43.0-rc.7
|
|
3210
|
+
- @akinon/pz-akifast@1.43.0-rc.7
|
|
3211
|
+
- @akinon/pz-b2b@1.43.0-rc.7
|
|
3212
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.7
|
|
3213
|
+
- @akinon/pz-bkm@1.43.0-rc.7
|
|
3214
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.7
|
|
3215
|
+
- @akinon/pz-click-collect@1.43.0-rc.7
|
|
3216
|
+
- @akinon/pz-credit-payment@1.43.0-rc.7
|
|
3217
|
+
- @akinon/pz-gpay@1.43.0-rc.7
|
|
3218
|
+
- @akinon/pz-masterpass@1.43.0-rc.7
|
|
3219
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.7
|
|
3220
|
+
- @akinon/pz-otp@1.43.0-rc.7
|
|
3221
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.7
|
|
3222
|
+
|
|
3223
|
+
## 1.43.0-rc.6
|
|
3224
|
+
|
|
3225
|
+
### Minor Changes
|
|
3226
|
+
|
|
3227
|
+
- 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
3228
|
+
- 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
|
|
3229
|
+
- c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
3230
|
+
- 97b8bdc: ZERO-2724: Remove onClick event in shipping options component
|
|
3231
|
+
- 714e0b4: ZERO-2759: update pz-click-collect peer dependencies
|
|
3232
|
+
- 7521265: ZERO-2787: Fix hover classname for favorite item
|
|
3233
|
+
- 27a5296: ZERO-2631:Fix Checkbox Click
|
|
3234
|
+
- 5a4c607: ZERO-2764: Add case-warning rule to eslint-plugin-projectzero
|
|
3235
|
+
- e665a0a: ZERO-2625: Add click outside functionality to close mobile menu
|
|
3236
|
+
- 52c1373: ZERO-2619: Added fix flag for the staged linter
|
|
3237
|
+
- 552ee8a: ZERO-2777: fix link component usage
|
|
3238
|
+
- 03c4c3e: ZERO-2731: Update Project Zero CLI command
|
|
3239
|
+
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
3240
|
+
- 0d3a913: ZERO-2725: Update decimal scale in Price component
|
|
3241
|
+
- 778a9a0: ZERO-2740: Upgrade next to 14.2.4
|
|
3242
|
+
- 9b6bf91: ZERO-2660: Change campaings to campaigns
|
|
3243
|
+
- 06650ca: ZERO-2620: Remove unnecessary pointer-events-none class
|
|
3244
|
+
- 74a1269: ZERO-2658:Edit product name clickability on completed order page
|
|
3245
|
+
- d3474c6: ZERO-2655: Add data source shipping option
|
|
3246
|
+
- d2f0f15: ZERO-2723: Update sentry version and dependencies
|
|
3247
|
+
- 75080fd: ZERO-2630: Add max limit to postcode area
|
|
3248
|
+
- 9609eb2: ZERO-2779: Upgrade for tailwind
|
|
3249
|
+
- 91265bb: ZERO-2551: Improve pretty url and caching performance
|
|
3250
|
+
- 959e1fa: ZERO-2778: Upgrade for nextjs
|
|
3251
|
+
- 902d828: ZERO-2621:edit position of loaderSpinner in favorites page
|
|
3252
|
+
- 7a4bb76: ZERO-2610:Refactor FilterItem component for better readability and efficiency
|
|
3253
|
+
- dff0d59: ZERO-2659: add formData support to proxy api requests
|
|
3254
|
+
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
3255
|
+
- 4a163f2: ZERO-2761: Add condition for basket summary
|
|
3256
|
+
- beb499e: ZERO-2551: Add new tsconfig paths
|
|
3257
|
+
- fac2e5b: ZERO-2622: Add isMenuOpen state to Category reducer and update CategoryInfo component
|
|
3258
|
+
- 4614eee: ZERO-2602: The script that checks the build for standalone projects
|
|
3259
|
+
- e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
3260
|
+
- f046f8e: ZERO-2575: update version for react-number-format
|
|
3261
|
+
- 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
3262
|
+
|
|
3263
|
+
### Patch Changes
|
|
3264
|
+
|
|
3265
|
+
- Updated dependencies [90282b5]
|
|
3266
|
+
- Updated dependencies [50b9069]
|
|
3267
|
+
- Updated dependencies [572d2e8]
|
|
3268
|
+
- Updated dependencies [a4c8d6a]
|
|
3269
|
+
- Updated dependencies [fda5b92]
|
|
3270
|
+
- Updated dependencies [2d9b2b2]
|
|
3271
|
+
- Updated dependencies [c53ea3e]
|
|
3272
|
+
- Updated dependencies [8d9ac9a]
|
|
3273
|
+
- Updated dependencies [18e8197]
|
|
3274
|
+
- Updated dependencies [714e0b4]
|
|
3275
|
+
- Updated dependencies [e9541a1]
|
|
3276
|
+
- Updated dependencies [c53ef7b]
|
|
3277
|
+
- Updated dependencies [64699d3]
|
|
3278
|
+
- Updated dependencies [0d3a913]
|
|
3279
|
+
- Updated dependencies [1448a96]
|
|
3280
|
+
- Updated dependencies [d3474c6]
|
|
3281
|
+
- Updated dependencies [75080fd]
|
|
3282
|
+
- Updated dependencies [17f8752]
|
|
3283
|
+
- Updated dependencies [91265bb]
|
|
3284
|
+
- Updated dependencies [bbe18b9]
|
|
3285
|
+
- Updated dependencies [d409996]
|
|
3286
|
+
- Updated dependencies [69ca080]
|
|
3287
|
+
- Updated dependencies [94b6928]
|
|
3288
|
+
- Updated dependencies [98bb8dc]
|
|
3289
|
+
- Updated dependencies [46b7aad]
|
|
3290
|
+
- Updated dependencies [dcc8a15]
|
|
3291
|
+
- Updated dependencies [fad2768]
|
|
3292
|
+
- Updated dependencies [dff0d59]
|
|
3293
|
+
- Updated dependencies [eecb282]
|
|
3294
|
+
- Updated dependencies [4a163f2]
|
|
3295
|
+
- Updated dependencies [beb499e]
|
|
3296
|
+
- Updated dependencies [146ea39]
|
|
3297
|
+
- Updated dependencies [f2c92d5]
|
|
3298
|
+
- Updated dependencies [c47be30]
|
|
3299
|
+
- Updated dependencies [e9a46ac]
|
|
3300
|
+
- Updated dependencies [f046f8e]
|
|
3301
|
+
- Updated dependencies [86d2531]
|
|
3302
|
+
- Updated dependencies [3f9b8d7]
|
|
3303
|
+
- @akinon/next@1.43.0-rc.6
|
|
3304
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.6
|
|
3305
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.6
|
|
3306
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.6
|
|
3307
|
+
- @akinon/pz-click-collect@1.43.0-rc.6
|
|
3308
|
+
- @akinon/pz-masterpass@1.43.0-rc.6
|
|
3309
|
+
- @akinon/pz-akifast@1.43.0-rc.6
|
|
3310
|
+
- @akinon/pz-gpay@1.43.0-rc.6
|
|
3311
|
+
- @akinon/pz-b2b@1.43.0-rc.6
|
|
3312
|
+
- @akinon/pz-bkm@1.43.0-rc.6
|
|
3313
|
+
- @akinon/pz-otp@1.43.0-rc.6
|
|
3314
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.6
|
|
3315
|
+
- @akinon/pz-credit-payment@1.43.0-rc.6
|
|
3316
|
+
|
|
3317
|
+
## 1.43.0-rc.5
|
|
3318
|
+
|
|
3319
|
+
### Patch Changes
|
|
3320
|
+
|
|
3321
|
+
- Updated dependencies [17f8752]
|
|
3322
|
+
- @akinon/next@1.43.0-rc.5
|
|
3323
|
+
- @akinon/pz-akifast@1.43.0-rc.5
|
|
3324
|
+
- @akinon/pz-b2b@1.43.0-rc.5
|
|
3325
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.5
|
|
3326
|
+
- @akinon/pz-bkm@1.43.0-rc.5
|
|
3327
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.5
|
|
3328
|
+
- @akinon/pz-click-collect@1.43.0-rc.5
|
|
3329
|
+
- @akinon/pz-credit-payment@1.43.0-rc.5
|
|
3330
|
+
- @akinon/pz-gpay@1.43.0-rc.5
|
|
3331
|
+
- @akinon/pz-masterpass@1.43.0-rc.5
|
|
3332
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.5
|
|
3333
|
+
- @akinon/pz-otp@1.43.0-rc.5
|
|
3334
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.5
|
|
3335
|
+
|
|
3336
|
+
## 1.43.0-rc.4
|
|
937
3337
|
|
|
938
3338
|
### Patch Changes
|
|
939
3339
|
|
|
940
|
-
- Updated dependencies [
|
|
941
|
-
- @akinon/next@1.
|
|
942
|
-
- @akinon/pz-akifast@1.
|
|
943
|
-
- @akinon/pz-b2b@1.
|
|
944
|
-
- @akinon/pz-basket-gift-pack@1.
|
|
945
|
-
- @akinon/pz-bkm@1.
|
|
946
|
-
- @akinon/pz-checkout-gift-pack@1.
|
|
947
|
-
- @akinon/pz-click-collect@1.
|
|
948
|
-
- @akinon/pz-credit-payment@1.
|
|
949
|
-
- @akinon/pz-gpay@1.
|
|
950
|
-
- @akinon/pz-masterpass@1.
|
|
951
|
-
- @akinon/pz-one-click-checkout@1.
|
|
952
|
-
- @akinon/pz-otp@1.
|
|
953
|
-
- @akinon/pz-pay-on-delivery@1.
|
|
3340
|
+
- Updated dependencies [3f9b8d7]
|
|
3341
|
+
- @akinon/next@1.43.0-rc.4
|
|
3342
|
+
- @akinon/pz-akifast@1.43.0-rc.4
|
|
3343
|
+
- @akinon/pz-b2b@1.43.0-rc.4
|
|
3344
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.4
|
|
3345
|
+
- @akinon/pz-bkm@1.43.0-rc.4
|
|
3346
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.4
|
|
3347
|
+
- @akinon/pz-click-collect@1.43.0-rc.4
|
|
3348
|
+
- @akinon/pz-credit-payment@1.43.0-rc.4
|
|
3349
|
+
- @akinon/pz-gpay@1.43.0-rc.4
|
|
3350
|
+
- @akinon/pz-masterpass@1.43.0-rc.4
|
|
3351
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.4
|
|
3352
|
+
- @akinon/pz-otp@1.43.0-rc.4
|
|
3353
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.4
|
|
3354
|
+
|
|
3355
|
+
## 1.43.0-rc.3
|
|
954
3356
|
|
|
955
|
-
|
|
3357
|
+
### Minor Changes
|
|
3358
|
+
|
|
3359
|
+
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
956
3360
|
|
|
957
3361
|
### Patch Changes
|
|
958
3362
|
|
|
959
|
-
-
|
|
960
|
-
- @akinon/pz-
|
|
961
|
-
- @akinon/pz-
|
|
962
|
-
- @akinon/pz-basket-gift-pack@1.
|
|
963
|
-
- @akinon/pz-
|
|
964
|
-
- @akinon/pz-
|
|
965
|
-
- @akinon/pz-click-collect@1.
|
|
966
|
-
- @akinon/pz-
|
|
967
|
-
- @akinon/
|
|
968
|
-
- @akinon/pz-
|
|
969
|
-
- @akinon/pz-
|
|
970
|
-
- @akinon/pz-
|
|
971
|
-
- @akinon/pz-
|
|
3363
|
+
- Updated dependencies [64699d3]
|
|
3364
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.3
|
|
3365
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.3
|
|
3366
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.3
|
|
3367
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.3
|
|
3368
|
+
- @akinon/pz-credit-payment@1.43.0-rc.3
|
|
3369
|
+
- @akinon/pz-click-collect@1.43.0-rc.3
|
|
3370
|
+
- @akinon/pz-masterpass@1.43.0-rc.3
|
|
3371
|
+
- @akinon/next@1.43.0-rc.3
|
|
3372
|
+
- @akinon/pz-akifast@1.43.0-rc.3
|
|
3373
|
+
- @akinon/pz-gpay@1.43.0-rc.3
|
|
3374
|
+
- @akinon/pz-b2b@1.43.0-rc.3
|
|
3375
|
+
- @akinon/pz-bkm@1.43.0-rc.3
|
|
3376
|
+
- @akinon/pz-otp@1.43.0-rc.3
|
|
3377
|
+
|
|
3378
|
+
## 1.43.0-rc.2
|
|
972
3379
|
|
|
973
|
-
|
|
3380
|
+
### Patch Changes
|
|
3381
|
+
|
|
3382
|
+
- Updated dependencies [f2c92d5]
|
|
3383
|
+
- @akinon/next@1.43.0-rc.2
|
|
3384
|
+
- @akinon/pz-akifast@1.43.0-rc.2
|
|
3385
|
+
- @akinon/pz-b2b@1.43.0-rc.2
|
|
3386
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.2
|
|
3387
|
+
- @akinon/pz-bkm@1.43.0-rc.2
|
|
3388
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.2
|
|
3389
|
+
- @akinon/pz-click-collect@1.43.0-rc.2
|
|
3390
|
+
- @akinon/pz-credit-payment@1.43.0-rc.2
|
|
3391
|
+
- @akinon/pz-gpay@1.43.0-rc.2
|
|
3392
|
+
- @akinon/pz-masterpass@1.43.0-rc.2
|
|
3393
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.2
|
|
3394
|
+
- @akinon/pz-otp@1.43.0-rc.2
|
|
3395
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.2
|
|
3396
|
+
|
|
3397
|
+
## 1.43.0-rc.1
|
|
974
3398
|
|
|
975
3399
|
### Minor Changes
|
|
976
3400
|
|
|
977
|
-
-
|
|
3401
|
+
- eecb282: ZERO-2607: Update address-related functions to include invalidateTag option
|
|
978
3402
|
|
|
979
3403
|
### Patch Changes
|
|
980
3404
|
|
|
981
|
-
- Updated dependencies [
|
|
982
|
-
- @akinon/next@1.43.0
|
|
983
|
-
- @akinon/pz-akifast@1.43.0
|
|
984
|
-
- @akinon/pz-b2b@1.43.0
|
|
985
|
-
- @akinon/pz-basket-gift-pack@1.43.0
|
|
986
|
-
- @akinon/pz-bkm@1.43.0
|
|
987
|
-
- @akinon/pz-checkout-gift-pack@1.43.0
|
|
988
|
-
- @akinon/pz-click-collect@1.43.0
|
|
989
|
-
- @akinon/pz-credit-payment@1.43.0
|
|
990
|
-
- @akinon/pz-gpay@1.43.0
|
|
991
|
-
- @akinon/pz-masterpass@1.43.0
|
|
992
|
-
- @akinon/pz-one-click-checkout@1.43.0
|
|
993
|
-
- @akinon/pz-otp@1.43.0
|
|
994
|
-
- @akinon/pz-pay-on-delivery@1.43.0
|
|
3405
|
+
- Updated dependencies [eecb282]
|
|
3406
|
+
- @akinon/next@1.43.0-rc.1
|
|
3407
|
+
- @akinon/pz-akifast@1.43.0-rc.1
|
|
3408
|
+
- @akinon/pz-b2b@1.43.0-rc.1
|
|
3409
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.1
|
|
3410
|
+
- @akinon/pz-bkm@1.43.0-rc.1
|
|
3411
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.1
|
|
3412
|
+
- @akinon/pz-click-collect@1.43.0-rc.1
|
|
3413
|
+
- @akinon/pz-credit-payment@1.43.0-rc.1
|
|
3414
|
+
- @akinon/pz-gpay@1.43.0-rc.1
|
|
3415
|
+
- @akinon/pz-masterpass@1.43.0-rc.1
|
|
3416
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.1
|
|
3417
|
+
- @akinon/pz-otp@1.43.0-rc.1
|
|
3418
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.1
|
|
3419
|
+
|
|
3420
|
+
## 1.43.0-rc.0
|
|
3421
|
+
|
|
3422
|
+
### Minor Changes
|
|
3423
|
+
|
|
3424
|
+
- 90282b5: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
3425
|
+
- 572d2e8: ZERO-2667: Add iframe support for redirection payment methods
|
|
3426
|
+
- c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
3427
|
+
- 97b8bdc: ZERO-2724: Remove onClick event in shipping options component
|
|
3428
|
+
- 714e0b4: ZERO-2759: update pz-click-collect peer dependencies
|
|
3429
|
+
- 7521265: ZERO-2787: Fix hover classname for favorite item
|
|
3430
|
+
- 27a5296: ZERO-2631:Fix Checkbox Click
|
|
3431
|
+
- 5a4c607: ZERO-2764: Add case-warning rule to eslint-plugin-projectzero
|
|
3432
|
+
- e665a0a: ZERO-2625: Add click outside functionality to close mobile menu
|
|
3433
|
+
- 52c1373: ZERO-2619: Added fix flag for the staged linter
|
|
3434
|
+
- 552ee8a: ZERO-2777: fix link component usage
|
|
3435
|
+
- 03c4c3e: ZERO-2731: Update Project Zero CLI command
|
|
3436
|
+
- 0d3a913: ZERO-2725: Update decimal scale in Price component
|
|
3437
|
+
- 778a9a0: ZERO-2740: Upgrade next to 14.2.4
|
|
3438
|
+
- 9b6bf91: ZERO-2660: Change campaings to campaigns
|
|
3439
|
+
- 06650ca: ZERO-2620: Remove unnecessary pointer-events-none class
|
|
3440
|
+
- 74a1269: ZERO-2658:Edit product name clickability on completed order page
|
|
3441
|
+
- d3474c6: ZERO-2655: Add data source shipping option
|
|
3442
|
+
- d2f0f15: ZERO-2723: Update sentry version and dependencies
|
|
3443
|
+
- 75080fd: ZERO-2630: Add max limit to postcode area
|
|
3444
|
+
- 9609eb2: ZERO-2779: Upgrade for tailwind
|
|
3445
|
+
- 91265bb: ZERO-2551: Improve pretty url and caching performance
|
|
3446
|
+
- 959e1fa: ZERO-2778: Upgrade for nextjs
|
|
3447
|
+
- 902d828: ZERO-2621:edit position of loaderSpinner in favorites page
|
|
3448
|
+
- 7a4bb76: ZERO-2610:Refactor FilterItem component for better readability and efficiency
|
|
3449
|
+
- dff0d59: ZERO-2659: add formData support to proxy api requests
|
|
3450
|
+
- beb499e: ZERO-2551: Add new tsconfig paths
|
|
3451
|
+
- fac2e5b: ZERO-2622: Add isMenuOpen state to Category reducer and update CategoryInfo component
|
|
3452
|
+
- 4614eee: ZERO-2602: The script that checks the build for standalone projects
|
|
3453
|
+
- e9a46ac: ZERO-2738: add CVC input to registered cards in Masterpass
|
|
3454
|
+
- f046f8e: ZERO-2575: update version for react-number-format
|
|
3455
|
+
- 86d2531: ZERO-2693: resolve dependency collision warning for eslint-config-next
|
|
3456
|
+
|
|
3457
|
+
### Patch Changes
|
|
3458
|
+
|
|
3459
|
+
- Updated dependencies [90282b5]
|
|
3460
|
+
- Updated dependencies [50b9069]
|
|
3461
|
+
- Updated dependencies [572d2e8]
|
|
3462
|
+
- Updated dependencies [a4c8d6a]
|
|
3463
|
+
- Updated dependencies [fda5b92]
|
|
3464
|
+
- Updated dependencies [2d9b2b2]
|
|
3465
|
+
- Updated dependencies [c53ea3e]
|
|
3466
|
+
- Updated dependencies [8d9ac9a]
|
|
3467
|
+
- Updated dependencies [18e8197]
|
|
3468
|
+
- Updated dependencies [714e0b4]
|
|
3469
|
+
- Updated dependencies [e9541a1]
|
|
3470
|
+
- Updated dependencies [c53ef7b]
|
|
3471
|
+
- Updated dependencies [0d3a913]
|
|
3472
|
+
- Updated dependencies [1448a96]
|
|
3473
|
+
- Updated dependencies [d3474c6]
|
|
3474
|
+
- Updated dependencies [75080fd]
|
|
3475
|
+
- Updated dependencies [91265bb]
|
|
3476
|
+
- Updated dependencies [bbe18b9]
|
|
3477
|
+
- Updated dependencies [d409996]
|
|
3478
|
+
- Updated dependencies [69ca080]
|
|
3479
|
+
- Updated dependencies [94b6928]
|
|
3480
|
+
- Updated dependencies [98bb8dc]
|
|
3481
|
+
- Updated dependencies [46b7aad]
|
|
3482
|
+
- Updated dependencies [dcc8a15]
|
|
3483
|
+
- Updated dependencies [fad2768]
|
|
3484
|
+
- Updated dependencies [dff0d59]
|
|
3485
|
+
- Updated dependencies [beb499e]
|
|
3486
|
+
- Updated dependencies [146ea39]
|
|
3487
|
+
- Updated dependencies [c47be30]
|
|
3488
|
+
- Updated dependencies [e9a46ac]
|
|
3489
|
+
- Updated dependencies [f046f8e]
|
|
3490
|
+
- Updated dependencies [86d2531]
|
|
3491
|
+
- @akinon/next@1.43.0-rc.0
|
|
3492
|
+
- @akinon/pz-checkout-gift-pack@1.43.0-rc.0
|
|
3493
|
+
- @akinon/pz-one-click-checkout@1.43.0-rc.0
|
|
3494
|
+
- @akinon/pz-basket-gift-pack@1.43.0-rc.0
|
|
3495
|
+
- @akinon/pz-click-collect@1.43.0-rc.0
|
|
3496
|
+
- @akinon/pz-masterpass@1.43.0-rc.0
|
|
3497
|
+
- @akinon/pz-akifast@1.43.0-rc.0
|
|
3498
|
+
- @akinon/pz-gpay@1.43.0-rc.0
|
|
3499
|
+
- @akinon/pz-b2b@1.43.0-rc.0
|
|
3500
|
+
- @akinon/pz-bkm@1.43.0-rc.0
|
|
3501
|
+
- @akinon/pz-otp@1.43.0-rc.0
|
|
3502
|
+
- @akinon/pz-credit-payment@1.43.0-rc.0
|
|
3503
|
+
- @akinon/pz-pay-on-delivery@1.43.0-rc.0
|
|
995
3504
|
|
|
996
3505
|
## 1.42.0
|
|
997
3506
|
|
|
@@ -1160,13 +3669,301 @@
|
|
|
1160
3669
|
|
|
1161
3670
|
### Patch Changes
|
|
1162
3671
|
|
|
1163
|
-
-
|
|
1164
|
-
-
|
|
1165
|
-
-
|
|
1166
|
-
-
|
|
1167
|
-
-
|
|
1168
|
-
-
|
|
1169
|
-
-
|
|
3672
|
+
- Updated dependencies [a4c8d6a]
|
|
3673
|
+
- Updated dependencies [d09b677]
|
|
3674
|
+
- Updated dependencies [6d4aadb]
|
|
3675
|
+
- Updated dependencies [8e6e8cf]
|
|
3676
|
+
- Updated dependencies [c53ef7b]
|
|
3677
|
+
- Updated dependencies [ebb63ce]
|
|
3678
|
+
- Updated dependencies [7cebe87]
|
|
3679
|
+
- Updated dependencies [616690d]
|
|
3680
|
+
- Updated dependencies [f3b595e]
|
|
3681
|
+
- Updated dependencies [91265bb]
|
|
3682
|
+
- Updated dependencies [59fb7c3]
|
|
3683
|
+
- Updated dependencies [bbe18b9]
|
|
3684
|
+
- Updated dependencies [f0c23bc]
|
|
3685
|
+
- Updated dependencies [3420416]
|
|
3686
|
+
- Updated dependencies [495d155]
|
|
3687
|
+
- Updated dependencies [beb499e]
|
|
3688
|
+
- Updated dependencies [6c18543]
|
|
3689
|
+
- Updated dependencies [40ad73e]
|
|
3690
|
+
- Updated dependencies [495d155]
|
|
3691
|
+
- Updated dependencies [f046f8e]
|
|
3692
|
+
- Updated dependencies [6b2972b]
|
|
3693
|
+
- Updated dependencies [3e68768]
|
|
3694
|
+
- @akinon/next@1.34.0-rc.20
|
|
3695
|
+
- @akinon/pz-masterpass@1.34.0-rc.20
|
|
3696
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.20
|
|
3697
|
+
- @akinon/pz-b2b@1.34.0-rc.20
|
|
3698
|
+
- @akinon/pz-gpay@1.34.0-rc.20
|
|
3699
|
+
- @akinon/pz-otp@1.34.0-rc.20
|
|
3700
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.20
|
|
3701
|
+
|
|
3702
|
+
## 1.34.0-rc.19
|
|
3703
|
+
|
|
3704
|
+
### Patch Changes
|
|
3705
|
+
|
|
3706
|
+
- Updated dependencies [c53ef7b]
|
|
3707
|
+
- @akinon/next@1.34.0-rc.19
|
|
3708
|
+
- @akinon/pz-b2b@1.34.0-rc.19
|
|
3709
|
+
- @akinon/pz-gpay@1.34.0-rc.19
|
|
3710
|
+
- @akinon/pz-masterpass@1.34.0-rc.19
|
|
3711
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.19
|
|
3712
|
+
- @akinon/pz-otp@1.34.0-rc.19
|
|
3713
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.19
|
|
3714
|
+
|
|
3715
|
+
## 1.34.0-rc.18
|
|
3716
|
+
|
|
3717
|
+
### Minor Changes
|
|
3718
|
+
|
|
3719
|
+
- 9b6bf91: ZERO-2660: Change campaings to campaigns
|
|
3720
|
+
- 902d828: ZERO-2621:edit position of loaderSpinner in favorites page
|
|
3721
|
+
|
|
3722
|
+
### Patch Changes
|
|
3723
|
+
|
|
3724
|
+
- Updated dependencies [a4c8d6a]
|
|
3725
|
+
- @akinon/next@1.34.0-rc.18
|
|
3726
|
+
- @akinon/pz-b2b@1.34.0-rc.18
|
|
3727
|
+
- @akinon/pz-gpay@1.34.0-rc.18
|
|
3728
|
+
- @akinon/pz-masterpass@1.34.0-rc.18
|
|
3729
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.18
|
|
3730
|
+
- @akinon/pz-otp@1.34.0-rc.18
|
|
3731
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.18
|
|
3732
|
+
|
|
3733
|
+
## 1.34.0-rc.17
|
|
3734
|
+
|
|
3735
|
+
### Minor Changes
|
|
3736
|
+
|
|
3737
|
+
- 567e4c1: ZERO-2580:Add checked attribute from props to checkbox
|
|
3738
|
+
- d09b677: ZERO-2577: Fix pagination bug and update usePagination hook and ensure pagination controls rendering correctly
|
|
3739
|
+
- 27a5296: ZERO-2631:Fix Checkbox Click
|
|
3740
|
+
- ebb63ce: ZERO-2525: Fix category facet removal bug and add close icon to active filters
|
|
3741
|
+
- 74a1269: ZERO-2658:Edit product name clickability on completed order page
|
|
3742
|
+
- 0d0f36c: ZERO-2598: Fix eslint warnings and update dependencies
|
|
3743
|
+
- 91265bb: ZERO-2551: Improve pretty url and caching performance
|
|
3744
|
+
- f0c23bc: ZERO-2135: add custom not found page
|
|
3745
|
+
- 3420416: ZERO-2533: extend eslint config from @akinon/next
|
|
3746
|
+
- beb499e: ZERO-2551: Add new tsconfig paths
|
|
3747
|
+
- 6c18543: ZERO-2542:Refactor and show error in OneClickCheckoutButtons
|
|
3748
|
+
- 202f84e: ZERO-2569: Fix static keys
|
|
3749
|
+
- 4614eee: ZERO-2602: The script that checks the build for standalone projects
|
|
3750
|
+
- f046f8e: ZERO-2575: update version for react-number-format
|
|
3751
|
+
- 12c10a4: ZERO-2570: Category filters routes to absolute url
|
|
3752
|
+
|
|
3753
|
+
### Patch Changes
|
|
3754
|
+
|
|
3755
|
+
- Updated dependencies [d09b677]
|
|
3756
|
+
- Updated dependencies [6d4aadb]
|
|
3757
|
+
- Updated dependencies [8e6e8cf]
|
|
3758
|
+
- Updated dependencies [ebb63ce]
|
|
3759
|
+
- Updated dependencies [7cebe87]
|
|
3760
|
+
- Updated dependencies [616690d]
|
|
3761
|
+
- Updated dependencies [f3b595e]
|
|
3762
|
+
- Updated dependencies [91265bb]
|
|
3763
|
+
- Updated dependencies [59fb7c3]
|
|
3764
|
+
- Updated dependencies [bbe18b9]
|
|
3765
|
+
- Updated dependencies [f0c23bc]
|
|
3766
|
+
- Updated dependencies [3420416]
|
|
3767
|
+
- Updated dependencies [495d155]
|
|
3768
|
+
- Updated dependencies [beb499e]
|
|
3769
|
+
- Updated dependencies [6c18543]
|
|
3770
|
+
- Updated dependencies [40ad73e]
|
|
3771
|
+
- Updated dependencies [495d155]
|
|
3772
|
+
- Updated dependencies [f046f8e]
|
|
3773
|
+
- Updated dependencies [6b2972b]
|
|
3774
|
+
- Updated dependencies [3e68768]
|
|
3775
|
+
- @akinon/next@1.34.0-rc.17
|
|
3776
|
+
- @akinon/pz-masterpass@1.34.0-rc.17
|
|
3777
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.17
|
|
3778
|
+
- @akinon/pz-b2b@1.34.0-rc.17
|
|
3779
|
+
- @akinon/pz-gpay@1.34.0-rc.17
|
|
3780
|
+
- @akinon/pz-otp@1.34.0-rc.17
|
|
3781
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.17
|
|
3782
|
+
|
|
3783
|
+
## 1.34.0-rc.16
|
|
3784
|
+
|
|
3785
|
+
### Patch Changes
|
|
3786
|
+
|
|
3787
|
+
- @akinon/next@1.34.0-rc.16
|
|
3788
|
+
- @akinon/pz-b2b@1.34.0-rc.16
|
|
3789
|
+
- @akinon/pz-gpay@1.34.0-rc.16
|
|
3790
|
+
- @akinon/pz-masterpass@1.34.0-rc.16
|
|
3791
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.16
|
|
3792
|
+
- @akinon/pz-otp@1.34.0-rc.16
|
|
3793
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.16
|
|
3794
|
+
|
|
3795
|
+
## 1.34.0-rc.15
|
|
3796
|
+
|
|
3797
|
+
### Patch Changes
|
|
3798
|
+
|
|
3799
|
+
- @akinon/next@1.34.0-rc.15
|
|
3800
|
+
- @akinon/pz-b2b@1.34.0-rc.15
|
|
3801
|
+
- @akinon/pz-gpay@1.34.0-rc.15
|
|
3802
|
+
- @akinon/pz-masterpass@1.34.0-rc.15
|
|
3803
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.15
|
|
3804
|
+
- @akinon/pz-otp@1.34.0-rc.15
|
|
3805
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.15
|
|
3806
|
+
|
|
3807
|
+
## 1.34.0-rc.14
|
|
3808
|
+
|
|
3809
|
+
### Minor Changes
|
|
3810
|
+
|
|
3811
|
+
- 4614eee: ZERO-2602: The script that checks the build for standalone projects
|
|
3812
|
+
|
|
3813
|
+
### Patch Changes
|
|
3814
|
+
|
|
3815
|
+
- @akinon/next@1.34.0-rc.14
|
|
3816
|
+
- @akinon/pz-b2b@1.34.0-rc.14
|
|
3817
|
+
- @akinon/pz-gpay@1.34.0-rc.14
|
|
3818
|
+
- @akinon/pz-masterpass@1.34.0-rc.14
|
|
3819
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.14
|
|
3820
|
+
- @akinon/pz-otp@1.34.0-rc.14
|
|
3821
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.14
|
|
3822
|
+
|
|
3823
|
+
## 1.34.0-rc.13
|
|
3824
|
+
|
|
3825
|
+
### Minor Changes
|
|
3826
|
+
|
|
3827
|
+
- 74a1269: ZERO-2658:Edit product name clickability on completed order page
|
|
3828
|
+
|
|
3829
|
+
### Patch Changes
|
|
3830
|
+
|
|
3831
|
+
- @akinon/next@1.34.0-rc.13
|
|
3832
|
+
- @akinon/pz-b2b@1.34.0-rc.13
|
|
3833
|
+
- @akinon/pz-gpay@1.34.0-rc.13
|
|
3834
|
+
- @akinon/pz-masterpass@1.34.0-rc.13
|
|
3835
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.13
|
|
3836
|
+
- @akinon/pz-otp@1.34.0-rc.13
|
|
3837
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.13
|
|
3838
|
+
|
|
3839
|
+
## 1.34.0-rc.12
|
|
3840
|
+
|
|
3841
|
+
### Patch Changes
|
|
3842
|
+
|
|
3843
|
+
- Updated dependencies [616690d]
|
|
3844
|
+
- @akinon/next@1.34.0-rc.12
|
|
3845
|
+
- @akinon/pz-b2b@1.34.0-rc.12
|
|
3846
|
+
- @akinon/pz-gpay@1.34.0-rc.12
|
|
3847
|
+
- @akinon/pz-masterpass@1.34.0-rc.12
|
|
3848
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.12
|
|
3849
|
+
- @akinon/pz-otp@1.34.0-rc.12
|
|
3850
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.12
|
|
3851
|
+
|
|
3852
|
+
## 1.34.0-rc.11
|
|
3853
|
+
|
|
3854
|
+
### Patch Changes
|
|
3855
|
+
|
|
3856
|
+
- Updated dependencies [8e6e8cf]
|
|
3857
|
+
- @akinon/next@1.34.0-rc.11
|
|
3858
|
+
- @akinon/pz-b2b@1.34.0-rc.11
|
|
3859
|
+
- @akinon/pz-gpay@1.34.0-rc.11
|
|
3860
|
+
- @akinon/pz-masterpass@1.34.0-rc.11
|
|
3861
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.11
|
|
3862
|
+
- @akinon/pz-otp@1.34.0-rc.11
|
|
3863
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.11
|
|
3864
|
+
|
|
3865
|
+
## 1.34.0-rc.10
|
|
3866
|
+
|
|
3867
|
+
### Patch Changes
|
|
3868
|
+
|
|
3869
|
+
- Updated dependencies [bbe18b9]
|
|
3870
|
+
- @akinon/next@1.34.0-rc.10
|
|
3871
|
+
- @akinon/pz-b2b@1.34.0-rc.10
|
|
3872
|
+
- @akinon/pz-gpay@1.34.0-rc.10
|
|
3873
|
+
- @akinon/pz-masterpass@1.34.0-rc.10
|
|
3874
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.10
|
|
3875
|
+
- @akinon/pz-otp@1.34.0-rc.10
|
|
3876
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.10
|
|
3877
|
+
|
|
3878
|
+
## 1.34.0-rc.9
|
|
3879
|
+
|
|
3880
|
+
### Minor Changes
|
|
3881
|
+
|
|
3882
|
+
- beb499e: ZERO-2551: Add new tsconfig paths
|
|
3883
|
+
|
|
3884
|
+
### Patch Changes
|
|
3885
|
+
|
|
3886
|
+
- Updated dependencies [beb499e]
|
|
3887
|
+
- @akinon/next@1.34.0-rc.9
|
|
3888
|
+
- @akinon/pz-b2b@1.34.0-rc.9
|
|
3889
|
+
- @akinon/pz-gpay@1.34.0-rc.9
|
|
3890
|
+
- @akinon/pz-masterpass@1.34.0-rc.9
|
|
3891
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.9
|
|
3892
|
+
- @akinon/pz-otp@1.34.0-rc.9
|
|
3893
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.9
|
|
3894
|
+
|
|
3895
|
+
## 1.34.0-rc.8
|
|
3896
|
+
|
|
3897
|
+
### Minor Changes
|
|
3898
|
+
|
|
3899
|
+
- 91265bb: ZERO-2551: Improve pretty url and caching performance
|
|
3900
|
+
|
|
3901
|
+
### Patch Changes
|
|
3902
|
+
|
|
3903
|
+
- Updated dependencies [91265bb]
|
|
3904
|
+
- @akinon/next@1.34.0-rc.8
|
|
3905
|
+
- @akinon/pz-b2b@1.34.0-rc.8
|
|
3906
|
+
- @akinon/pz-gpay@1.34.0-rc.8
|
|
3907
|
+
- @akinon/pz-masterpass@1.34.0-rc.8
|
|
3908
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.8
|
|
3909
|
+
- @akinon/pz-otp@1.34.0-rc.8
|
|
3910
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.8
|
|
3911
|
+
|
|
3912
|
+
## 1.34.0-rc.7
|
|
3913
|
+
|
|
3914
|
+
### Minor Changes
|
|
3915
|
+
|
|
3916
|
+
- 0d0f36c: ZERO-2598: Fix eslint warnings and update dependencies
|
|
3917
|
+
|
|
3918
|
+
### Patch Changes
|
|
3919
|
+
|
|
3920
|
+
- @akinon/next@1.34.0-rc.7
|
|
3921
|
+
- @akinon/pz-b2b@1.34.0-rc.7
|
|
3922
|
+
- @akinon/pz-gpay@1.34.0-rc.7
|
|
3923
|
+
- @akinon/pz-masterpass@1.34.0-rc.7
|
|
3924
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.7
|
|
3925
|
+
- @akinon/pz-otp@1.34.0-rc.7
|
|
3926
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.7
|
|
3927
|
+
|
|
3928
|
+
## 1.34.0-rc.6
|
|
3929
|
+
|
|
3930
|
+
### Minor Changes
|
|
3931
|
+
|
|
3932
|
+
- 567e4c1: ZERO-2580:Add checked attribute from props to checkbox
|
|
3933
|
+
- d09b677: ZERO-2577: Fix pagination bug and update usePagination hook and ensure pagination controls rendering correctly
|
|
3934
|
+
- 27a5296: ZERO-2631:Fix Checkbox Click
|
|
3935
|
+
- ebb63ce: ZERO-2525: Fix category facet removal bug and add close icon to active filters
|
|
3936
|
+
- f0c23bc: ZERO-2135: add custom not found page
|
|
3937
|
+
- 3420416: ZERO-2533: extend eslint config from @akinon/next
|
|
3938
|
+
- 6c18543: ZERO-2542:Refactor and show error in OneClickCheckoutButtons
|
|
3939
|
+
- 202f84e: ZERO-2569: Fix static keys
|
|
3940
|
+
- f046f8e: ZERO-2575: update version for react-number-format
|
|
3941
|
+
- 12c10a4: ZERO-2570: Category filters routes to absolute url
|
|
3942
|
+
|
|
3943
|
+
### Patch Changes
|
|
3944
|
+
|
|
3945
|
+
- Updated dependencies [d09b677]
|
|
3946
|
+
- Updated dependencies [6d4aadb]
|
|
3947
|
+
- Updated dependencies [ebb63ce]
|
|
3948
|
+
- Updated dependencies [7cebe87]
|
|
3949
|
+
- Updated dependencies [f3b595e]
|
|
3950
|
+
- Updated dependencies [59fb7c3]
|
|
3951
|
+
- Updated dependencies [f0c23bc]
|
|
3952
|
+
- Updated dependencies [3420416]
|
|
3953
|
+
- Updated dependencies [495d155]
|
|
3954
|
+
- Updated dependencies [6c18543]
|
|
3955
|
+
- Updated dependencies [40ad73e]
|
|
3956
|
+
- Updated dependencies [495d155]
|
|
3957
|
+
- Updated dependencies [f046f8e]
|
|
3958
|
+
- Updated dependencies [6b2972b]
|
|
3959
|
+
- Updated dependencies [3e68768]
|
|
3960
|
+
- @akinon/next@1.34.0-rc.6
|
|
3961
|
+
- @akinon/pz-masterpass@1.34.0-rc.6
|
|
3962
|
+
- @akinon/pz-one-click-checkout@1.34.0-rc.6
|
|
3963
|
+
- @akinon/pz-b2b@1.34.0-rc.6
|
|
3964
|
+
- @akinon/pz-gpay@1.34.0-rc.6
|
|
3965
|
+
- @akinon/pz-otp@1.34.0-rc.6
|
|
3966
|
+
- @akinon/pz-pay-on-delivery@1.34.0-rc.6
|
|
1170
3967
|
|
|
1171
3968
|
## 1.33.2
|
|
1172
3969
|
|