@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.
@@ -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}" -a -n "${new}" ]; then
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}" -a -n "${last}" ]; then
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.0",
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.179.0",
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.3",
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.11.62",
72
- "@typescript-eslint/eslint-plugin": "^5.38.1",
73
- "@typescript-eslint/parser": "^5.38.1",
74
- "aws-sdk-mock": "^5.7.0",
75
- "concurrently": "^7.4.0",
76
- "eslint": "^8.24.0",
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.12.3",
82
- "io-ts": "^2.2.18",
83
- "io-ts-types": "^0.5.16",
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.15",
95
- "typescript": "^4.8.3"
91
+ "typedoc": "^0.23.18",
92
+ "typescript": "^4.8.4"
96
93
  },
97
94
  "outdatedSuppressions": {
98
95
  "major": {
99
- "@types/jest": 1663379291,
100
- "ansi-regex": 1663379292,
101
- "graphql": 1663379292,
102
- "jest": 1663379292,
103
- "@types/node": 1663379291,
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
  }