cozy-harvest-lib 32.2.37 → 32.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +40 -410
- package/dist/cli/cli.js +168 -158
- package/dist/cli/prompt.js +42 -40
- package/dist/components/AccountForm/CannotConnectModal.js +1 -1
- package/dist/components/AccountForm/index.js +4 -2
- package/dist/components/AccountModal.js +92 -84
- package/dist/components/AccountModal.spec.js +24 -22
- package/dist/components/AccountModalWithoutTabs/OpenOAuthWindowButton.js +28 -26
- package/dist/components/AccountsPaywall/helpers.js +1 -1
- package/dist/components/DumbTriggerManager.js +221 -213
- package/dist/components/EditAccountModal.js +34 -32
- package/dist/components/HarvestWrapper.js +1 -1
- package/dist/components/InAppBrowser.js +98 -94
- package/dist/components/InAppBrowser.spec.js +110 -102
- package/dist/components/KonnectorAccounts.js +77 -71
- package/dist/components/KonnectorAccounts.spec.js +65 -63
- package/dist/components/KonnectorBlock.js +18 -16
- package/dist/components/KonnectorBlock.spec.js +53 -49
- package/dist/components/KonnectorConfiguration/ConfigurationTab/BIContractActivationWindow.spec.js +157 -141
- package/dist/components/KonnectorConfiguration/ConfigurationTab/BiContractActivationWindow.js +80 -74
- package/dist/components/KonnectorConfiguration/ConfigurationTab/EditContract.js +73 -69
- package/dist/components/KonnectorConfiguration/ConfigurationTab/EditContract.spec.js +61 -53
- package/dist/components/KonnectorConfiguration/ConfigurationTab/helpers.js +24 -22
- package/dist/components/KonnectorConfiguration/ConfigurationTab/index.js +80 -74
- package/dist/components/KonnectorConfiguration/ConfigurationTab/index.spec.js +128 -114
- package/dist/components/KonnectorConfiguration/KonnectorAccountWrapper.spec.js +56 -48
- package/dist/components/KonnectorSuggestionModal/index.js +20 -18
- package/dist/components/OAuthForm.js +36 -34
- package/dist/components/OAuthForm.spec.js +131 -121
- package/dist/components/OAuthService.js +157 -151
- package/dist/components/OAuthService.spec.js +167 -161
- package/dist/components/PopupService.spec.js +105 -97
- package/dist/components/TriggerManager.spec.js +356 -324
- package/dist/components/TwoFAModal.spec.js +66 -64
- package/dist/components/VaultCiphersList/VaultCiphersList.spec.js +124 -116
- package/dist/components/cards/LaunchTriggerAlert.spec.js +133 -123
- package/dist/components/hooks/useAppLinkWithStoreFallback.js +29 -27
- package/dist/components/hooks/useAppLinkWithStoreFallback.spec.js +84 -76
- package/dist/components/hooks/useMaintenanceStatus.js +2 -2
- package/dist/components/hooks/useMaintenanceStatus.spec.js +39 -33
- package/dist/components/hooks/useOAuthExtraParams.js +25 -23
- package/dist/components/hooks/useSupportMail.js +23 -21
- package/dist/connections/accounts.js +277 -261
- package/dist/connections/accounts.spec.js +342 -294
- package/dist/connections/permission.spec.js +11 -9
- package/dist/connections/permissions.js +13 -11
- package/dist/connections/triggers.js +114 -104
- package/dist/connections/triggers.spec.js +28 -24
- package/dist/datacards/GeoDataCard.js +1 -1
- package/dist/datacards/trips.js +1 -1
- package/dist/helpers/accounts.js +94 -85
- package/dist/helpers/accounts.spec.js +288 -274
- package/dist/helpers/konnectorBlock.js +233 -223
- package/dist/helpers/konnectorBlock.spec.js +302 -280
- package/dist/helpers/konnectors.js +20 -18
- package/dist/helpers/manifest.js +10 -6
- package/dist/helpers/manifest.spec.js +11 -7
- package/dist/helpers/useKonnectorWithTriggers.js +76 -68
- package/dist/helpers/useKonnectorWithTriggers.spec.js +118 -114
- package/dist/models/ConnectionFlow.js +546 -523
- package/dist/models/ConnectionFlow.spec.js +679 -611
- package/dist/models/cipherUtils.js +259 -247
- package/dist/models/cipherUtils.spec.js +187 -175
- package/dist/models/konnector/KonnectorJobWatcher.js +30 -28
- package/dist/models/konnector/KonnectorJobWatcher.spec.js +29 -27
- package/dist/policies/biWebView.js +346 -326
- package/dist/policies/biWebView.spec.js +360 -342
- package/dist/policies/clisk.js +48 -46
- package/dist/policies/clisk.spec.js +102 -96
- package/dist/services/bi-http.js +164 -146
- package/dist/services/bi-http.spec.js +131 -119
- package/dist/services/deleteAccounts.js +21 -19
- package/dist/services/deleteAccounts.spec.js +29 -27
- package/dist/services/softDeleteOrRestoreAccounts.js +190 -188
- package/dist/services/softDeleteOrRestoreAccounts.spec.js +65 -61
- package/dist/services/updateAccountsFromCipher.js +133 -131
- package/dist/services/updateAccountsFromCipher.spec.js +130 -120
- package/dist/services/utils.js +172 -156
- package/dist/services/utils.spec.js +167 -151
- package/package.json +9 -9
- package/src/components/AccountSelectBox/AccountSelectControl.jsx +1 -1
- package/src/components/AccountsPaywall/helpers.js +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,802 +3,432 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
**Note:** Version bump only for package cozy-harvest-lib
|
|
6
|
+
# [32.3.0](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@32.2.37...cozy-harvest-lib@32.3.0) (2025-03-11)
|
|
9
7
|
|
|
8
|
+
### Features
|
|
10
9
|
|
|
10
|
+
- Install eslint at monorepo root ([7fb0667](https://github.com/cozy/cozy-libs/commit/7fb066743320f437b8bde80a4ddbed63297e52c8))
|
|
11
|
+
- Update to Yarn 4 ([35ebc77](https://github.com/cozy/cozy-libs/commit/35ebc776f815a76f5a8937e81198e43679702e03))
|
|
11
12
|
|
|
13
|
+
## [32.2.37](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@32.2.36...cozy-harvest-lib@32.2.37) (2025-03-11)
|
|
12
14
|
|
|
15
|
+
**Note:** Version bump only for package cozy-harvest-lib
|
|
13
16
|
|
|
14
17
|
## [32.2.36](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@32.2.35...cozy-harvest-lib@32.2.36) (2025-03-07)
|
|
15
18
|
|
|
16
19
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
17
20
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
21
|
## [32.2.35](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@32.2.34...cozy-harvest-lib@32.2.35) (2025-02-26)
|
|
23
22
|
|
|
24
23
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
25
24
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
25
|
## [32.2.34](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@32.2.33...cozy-harvest-lib@32.2.34) (2025-02-26)
|
|
31
26
|
|
|
32
27
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
33
28
|
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
29
|
## [32.2.33](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@32.2.32...cozy-harvest-lib@32.2.33) (2025-02-10)
|
|
39
30
|
|
|
40
31
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
41
32
|
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
33
|
## [32.2.32](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@32.2.31...cozy-harvest-lib@32.2.32) (2025-02-05)
|
|
47
34
|
|
|
48
35
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
49
36
|
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
37
|
## [32.2.31](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@32.2.30...cozy-harvest-lib@32.2.31) (2025-02-04)
|
|
55
38
|
|
|
56
39
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
57
40
|
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
41
|
## [32.2.30](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@32.2.29...cozy-harvest-lib@32.2.30) (2025-02-04)
|
|
63
42
|
|
|
64
43
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
65
44
|
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
45
|
## [32.2.29](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@32.2.28...cozy-harvest-lib@32.2.29) (2025-01-30)
|
|
71
46
|
|
|
72
47
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
73
48
|
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
49
|
## [32.2.28](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@32.2.27...cozy-harvest-lib@32.2.28) (2025-01-30)
|
|
79
50
|
|
|
80
51
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
81
52
|
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
53
|
## [32.2.27](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@32.2.26...cozy-harvest-lib@32.2.27) (2025-01-30)
|
|
87
54
|
|
|
88
55
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
89
56
|
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
57
|
## [32.2.26](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@32.2.25...cozy-harvest-lib@32.2.26) (2025-01-28)
|
|
95
58
|
|
|
96
59
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
97
60
|
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
61
|
## [32.2.25](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@32.2.24...cozy-harvest-lib@32.2.25) (2025-01-28)
|
|
103
62
|
|
|
104
63
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
105
64
|
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
65
|
## [32.2.24](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@32.2.23...cozy-harvest-lib@32.2.24) (2025-01-23)
|
|
111
66
|
|
|
112
67
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
113
68
|
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
69
|
## [32.2.23](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@32.2.22...cozy-harvest-lib@32.2.23) (2025-01-23)
|
|
119
70
|
|
|
120
71
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
121
72
|
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
73
|
## [32.2.22](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@32.2.21...cozy-harvest-lib@32.2.22) (2025-01-23)
|
|
127
74
|
|
|
128
75
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
129
76
|
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
77
|
## [32.2.21](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@32.2.20...cozy-harvest-lib@32.2.21) (2025-01-23)
|
|
135
78
|
|
|
136
79
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
137
80
|
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
81
|
## [32.2.20](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@32.2.19...cozy-harvest-lib@32.2.20) (2025-01-23)
|
|
143
82
|
|
|
144
83
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
145
84
|
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
85
|
## [32.2.19](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@32.2.18...cozy-harvest-lib@32.2.19) (2025-01-22)
|
|
151
86
|
|
|
152
|
-
|
|
153
87
|
### Bug Fixes
|
|
154
88
|
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
89
|
+
- Allow multiple accounts to server konnectors ([0c3b2bf](https://github.com/cozy/cozy-libs/commit/0c3b2bffb5d61b59f411021b99bbbc68c36fc4c9))
|
|
90
|
+
- Correct path associated to the Add Account button ([d8c53fe](https://github.com/cozy/cozy-libs/commit/d8c53fe1d10bf4c22c2bb7b716709b2a9466da9f))
|
|
161
91
|
|
|
162
92
|
## [32.2.18](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@32.2.17...cozy-harvest-lib@32.2.18) (2025-01-22)
|
|
163
93
|
|
|
164
94
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
165
95
|
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
96
|
## [32.2.17](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@32.2.16...cozy-harvest-lib@32.2.17) (2025-01-22)
|
|
171
97
|
|
|
172
98
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
173
99
|
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
100
|
## [32.2.16](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@32.2.15...cozy-harvest-lib@32.2.16) (2025-01-21)
|
|
179
101
|
|
|
180
102
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
181
103
|
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
104
|
## [32.2.15](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@32.2.14...cozy-harvest-lib@32.2.15) (2025-01-21)
|
|
187
105
|
|
|
188
106
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
189
107
|
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
108
|
## [32.2.14](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@32.2.13...cozy-harvest-lib@32.2.14) (2025-01-20)
|
|
195
109
|
|
|
196
110
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
197
111
|
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
112
|
## [32.2.13](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@32.2.12...cozy-harvest-lib@32.2.13) (2025-01-20)
|
|
203
113
|
|
|
204
114
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
205
115
|
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
116
|
## [32.2.12](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@32.2.11...cozy-harvest-lib@32.2.12) (2025-01-16)
|
|
211
117
|
|
|
212
118
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
213
119
|
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
120
|
## [32.2.11](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@32.2.10...cozy-harvest-lib@32.2.11) (2025-01-16)
|
|
219
121
|
|
|
220
|
-
|
|
221
122
|
### Bug Fixes
|
|
222
123
|
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
124
|
+
- Force the update of the current konnector data ([23370de](https://github.com/cozy/cozy-libs/commit/23370ded95bfd42c6c482dd0cdd9015057d8502e))
|
|
228
125
|
|
|
229
126
|
## [32.2.10](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@32.2.9...cozy-harvest-lib@32.2.10) (2025-01-15)
|
|
230
127
|
|
|
231
128
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
232
129
|
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
130
|
## [32.2.9](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@32.2.8...cozy-harvest-lib@32.2.9) (2025-01-13)
|
|
238
131
|
|
|
239
132
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
240
133
|
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
134
|
## [32.2.8](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@32.2.7...cozy-harvest-lib@32.2.8) (2025-01-13)
|
|
246
135
|
|
|
247
136
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
248
137
|
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
138
|
## [32.2.7](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@32.2.6...cozy-harvest-lib@32.2.7) (2025-01-09)
|
|
254
139
|
|
|
255
140
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
256
141
|
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
142
|
## [32.2.6](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@32.2.5...cozy-harvest-lib@32.2.6) (2025-01-08)
|
|
262
143
|
|
|
263
144
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
264
145
|
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
146
|
## [32.2.5](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@32.2.4...cozy-harvest-lib@32.2.5) (2025-01-08)
|
|
270
147
|
|
|
271
|
-
|
|
272
148
|
### Bug Fixes
|
|
273
149
|
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
150
|
+
- **harvest:** Konnector slug now relies on createdByApp in KonnectrBlock ([9a18110](https://github.com/cozy/cozy-libs/commit/9a18110633f208bf51251fd192f8efb647526d40))
|
|
279
151
|
|
|
280
152
|
## [32.2.4](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@32.2.3...cozy-harvest-lib@32.2.4) (2025-01-08)
|
|
281
153
|
|
|
282
154
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
283
155
|
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
156
|
## [32.2.3](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@32.2.2...cozy-harvest-lib@32.2.3) (2025-01-07)
|
|
289
157
|
|
|
290
158
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
291
159
|
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
160
|
## [32.2.2](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@32.2.1...cozy-harvest-lib@32.2.2) (2025-01-07)
|
|
297
161
|
|
|
298
162
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
299
163
|
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
164
|
## [32.2.1](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@32.2.0...cozy-harvest-lib@32.2.1) (2024-12-23)
|
|
305
165
|
|
|
306
166
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
307
167
|
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
168
|
# [32.2.0](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@32.1.0...cozy-harvest-lib@32.2.0) (2024-12-23)
|
|
313
169
|
|
|
314
|
-
|
|
315
170
|
### Features
|
|
316
171
|
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
172
|
+
- **cozy-harvest:** Add missing react-redux dep ([27ee882](https://github.com/cozy/cozy-libs/commit/27ee8822365d51031a8b61ee4816005c2ea5dc33))
|
|
173
|
+
- **cozy-harvest:** Prefer use createMockClient for tests ([26a5e30](https://github.com/cozy/cozy-libs/commit/26a5e3076cb8a0928ca95bec1a9a75440ec7e7cb))
|
|
323
174
|
|
|
324
175
|
# [32.1.0](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@32.0.0...cozy-harvest-lib@32.1.0) (2024-12-23)
|
|
325
176
|
|
|
326
|
-
|
|
327
177
|
### Features
|
|
328
178
|
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
179
|
+
- Upgrade date-fns to 2.30.0 ([aaf21c9](https://github.com/cozy/cozy-libs/commit/aaf21c98c239ca661d29b5f8a98a4014dc140ded))
|
|
334
180
|
|
|
335
181
|
# [32.0.0](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@31.0.27...cozy-harvest-lib@32.0.0) (2024-12-23)
|
|
336
182
|
|
|
337
|
-
|
|
338
183
|
### Features
|
|
339
184
|
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
185
|
+
- **cozy-harvest:** Replace jsdom-sixteen package ([2f455ba](https://github.com/cozy/cozy-libs/commit/2f455ba87718b0633f71035c489f1db6cbbd22f1))
|
|
186
|
+
- **cozy-harvest:** Upgrade cozy-ui to 115.0.2 ([8933c1f](https://github.com/cozy/cozy-libs/commit/8933c1fbd3332ae9e6f2e92642a9a456988e7562))
|
|
343
187
|
|
|
344
188
|
### BREAKING CHANGES
|
|
345
189
|
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
190
|
+
- **cozy-harvest:** You must have `cozy-ui >= 115.0.2`, `cozy-client >= 51.6.1`, `cozy-intent >= 2.29.1` & `cozy-viewer >= 11.3.1`
|
|
351
191
|
|
|
352
192
|
## [31.0.27](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@31.0.26...cozy-harvest-lib@31.0.27) (2024-12-23)
|
|
353
193
|
|
|
354
194
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
355
195
|
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
196
|
## [31.0.26](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@31.0.25...cozy-harvest-lib@31.0.26) (2024-12-23)
|
|
361
197
|
|
|
362
198
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
363
199
|
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
200
|
## [31.0.25](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@31.0.24...cozy-harvest-lib@31.0.25) (2024-12-23)
|
|
369
201
|
|
|
370
202
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
371
203
|
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
204
|
## [31.0.24](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@31.0.23...cozy-harvest-lib@31.0.24) (2024-12-23)
|
|
377
205
|
|
|
378
206
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
379
207
|
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
208
|
## [31.0.23](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@31.0.22...cozy-harvest-lib@31.0.23) (2024-12-20)
|
|
385
209
|
|
|
386
210
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
387
211
|
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
212
|
## [31.0.22](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@31.0.21...cozy-harvest-lib@31.0.22) (2024-12-19)
|
|
393
213
|
|
|
394
214
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
395
215
|
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
216
|
## [31.0.21](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@31.0.20...cozy-harvest-lib@31.0.21) (2024-12-18)
|
|
401
217
|
|
|
402
218
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
403
219
|
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
220
|
## [31.0.20](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@31.0.19...cozy-harvest-lib@31.0.20) (2024-12-18)
|
|
409
221
|
|
|
410
222
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
411
223
|
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
224
|
## [31.0.19](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@31.0.18...cozy-harvest-lib@31.0.19) (2024-12-16)
|
|
417
225
|
|
|
418
226
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
419
227
|
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
228
|
## [31.0.18](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@31.0.17...cozy-harvest-lib@31.0.18) (2024-12-13)
|
|
425
229
|
|
|
426
230
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
427
231
|
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
232
|
## [31.0.17](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@31.0.16...cozy-harvest-lib@31.0.17) (2024-12-12)
|
|
433
233
|
|
|
434
234
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
435
235
|
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
236
|
## [31.0.16](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@31.0.15...cozy-harvest-lib@31.0.16) (2024-12-12)
|
|
441
237
|
|
|
442
238
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
443
239
|
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
240
|
## [31.0.15](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@31.0.14...cozy-harvest-lib@31.0.15) (2024-12-12)
|
|
449
241
|
|
|
450
242
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
451
243
|
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
244
|
## [31.0.14](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@31.0.13...cozy-harvest-lib@31.0.14) (2024-12-12)
|
|
457
245
|
|
|
458
246
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
459
247
|
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
248
|
## [31.0.13](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@31.0.12...cozy-harvest-lib@31.0.13) (2024-12-12)
|
|
465
249
|
|
|
466
250
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
467
251
|
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
252
|
## [31.0.12](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@31.0.11...cozy-harvest-lib@31.0.12) (2024-12-11)
|
|
473
253
|
|
|
474
254
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
475
255
|
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
256
|
## [31.0.11](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@31.0.10...cozy-harvest-lib@31.0.11) (2024-12-10)
|
|
481
257
|
|
|
482
258
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
483
259
|
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
260
|
## [31.0.10](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@31.0.9...cozy-harvest-lib@31.0.10) (2024-12-10)
|
|
489
261
|
|
|
490
262
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
491
263
|
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
264
|
## [31.0.9](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@31.0.8...cozy-harvest-lib@31.0.9) (2024-12-10)
|
|
497
265
|
|
|
498
266
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
499
267
|
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
268
|
## [31.0.8](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@31.0.7...cozy-harvest-lib@31.0.8) (2024-12-06)
|
|
505
269
|
|
|
506
270
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
507
271
|
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
272
|
## [31.0.7](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@31.0.6...cozy-harvest-lib@31.0.7) (2024-12-06)
|
|
513
273
|
|
|
514
274
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
515
275
|
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
276
|
## [31.0.6](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@31.0.5...cozy-harvest-lib@31.0.6) (2024-12-05)
|
|
521
277
|
|
|
522
278
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
523
279
|
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
280
|
## [31.0.5](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@31.0.4...cozy-harvest-lib@31.0.5) (2024-12-05)
|
|
529
281
|
|
|
530
|
-
|
|
531
282
|
### Bug Fixes
|
|
532
283
|
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
284
|
+
- **Harvest:** Konnector block style wasn't correct ([336cd7f](https://github.com/cozy/cozy-libs/commit/336cd7f0af23aa65b8040d3c999e4b2912b266ae))
|
|
538
285
|
|
|
539
286
|
## [31.0.4](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@31.0.3...cozy-harvest-lib@31.0.4) (2024-12-05)
|
|
540
287
|
|
|
541
288
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
542
289
|
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
290
|
## [31.0.3](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@31.0.2...cozy-harvest-lib@31.0.3) (2024-12-05)
|
|
548
291
|
|
|
549
292
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
550
293
|
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
294
|
## [31.0.2](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@31.0.1...cozy-harvest-lib@31.0.2) (2024-12-04)
|
|
556
295
|
|
|
557
296
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
558
297
|
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
298
|
## [31.0.1](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@31.0.0...cozy-harvest-lib@31.0.1) (2024-12-03)
|
|
564
299
|
|
|
565
300
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
566
301
|
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
302
|
# [31.0.0](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@30.8.3...cozy-harvest-lib@31.0.0) (2024-11-28)
|
|
572
303
|
|
|
573
|
-
|
|
574
304
|
### Code Refactoring
|
|
575
305
|
|
|
576
|
-
|
|
577
|
-
|
|
306
|
+
- Rename Routes to HarvestRoutes ([760608a](https://github.com/cozy/cozy-libs/commit/760608a4d8c4f42d5a5a1150d8bbbc89e08c3cd1))
|
|
578
307
|
|
|
579
308
|
### Features
|
|
580
309
|
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
310
|
+
- **AccountModalHeader:** Add a story to test the component ([dbe8d8a](https://github.com/cozy/cozy-libs/commit/dbe8d8a90649636572e8edf4f49519c98cf30b01))
|
|
311
|
+
- Add react-router to work with storybook ([549ceab](https://github.com/cozy/cozy-libs/commit/549ceab2113faf041d110b953d255c49fd087192))
|
|
312
|
+
- Remove adaptive router ([9db7559](https://github.com/cozy/cozy-libs/commit/9db755987117b455c6c2bb0cde9046c51ad7c2fa))
|
|
313
|
+
- Remove react-router v3 package ([392c5c2](https://github.com/cozy/cozy-libs/commit/392c5c25affc2e78872ceb4d6f65831f8c3c816a))
|
|
314
|
+
- Remove RoutesV4 to only use RouteV6 ([6205897](https://github.com/cozy/cozy-libs/commit/620589750d2afc1716aae2ac1ef38a4a16cfcbf1))
|
|
587
315
|
|
|
588
316
|
### BREAKING CHANGES
|
|
589
317
|
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
318
|
+
- You must have `react-router-dom >= 6.14.2`
|
|
319
|
+
- `Routes` has been renamed `HarvestRoutes`. You should changed the import `import { Routes } from 'cozy-harvest-lib'` to `import { HarvestRoutes } from 'cozy-harvest-lib'`
|
|
596
320
|
|
|
597
321
|
## [30.8.3](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@30.8.2...cozy-harvest-lib@30.8.3) (2024-11-28)
|
|
598
322
|
|
|
599
323
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
600
324
|
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
325
|
## [30.8.2](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@30.8.1...cozy-harvest-lib@30.8.2) (2024-11-27)
|
|
606
326
|
|
|
607
327
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
608
328
|
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
329
|
## [30.8.1](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@30.8.0...cozy-harvest-lib@30.8.1) (2024-11-27)
|
|
614
330
|
|
|
615
331
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
616
332
|
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
333
|
# [30.8.0](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@30.7.1...cozy-harvest-lib@30.8.0) (2024-11-27)
|
|
622
334
|
|
|
623
|
-
|
|
624
335
|
### Features
|
|
625
336
|
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
337
|
+
- **Harvest:** Add last sync time in KonnectorBlock ([2642af1](https://github.com/cozy/cozy-libs/commit/2642af127192d187b40c0c7b2c424a6abf8fc0fa))
|
|
338
|
+
- **Harvest:** Add link to store in KonnectorBlock ([ceb4608](https://github.com/cozy/cozy-libs/commit/ceb4608bd2c9a7aa2c34c41e58993ea799dc9a60))
|
|
339
|
+
- **Harvest:** Adjust KonnectorBlock style ([94e413b](https://github.com/cozy/cozy-libs/commit/94e413bae050d4ebad71de4fd1728fe9f12e2112))
|
|
340
|
+
- **Harvest:** Change wording in KonnectorBlock ([3b9cdfb](https://github.com/cozy/cozy-libs/commit/3b9cdfbba91ebe0c89071f75c12992ccd7c44ab8))
|
|
634
341
|
|
|
635
342
|
## [30.7.1](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@30.7.0...cozy-harvest-lib@30.7.1) (2024-11-26)
|
|
636
343
|
|
|
637
344
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
638
345
|
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
346
|
# [30.7.0](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@30.6.5...cozy-harvest-lib@30.7.0) (2024-11-22)
|
|
644
347
|
|
|
645
|
-
|
|
646
348
|
### Bug Fixes
|
|
647
349
|
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
350
|
+
- **cozy-harvest-lib:** Make test working after no-hosting cozy-ui ([ead9c6f](https://github.com/cozy/cozy-libs/commit/ead9c6f34f50708f72eb6e0d2f7ced4f354e1d12))
|
|
351
|
+
- **cozy-harvest-lib:** Make test works with cozy-client ([bce0da5](https://github.com/cozy/cozy-libs/commit/bce0da5531afea157da2c2fd72ed3645a831e853))
|
|
651
352
|
|
|
652
353
|
### Features
|
|
653
354
|
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
355
|
+
- **cozy-harvest-lib:** Force light theme inside Storybook ([ec78500](https://github.com/cozy/cozy-libs/commit/ec78500ff71551a27e6036d861a19071d119b4ef))
|
|
356
|
+
- **cozy-harvest-lib:** Update cozy-ui from 112.2.0 to 113.1.0 ([92c0722](https://github.com/cozy/cozy-libs/commit/92c072200b3d223466d55bacd794bdcff1b18359))
|
|
660
357
|
|
|
661
358
|
## [30.6.5](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@30.6.4...cozy-harvest-lib@30.6.5) (2024-11-22)
|
|
662
359
|
|
|
663
360
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
664
361
|
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
362
|
## [30.6.4](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@30.6.3...cozy-harvest-lib@30.6.4) (2024-11-18)
|
|
670
363
|
|
|
671
364
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
672
365
|
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
366
|
## [30.6.3](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@30.6.2...cozy-harvest-lib@30.6.3) (2024-11-18)
|
|
678
367
|
|
|
679
368
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
680
369
|
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
370
|
## [30.6.2](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@30.6.1...cozy-harvest-lib@30.6.2) (2024-11-07)
|
|
686
371
|
|
|
687
372
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
688
373
|
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
374
|
## 30.6.1 (2024-11-06)
|
|
694
375
|
|
|
695
|
-
|
|
696
376
|
### Bug Fixes
|
|
697
377
|
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
378
|
+
- Rename cozy-dataproxy to cozy-dataproxy-lib ([635d421](https://github.com/cozy/cozy-libs/commit/635d421045fc0374ca88cd68ec4941c95c40a0dd))
|
|
703
379
|
|
|
704
380
|
# 30.6.0 (2024-11-06)
|
|
705
381
|
|
|
706
|
-
|
|
707
382
|
### Features
|
|
708
383
|
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
384
|
+
- Upgrade cozy-client and cozy-pouch-link ([67f5241](https://github.com/cozy/cozy-libs/commit/67f5241754e0472a991dad3e5fafd0b1c5edb9c6)), closes [cozy/cozy-client#1553](https://github.com/cozy/cozy-client/issues/1553) [cozy/cozy-client#1556](https://github.com/cozy/cozy-client/issues/1556)
|
|
714
385
|
|
|
715
386
|
# 30.5.0 (2024-11-06)
|
|
716
387
|
|
|
717
|
-
|
|
718
388
|
### Features
|
|
719
389
|
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
390
|
+
- **cozy-devtools:** Remove logs and use hook to get `client` ([df87cf5](https://github.com/cozy/cozy-libs/commit/df87cf500edacae42c55c4bbf710fa2e55ea8ba3))
|
|
725
391
|
|
|
726
392
|
# 30.4.0 (2024-11-06)
|
|
727
393
|
|
|
728
|
-
|
|
729
394
|
### Features
|
|
730
395
|
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
396
|
+
- **cozy-devtools:** Add first version to test providers ([5689640](https://github.com/cozy/cozy-libs/commit/568964008bb657dfaf8038ac2d9fa3dca8d3eb1c))
|
|
736
397
|
|
|
737
398
|
## 30.3.1 (2024-11-05)
|
|
738
399
|
|
|
739
400
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
740
401
|
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
402
|
# 30.3.0 (2024-10-30)
|
|
746
403
|
|
|
747
|
-
|
|
748
404
|
### Features
|
|
749
405
|
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
406
|
+
- Update deps for cozy-viewer ([b2e103a](https://github.com/cozy/cozy-libs/commit/b2e103a1280182881ae1133860c0a09650271920))
|
|
755
407
|
|
|
756
408
|
# 30.2.0 (2024-10-30)
|
|
757
409
|
|
|
758
|
-
|
|
759
410
|
### Features
|
|
760
411
|
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
412
|
+
- Download file on mobile viewer on press ([3c38062](https://github.com/cozy/cozy-libs/commit/3c38062e2c83d5b8f7d0065323c18d45b5ce9564))
|
|
766
413
|
|
|
767
414
|
# 30.1.0 (2024-10-25)
|
|
768
415
|
|
|
769
|
-
|
|
770
416
|
### Features
|
|
771
417
|
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
418
|
+
- **Viewer:** Replace Encrypted provider by cozy-ui one ([aa81d02](https://github.com/cozy/cozy-libs/commit/aa81d02f0a70de8044f704cbd895b1d54c9f38b8))
|
|
777
419
|
|
|
778
420
|
## 30.0.4 (2024-10-23)
|
|
779
421
|
|
|
780
422
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
781
423
|
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
424
|
## 30.0.3 (2024-10-16)
|
|
787
425
|
|
|
788
426
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
789
427
|
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
428
|
## [30.0.2](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@30.0.1...cozy-harvest-lib@30.0.2) (2024-10-15)
|
|
795
429
|
|
|
796
430
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
797
431
|
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
432
|
## [30.0.1](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@30.0.0...cozy-harvest-lib@30.0.1) (2024-09-24)
|
|
803
433
|
|
|
804
434
|
### Bug Fixes
|