cozy-harvest-lib 7.3.2 → 7.3.5
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
CHANGED
|
@@ -3,6 +3,36 @@
|
|
|
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.3.5](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@7.3.4...cozy-harvest-lib@7.3.5) (2022-03-18)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* bump @testing-library/jest-dom from 4.2.4 to 5.16.2 ([6f310bf](https://github.com/cozy/cozy-libs/commit/6f310bf81b9a0d9d69929969db0d0f1f83310266))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [7.3.4](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@7.3.3...cozy-harvest-lib@7.3.4) (2022-03-10)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package cozy-harvest-lib
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
## [7.3.3](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@7.3.2...cozy-harvest-lib@7.3.3) (2022-03-09)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Bug Fixes
|
|
29
|
+
|
|
30
|
+
* **harvest:** ConnectionFlow with CCC ([2745850](https://github.com/cozy/cozy-libs/commit/274585069b403aae1d21308a50e1fa6a0c111da4))
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
6
36
|
## [7.3.2](https://github.com/cozy/cozy-libs/compare/cozy-harvest-lib@7.3.1...cozy-harvest-lib@7.3.2) (2022-03-01)
|
|
7
37
|
|
|
8
38
|
**Note:** Version bump only for package cozy-harvest-lib
|
|
@@ -541,7 +541,7 @@ export var ConnectionFlow = /*#__PURE__*/function () {
|
|
|
541
541
|
konnectorPolicy = findKonnectorPolicy(konnector);
|
|
542
542
|
logger.log("ConnectionFlow: Handling submit, with konnector policy ".concat(konnectorPolicy.name));
|
|
543
543
|
|
|
544
|
-
if (!konnectorPolicy.saveInVault) {
|
|
544
|
+
if (!(konnectorPolicy.saveInVault && !konnector.clientSide)) {
|
|
545
545
|
_context6.next = 18;
|
|
546
546
|
break;
|
|
547
547
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cozy-harvest-lib",
|
|
3
|
-
"version": "7.3.
|
|
3
|
+
"version": "7.3.5",
|
|
4
4
|
"description": "Provides logic, modules and components for Cozy's harvest applications.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"author": "Cozy",
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
"@cozy/minilog": "^1.0.0",
|
|
30
30
|
"@sentry/browser": "^6.0.1",
|
|
31
31
|
"cozy-bi-auth": "0.0.24",
|
|
32
|
-
"cozy-doctypes": "^1.83.
|
|
33
|
-
"cozy-logger": "^1.
|
|
32
|
+
"cozy-doctypes": "^1.83.7",
|
|
33
|
+
"cozy-logger": "^1.9.0",
|
|
34
34
|
"date-fns": "^1.30.1",
|
|
35
35
|
"final-form": "^4.18.5",
|
|
36
36
|
"lodash": "^4.17.19",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"@cozy/cli-tree": "^0.5.0",
|
|
48
48
|
"@material-ui/core": "4.11.3",
|
|
49
49
|
"@material-ui/lab": "4.0.0-alpha.57",
|
|
50
|
-
"@testing-library/jest-dom": "
|
|
50
|
+
"@testing-library/jest-dom": "5.16.2",
|
|
51
51
|
"@testing-library/react": "10.4.9",
|
|
52
52
|
"babel-jest": "26.6.3",
|
|
53
53
|
"babel-plugin-inline-react-svg": "1.1.2",
|
|
@@ -85,5 +85,5 @@
|
|
|
85
85
|
"react-router-dom": "^5.0.1"
|
|
86
86
|
},
|
|
87
87
|
"sideEffects": false,
|
|
88
|
-
"gitHead": "
|
|
88
|
+
"gitHead": "91751d19ff03a283c2a6b226d14958ace7054414"
|
|
89
89
|
}
|