Update dependencies

We also pin livepush in place while
https://github.com/balena-io-modules/livepush/issues/67
is fixed.

Change-type: patch
Signed-off-by: Cameron Diver <cameron@balena.io>
This commit is contained in:
Cameron Diver 2020-03-23 13:06:57 +00:00 committed by Balena CI
parent e7bd708639
commit f2c606e1f9
3 changed files with 2486 additions and 1573 deletions

4009
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -30,7 +30,7 @@
},
"private": true,
"dependencies": {
"sqlite3": "^4.0.8"
"sqlite3": "^4.1.1"
},
"engines": {
"node": "^6.13.1"
@ -39,10 +39,10 @@
"@balena/contrato": "^0.2.1",
"@balena/lint": "^4.1.0",
"@types/bluebird": "^3.5.30",
"@types/chai": "^4.2.10",
"@types/chai": "^4.2.11",
"@types/chai-as-promised": "^7.1.2",
"@types/common-tags": "^1.8.0",
"@types/dockerode": "^2.5.21",
"@types/dockerode": "^2.5.25",
"@types/event-stream": "^3.3.34",
"@types/express": "^4.17.3",
"@types/knex": "^0.15.2",
@ -55,20 +55,21 @@
"@types/mz": "0.0.32",
"@types/node": "^10.17.17",
"@types/request": "^2.48.4",
"@types/rimraf": "^2.0.3",
"@types/rimraf": "^2.0.4",
"@types/rwlock": "^5.0.2",
"@types/semver": "^7.1.0",
"@types/shell-quote": "^1.6.1",
"@types/sinon": "^7.5.2",
"@types/sinon-chai": "^3.2.3",
"@types/tmp": "^0.1.0",
"balena-sync": "^10.0.0",
"balena-sync": "^10.2.0",
"blinking": "~0.0.3",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"buffer-equal-constant-time": "^1.0.1",
"chai-as-promised": "^7.1.1",
"chai-events": "0.0.1",
"chokidar": "^3.0.0",
"chokidar": "^3.3.1",
"coffee-loader": "^0.9.0",
"coffeescript": "^1.12.7",
"common-tags": "^1.8.0",
@ -76,29 +77,29 @@
"dbus-native": "^0.2.5",
"deep-object-diff": "^1.1.0",
"docker-delta": "^2.2.9",
"docker-progress": "^3.0.3",
"docker-toolbelt": "^3.3.7",
"docker-progress": "^3.0.5",
"docker-toolbelt": "^3.3.8",
"duration-js": "^4.0.0",
"event-stream": "3.3.4",
"express": "^4.17.1",
"fork-ts-checker-webpack-plugin": "^0.5.2",
"fp-ts": "^2.0.5",
"fp-ts": "^2.5.3",
"husky": "^4.2.3",
"io-ts": "^2.0.1",
"io-ts": "^2.1.2",
"io-ts-reporters": "^1.0.0",
"istanbul": "^0.4.5",
"json-mask": "^0.3.8",
"json-mask": "^0.3.9",
"knex": "^0.15.2",
"lint-staged": "^10.0.8",
"livepush": "^2.0.2",
"livepush": "2.1.0",
"lockfile": "^1.0.4",
"lodash": "^4.17.15",
"log-timestamp": "^0.1.2",
"memoizee": "^0.4.14",
"mixpanel": "^0.10.1",
"mkdirp": "^0.5.1",
"mixpanel": "^0.10.3",
"mkdirp": "^0.5.3",
"mocha": "^5.2.0",
"morgan": "^1.9.1",
"morgan": "^1.10.0",
"mz": "^2.7.0",
"network-checker": "^0.1.1",
"pinejs-client-request": "^5.2.0",
@ -106,22 +107,22 @@
"request": "^2.88.2",
"resin-register-device": "^3.0.0",
"resumable-request": "^2.0.0",
"rimraf": "^2.6.2",
"rimraf": "^2.7.1",
"rwlock": "^5.0.0",
"shell-quote": "^1.6.1",
"shell-quote": "^1.7.2",
"sinon": "^7.5.0",
"sinon-chai": "^3.5.0",
"strict-event-emitter-types": "^2.0.0",
"terser": "^3.14.1",
"terser": "^3.17.0",
"tmp": "^0.1.0",
"ts-loader": "^5.4.5",
"ts-node": "^8.6.2",
"ts-node": "^8.8.1",
"typed-error": "^2.0.0",
"typescript": "^3.8.3",
"webpack": "^4.28.0",
"webpack-cli": "^3.1.2",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"winston": "^3.2.1",
"yargs": "^15.1.0"
"yargs": "^15.3.1"
},
"husky": {
"hooks": {

View File

@ -393,7 +393,10 @@ export class ServiceManager extends (EventEmitter as new () => ServiceManagerEve
const listen = async () => {
const stream = await this.docker.getEvents({
filters: { type: ['container'] },
// Remove the as any once
// https://github.com/DefinitelyTyped/DefinitelyTyped/pull/43100
// is merged and released
filters: { type: ['container'] } as any,
});
stream.on('error', e => {