@sudoplatform/sudo-common 8.1.0 → 8.1.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/bin/outdated-with-suppression.sh +3 -3
- package/package.json +20 -24
|
@@ -184,19 +184,19 @@ yarn outdated --json | jq -r -s -c 'map(select(.type == "table").data.body) | .[
|
|
|
184
184
|
echo "${package_name}: current: ${current} wanted: ${wanted} latest: ${latest} [${outdated_diff_type} suppression expired]"
|
|
185
185
|
new=1
|
|
186
186
|
else
|
|
187
|
-
echo "${package_name}: current: ${current} wanted: ${wanted} latest: ${latest} [${outdated_diff_type} suppressed]"
|
|
187
|
+
echo "${package_name}: current: ${current} wanted: ${wanted} latest: ${latest} [${outdated_diff_type} suppressed until $(dateFromSeconds "${suppression}")]"
|
|
188
188
|
fi
|
|
189
189
|
done
|
|
190
190
|
|
|
191
191
|
# If we're not within cadence and there are new outdated dependencies
|
|
192
192
|
# then fail
|
|
193
|
-
if [ -z "${within_cadence}"
|
|
193
|
+
if [ -z "${within_cadence}" ] && [ -n "${new}" ]; then
|
|
194
194
|
exit 1
|
|
195
195
|
fi
|
|
196
196
|
|
|
197
197
|
# If there a no outdated dependencies and we're tracking last success then
|
|
198
198
|
# refresh the last success timestamp.
|
|
199
|
-
if [ -z "${new}"
|
|
199
|
+
if [ -z "${new}" ] && [ -n "${last}" ]; then
|
|
200
200
|
mkdir -p "${last}"
|
|
201
201
|
date +%s > "${last}/last_success"
|
|
202
202
|
fi
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sudoplatform/sudo-common",
|
|
3
|
-
"version": "8.1.
|
|
3
|
+
"version": "8.1.1",
|
|
4
4
|
"author": "Anonyome Labs, Inc.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -50,16 +50,13 @@
|
|
|
50
50
|
],
|
|
51
51
|
"resolutions": {
|
|
52
52
|
"**/apollo-cache-inmemory": "^1.6.6",
|
|
53
|
-
"**/apollo-client": "^2.6.10"
|
|
54
|
-
"ansi-regex": "^5.0.1",
|
|
55
|
-
"tmpl": "^1.0.5",
|
|
56
|
-
"minimist": "^1.2.6"
|
|
53
|
+
"**/apollo-client": "^2.6.10"
|
|
57
54
|
},
|
|
58
55
|
"dependencies": {
|
|
59
|
-
"@aws-sdk/client-s3": "^3.
|
|
56
|
+
"@aws-sdk/client-s3": "^3.194.0",
|
|
60
57
|
"apollo-client": "^2.6.10",
|
|
61
58
|
"browser-bunyan": "^1.8.0",
|
|
62
|
-
"fflate": "^0.7.
|
|
59
|
+
"fflate": "^0.7.4",
|
|
63
60
|
"graphql": "^15.8.0",
|
|
64
61
|
"tslib": "^2.4.0"
|
|
65
62
|
},
|
|
@@ -68,19 +65,19 @@
|
|
|
68
65
|
},
|
|
69
66
|
"devDependencies": {
|
|
70
67
|
"@types/jest": "^27.5.2",
|
|
71
|
-
"@types/node": "^16.
|
|
72
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
73
|
-
"@typescript-eslint/parser": "^5.
|
|
74
|
-
"aws-sdk-mock": "^5.
|
|
75
|
-
"concurrently": "^7.
|
|
76
|
-
"eslint": "^8.
|
|
68
|
+
"@types/node": "^16.18.0",
|
|
69
|
+
"@typescript-eslint/eslint-plugin": "^5.40.1",
|
|
70
|
+
"@typescript-eslint/parser": "^5.40.1",
|
|
71
|
+
"aws-sdk-mock": "^5.8.0",
|
|
72
|
+
"concurrently": "^7.5.0",
|
|
73
|
+
"eslint": "^8.26.0",
|
|
77
74
|
"eslint-config-prettier": "^8.5.0",
|
|
78
75
|
"eslint-plugin-import": "^2.26.0",
|
|
79
76
|
"eslint-plugin-prettier": "^4.2.1",
|
|
80
77
|
"eslint-plugin-tree-shaking": "^1.10.0",
|
|
81
|
-
"fp-ts": "^2.
|
|
82
|
-
"io-ts": "^2.2.
|
|
83
|
-
"io-ts-types": "^0.5.
|
|
78
|
+
"fp-ts": "^2.13.1",
|
|
79
|
+
"io-ts": "^2.2.19",
|
|
80
|
+
"io-ts-types": "^0.5.19",
|
|
84
81
|
"isomorphic-fetch": "^3.0.0",
|
|
85
82
|
"isomorphic-webcrypto": "^2.3.8",
|
|
86
83
|
"jest": "^27.5.1",
|
|
@@ -91,17 +88,16 @@
|
|
|
91
88
|
"ts-jest": "^27.1.5",
|
|
92
89
|
"ts-mockito": "^2.6.1",
|
|
93
90
|
"ts-node": "^10.9.1",
|
|
94
|
-
"typedoc": "^0.23.
|
|
95
|
-
"typescript": "^4.8.
|
|
91
|
+
"typedoc": "^0.23.18",
|
|
92
|
+
"typescript": "^4.8.4"
|
|
96
93
|
},
|
|
97
94
|
"outdatedSuppressions": {
|
|
98
95
|
"major": {
|
|
99
|
-
"@types/jest":
|
|
100
|
-
"
|
|
101
|
-
"graphql":
|
|
102
|
-
"jest":
|
|
103
|
-
"
|
|
104
|
-
"ts-jest": 1663379292
|
|
96
|
+
"@types/jest": 1669184645,
|
|
97
|
+
"@types/node": 1669184645,
|
|
98
|
+
"graphql": 1669184645,
|
|
99
|
+
"jest": 1669184645,
|
|
100
|
+
"ts-jest": 1669184646
|
|
105
101
|
}
|
|
106
102
|
}
|
|
107
103
|
}
|